@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Tinos:ital,wght@0,400;0,700;1,400;1,700&display=swap');

:root {
    --c1: #32c4f3;
    --c2: #5fbd6b;
    --c3: #ff1d33;
    --heading-font: "Roboto", serif;
    --body-font: "Tinos", seri;
}

::selection {
    background: var(--c1);
    color: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6,
button {
    font-family: var(--heading-font);
}

body {
    font-size: 18px;
    font-family: var(--body-font);
}

img {
    -webkit-user-drag: none;
}

/* form */

input,
select {
    border-radius: 0;
}

.form-item {
    position: relative;
    margin-bottom: 15px;
}

.form-item input[type="checkbox"],
.form-item input[type="radio"] {
    height: 15px;
}

.form-item input,
.form-item select {
    height: 50px;
}

.form-item select {
    background-color: transparent;
    width: 100%;
    border-radius: 0;
}

.form-item input,
.form-item select,
.form-item textarea {
    display: block;
    padding: 0 15px;
    width: 100%;
    font-size: 14px;
    color: #ffffff;
    background: #ffffff15;
    backdrop-filter: blur(10px);
    border: solid 1px #ccc;
    transition: all .3s ease;
}

select option {
    color: #000000;
    /* color of the options in the dropdown list */
}

.form-item textarea {
    height: 100px !important;
    /* resize: none; */
    padding: 10px 15px;
}

.form-item input:focus+label,
.form-item input:not(:placeholder-shown)+label,
.form-item select:focus+label,
.form-item select:not(:placeholder-shown)+label,
.form-item textarea:focus+label,
.form-item textarea:not(:placeholder-shown)+label {
    font-size: 12px;
    top: -8px;
}

.form-item label {
    position: absolute;
    cursor: text;
    z-index: 1;
    top: 13px;
    left: 10px;
    font-size: 12px;
    font-weight: bold;
    background: linear-gradient(#000000, #00000000);
    padding: 0 3px;
    color: #ffffff;
    transition: all .3s ease;
}

/* form end */
.text-c1 {
    color: var(--c1) !important;
}

.text-c2 {
    color: var(--c2) !important;
}

.text-c3 {
    color: var(--c3) !important;
}

.bg-c1 {
    background-color: var(--c1) !important;
}

.bg-c2 {
    background-color: var(--c2) !important;
}

.bg-c3 {
    background-color: var(--c3) !important;
}

@property --gradient-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

@property --gradient-angle-offset {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

@property --gradient-percent {
    syntax: "<percentage>";
    initial-value: 5%;
    inherits: false;
}

@property --gradient-shine {
    syntax: "<color>";
    initial-value: white;
    inherits: false;
}

.shiny-cta {
    --animation: gradient-angle linear infinite;
    --duration: 3s;
    --shadow-size: 2px;
    isolation: isolate;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    outline-offset: 4px;
    padding: 1.25rem 2.5rem;
    font-family: inherit;
    font-size: 1.125rem;
    line-height: 1.2;
    border: 1px solid transparent;
    border-radius: 360px;
    color: #ffffff;
    background:
        linear-gradient(#000000, #000000) padding-box,
        conic-gradient(from calc(var(--gradient-angle) - var(--gradient-angle-offset)),
            transparent,
            var(--c1) var(--gradient-percent),
            var(--gradient-shine) calc(var(--gradient-percent) * 2),
            var(--c1) calc(var(--gradient-percent) * 3),
            transparent calc(var(--gradient-percent) * 4)) border-box;
    box-shadow: inset 0 0 0 1px #1a1818;
}

.shiny-cta::before,
.shiny-cta::after,
.shiny-cta span::before {
    content: "";
    pointer-events: none;
    position: absolute;
    inset-inline-start: 50%;
    inset-block-start: 50%;
    translate: -50% -50%;
    z-index: -1;
}

.shiny-cta:active {
    translate: 0 1px;
}

/* Dots pattern */
.shiny-cta::before {
    --size: calc(100% - var(--shadow-size) * 3);
    --position: 2px;
    --space: calc(var(--position) * 2);
    width: var(--size);
    height: var(--size);
    background: radial-gradient(circle at var(--position) var(--position),
            white calc(var(--position) / 4),
            transparent 0) padding-box;
    background-size: var(--space) var(--space);
    background-repeat: space;
    mask-image: conic-gradient(from calc(var(--gradient-angle) + 45deg),
            black,
            transparent 10% 90%,
            black);
    border-radius: inherit;
    opacity: 0.4;
    z-index: -1;
}

/* Inner shimmer */
.shiny-cta::after {
    --animation: shimmer linear infinite;
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(-50deg,
            transparent,
            var(--c1),
            transparent);
    mask-image: radial-gradient(circle at bottom, transparent 40%, black);
    opacity: 0.6;
}

.shiny-cta span {
    z-index: 1;
}

.shiny-cta span::before {
    --size: calc(100% + 1rem);
    width: var(--size);
    height: var(--size);
    box-shadow: inset 0 -1ex 2rem 4px var(--c1);
    opacity: 0;
}

/* Animate */
.shiny-cta {
    --transition: 800ms cubic-bezier(0.25, 1, 0.5, 1);
    transition: var(--transition);
    transition-property: --gradient-angle-offset, --gradient-percent, --gradient-shine;
    animation: var(--animation) var(--duration),
        var(--animation) calc(var(--duration) / 0.4) reverse paused;
    animation-composition: add;
}

.shiny-cta::before,
.shiny-cta::after {
    animation: var(--animation) var(--duration),
        var(--animation) calc(var(--duration) / 0.4) reverse paused;
    animation-composition: add;
}

.shiny-cta span::before {
    transition: opacity var(--transition);
    animation: calc(var(--duration) * 1.5) breathe linear infinite;
}

.shiny-cta:hover,
.shiny-cta:focus-visible {
    --gradient-percent: 20%;
    --gradient-angle-offset: 95deg;
    --gradient-shine: #8484ff;
}

.shiny-cta:hover,
.shiny-cta:focus-visible,
.shiny-cta:hover::before,
.shiny-cta:focus-visible::before,
.shiny-cta:hover::after,
.shiny-cta:focus-visible::after {
    animation-play-state: running;
}

.shiny-cta:hover span::before,
.shiny-cta:focus-visible span::before {
    opacity: 1;
}

@keyframes gradient-angle {
    to {
        --gradient-angle: 360deg;
    }
}

@keyframes shimmer {
    to {
        rotate: 360deg;
    }
}

@keyframes breathe {

    from,
    to {
        scale: 1;
    }

    50% {
        scale: 1.2;
    }
}

/* button animation end */


a,
a:hover,
a:focus,
a:active,
button,
button:focus,
.btn,
.btn:focus,
input,
input:focus,
select,
textarea,
.swiper-pagination-bullet,
.swiper-slide,
.swiper-button-next,
.swiper-button-prev,
.product-button-next,
.product-button-prev,
.special-deals-button-next,
.special-deals-button-prev {
    text-decoration: none;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

/* ---Header Top--- */
.main-header-area {
    box-shadow: 1px 0px 8px 1px #ebebeb;
}

.dropdown-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.dropdown-wrap li .ht-btn {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 0;
    padding-right: 0;
}

.dropdown-wrap li .ht-btn:after {
    font-family: FontAwesome;
    border: 0;
    content: "\f078";
    font-size: 10px;
    border-right: 1px solid #dee2e6;
    padding-right: 15px;
    margin-right: 15px;
}

.dropdown-menu {
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    left: 0 !important;
    visibility: hidden;
    border: 0;
    opacity: 0;
    display: block;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
}

@media (max-width: 991.98px) {
    .dropdown-menu {
        min-width: 7rem;
        left: auto !important;
        right: 15px !important;
    }
}

.dropdown-menu.right-side {
    left: auto !important;
    right: 15px !important;
}

.dropdown-menu.show {
    -webkit-transform: translate(0, 0) !important;
    -ms-transform: translate(0, 0) !important;
    transform: translate(0, 0) !important;
    top: 100% !important;
    visibility: visible;
    opacity: 1;
}

.dropdown-menu li a {
    font-size: 14px;
}

.dropdown-menu li:hover>a.dropdown-item {
    background-color: #ee3231;
    color: #fff;
}

.dropdown-menu li .dropdown-item:focus {
    background-color: #ee3231;
    color: #fff;
}

/* ---Header Middle--- */

.header-middle-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

/* ---Main Header--- */

.main-nav>ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    margin-bottom: 0;
}

.main-nav>ul>li {
    display: inline-block;
}

.main-nav>ul>li:not(:last-child) {
    padding-right: 30px;
}

.main-nav>ul>li a {
    color: #555252;
}

.main-nav>ul>li>a {
    line-height: 90px;
    font-weight: 500;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 17px;
}

.main-nav>ul>li>a i {
    margin-left: 5px;
    font-size: 25px;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.main-nav>ul>li:hover>a {
    color: #54a35f;
}

.main-nav>ul>li:hover>a i {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.main-nav>ul>li:hover>.drop-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: perspective(600px) rotateX(0deg);
    transform: perspective(600px) rotateX(0deg);
}

/* ---Drop Menu--- */

.drop-holder {
    position: relative;
}

.drop-menu {
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
    background-color: #fff;
    position: absolute;
    visibility: hidden;
    opacity: 0;
    top: 100%;
    left: 0;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: 250px;
    padding-left: 30px;
    padding-top: 25px;
    padding-bottom: 25px;
    text-align: left;
    z-index: 2;
    -webkit-transform-origin: 0 0 0;
    -ms-transform-origin: 0 0 0;
    transform-origin: 0 0 0;
    -webkit-transform: perspective(600px) rotateX(-90deg);
    transform: perspective(600px) rotateX(-90deg);
}

@media (max-width: 1199.98px) {
    .drop-menu {
        left: auto;
        right: 0;
    }
}

.drop-menu>li:not(:last-child) {
    padding-bottom: 10px;
}

.drop-menu a:hover {
    color: #ee3231;
}

/* ---Sub Dropdown--- */

.sub-dropdown.drop-menu {
    top: 30px;
    left: auto;
    right: 100%;
}

.sub-dropdown-holder:hover .sub-dropdown.drop-menu {
    top: 0;
    opacity: 1;
    visibility: visible;
}

.sub-dropdown-holder:hover>a {
    color: #ee3231;
}

/* ---Megamenu--- */

.megamenu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding: 0;
    padding: 40px;
}

.megamenu-holder {
    position: static;
}

.megamenu .title {
    text-transform: uppercase;
    margin-bottom: 30px;
    font-size: 18px;
    color: #383838;
    font-weight: 500;
    display: block;
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .megamenu .title {
        font-size: 17px;
    }
}

.megamenu.drop-menu>li {
    padding-bottom: 0;
}

.megamenu>li {
    width: 25%;
}

.megamenu>li:not(:last-child) {
    border-right: 1px solid #e7e7e7;
    padding-right: 30px;
    margin-right: 30px;
}

.megamenu>li>ul li:not(:last-child) {
    padding-bottom: 30px;
}

.megamenu>li>ul li a {
    display: block;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    font-size: 14px;
}

.megamenu>li .banner img {
    -o-object-position: center center;
    object-position: center center;
    width: 100%;
}

/* ---Header Logo--- */

.header-logo {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-logo img {
    width: 180px;
}

@media (max-width: 479px) {
    .header-logo {
        width: 140px;
    }
}

/* ---Header Sticky--- */

.sticky {
    -webkit-animation: 800ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 800ms ease-in-out 0s normal none 1 running fadeInDown;
    -webkit-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2);
    background-color: #fff;
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    display: block;
}

.sticky .header-logo-wrap {
    top: 0;
    height: 100%;
}

/* ---Header Right--- */

.header-right>ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    margin-bottom: 0;
}

.header-right>ul>li {
    position: relative;
    cursor: pointer;
}

.header-right>ul>li:not(:last-child) {
    padding-right: 15px;
}

.header-right>ul>li>a i {
    font-size: 32px;
    vertical-align: middle;
    color: #000000;
}

.header-right>ul>li>a i:before {
    font-weight: 500;
}

/* ---Preloader--- */

.preloader-active {
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    z-index: 99999;
}

.preloader-active .preloader-area-wrap {
    background-color: #fff;
    position: absolute;
    left: 0;
    display: block;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 999999;
}

.preloader-active .preloader-area-wrap .spinner div {
    background-color: var(--c2);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    margin-right: 15px;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.preloader-active .preloader-area-wrap .spinner div.bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.preloader-active .preloader-area-wrap .spinner div.bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

.preloader-area-wrap {
    display: none;
}

@-webkit-keyframes sk-bouncedelay {

    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes sk-bouncedelay {

    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.open_tm_preloader {
    position: fixed;
    background-color: transparent;
    z-index: 9999;
    height: 100%;
    width: 100%;
    -webkit-transition: 0.2s all ease;
    -o-transition: 0.2s all ease;
    transition: 0.2s all ease;
    -webkit-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    transition-delay: 0.5s;
}

.open_tm_preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.open_tm_preloader.loaded:before,
.open_tm_preloader.loaded:after {
    width: 0%;
}

.open_tm_preloader:before,
.open_tm_preloader:after {
    content: "";
    position: absolute;
    height: 100%;
    width: 50%;
    background-color: #fff;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.open_tm_preloader:before {
    top: 0;
    left: 0;
}

.open_tm_preloader:after {
    bottom: 0;
    right: 0;
}

/* Breadcrumb */
.breadcrumb-height {
    height: 370px;
}

.breadcrumb-height {
    background: linear-gradient(#000000a8, #000000a8), url(../images/carwash-banner.jpg);
}

.breadcrumb-heading {
    text-transform: uppercase;
    font-size: 36px;
}

.breadcrumb-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
}

.breadcrumb-item ul li {
    display: inline-block;
    line-height: 30px;
    font-size: 14px;
    color: #ffffff;
}

.breadcrumb-item a {
    color: #ffffff;
}

.breadcrumb-item ul li i {
    font-size: 16px;
    vertical-align: middle;
}

/* ---Main Slider--- */

.animation-style-01.swiper-slide-active .slide-content .title {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.animation-style-01.swiper-slide-active .slide-content .sub-title {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.animation-style-01.swiper-slide-active .slide-content .short-desc {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.animation-style-01.swiper-slide-active .slide-content .button-wrap {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.slide-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    position: relative;
}

.slide-inner .container {
    z-index: 2;
}

.slide-inner.bg-height {
    min-height: 792px;
}

.slide-inner::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 1;
}

.slide-inner.bg-height {
    background-size: cover;
    background-position: center;
}

@media (max-width: 1599.98px) {
    .slide-inner.bg-height {
        min-height: 450px;
    }
}

@media (max-width: 767.98px) {
    .slide-inner.bg-height {
        min-height: 420px;
    }
}

@media (max-width: 991.98px) {
    .slide-content {
        text-align: center;
    }
}

.slide-content .sub-title {
    font-weight: 600;
    margin: 10px 0;
    font-size: 30px;
    line-height: 30px;
    display: block;
    text-transform: uppercase;
}

@media (max-width: 767.98px) {
    .slide-content .sub-title {
        font-size: 25px;
    }
}

.slide-content .title {
    font-size: 75px;
    font-weight: 700;
    text-transform: uppercase;
}

@media (max-width: 767.98px) {
    .slide-content .title {
        font-size: 40px;
    }
}

.slide-content .title.font-weight-bold {
    font-weight: 700;
}

.slide-content .short-desc {
    font-size: 18px;
    line-height: 30px;
}

.slide-content .button-wrap {
    margin-top: 20px;
}

@media (max-width: 767.98px) {
    .slide-content .short-desc {
        font-size: 14px;
        text-transform: capitalize;
    }
}

.slide-style-2 .slide-content .title {
    text-transform: capitalize;
    font-weight: 700;
    font-size: 60px;
    line-height: 81px;
}

@media (max-width: 1599.98px) {
    .slide-style-2 .slide-content .title {
        font-size: 50px;
        line-height: 71px;
    }
}

@media (max-width: 479px) {
    .slide-style-2 .slide-content .title {
        font-size: 30px;
        line-height: 1.4;
    }
}

.slide-style-2 .slide-content .short-desc {
    text-transform: capitalize;
    font-size: 30px;
    line-height: 28px;
    font-weight: 300;
}

@media (max-width: 479px) {
    .slide-style-2 .slide-content .short-desc {
        font-size: 20px;
    }
}

/*----------------------------------------*/

/*  04. Navigation
/*----------------------------------------*/

/* ---Swiper Arrow--- */

.swiper-button-next,
.swiper-button-prev {
    background-color: #212529;
    color: #fff;
    width: 50px;
    height: 50px;
    line-height: 50px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

@media (max-width: 767.98px) {

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 16px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: #ee3231;
    color: #fff;
}

.swiper-arrow:hover .swiper-button-next,
.swiper-arrow:hover .swiper-button-prev {
    opacity: 1;
    visibility: visible;
}

.swiper-arrow-sm-size .swiper-button-next,
.swiper-arrow-sm-size .swiper-button-prev {
    width: 30px;
    height: 30px;
    line-height: 30px;
}

.swiper-arrow-sm-size .swiper-button-next:after,
.swiper-arrow-sm-size .swiper-button-prev:after {
    font-size: 12px;
}

.swiper-arrow.with-radius .swiper-button-next,
.swiper-arrow.with-radius .swiper-button-prev {
    color: #ee3231;
    border-radius: 100%;
}

.swiper-arrow.with-radius .swiper-button-next:hover,
.swiper-arrow.with-radius .swiper-button-prev:hover {
    background-color: #ee3231;
    border-color: #ee3231;
    color: #fff;
}

/* ---Custom Arrow--- */

.swiper-container:hover .custom-button-prev,
.swiper-container:hover .custom-button-next {
    visibility: visible;
    opacity: 1;
}

.custom-button-prev,
.custom-button-next {
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 30px;
    z-index: 1;
    width: 29px;
    height: 29px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    overflow: hidden;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    opacity: 0;
    visibility: hidden;
}

.custom-button-prev:hover,
.custom-button-next:hover {
    background-position: 0 100%;
}

.custom-button-prev {
    background-image: url("../images/left-arrow.png");
}

.custom-button-next {
    background-image: url("../images/right-arrow.png");
    left: auto;
    right: 30px;
}

.thumbs-arrow-holder {
    position: relative;
    padding-left: 45px;
    padding-right: 45px;
}

.thumbs-arrow-holder .swiper-container {
    padding-left: 5px;
    padding-right: 5px;
    margin-left: -5px;
    margin-right: -5px;
}

.thumbs-arrow-holder:hover .swiper-slide {
    opacity: 0.7;
}

.thumbs-arrow-holder:hover .thumb-button-prev,
.thumbs-arrow-holder:hover .thumb-button-next {
    opacity: 0.7;
}

.thumbs-button-prev,
.thumbs-button-next {
    background-color: #212529;
    border-color: #212529;
    border-radius: 0;
    text-align: center;
    color: #fff;
    width: 30px;
    height: 30px;
    line-height: 30px;
    -webkit-transform: all 0.3s ease 0s;
    -ms-transform: all 0.3s ease 0s;
    transform: all 0.3s ease 0s;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.thumbs-button-prev:hover,
.thumbs-button-next:hover {
    background-color: #ee3231;
    color: #fff;
}

.thumbs-button-prev:focus,
.thumbs-button-next:focus {
    outline: 0;
}

.thumbs-button-prev i,
.thumbs-button-next i {
    font-size: 30px;
    display: block;
}

.thumbs-button-next {
    left: auto;
    right: 0;
}


.mobile-menu_wrapper .tromic-offcanvas-body,
.offcanvas-search_wrapper .tromic-offcanvas-body {
    background-color: #ffffff;
    position: fixed;
    top: 0;
    left: -350px;
    width: 350px;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    overflow: visible;
    overflow-x: hidden;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    height: 100%;
    overflow-y: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (prefers-reduced-motion: reduce) {

    .mobile-menu_wrapper .tromic-offcanvas-body,
    .offcanvas-search_wrapper .tromic-offcanvas-body {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }
}

@media (max-width: 575.98px) {

    .mobile-menu_wrapper .tromic-offcanvas-body,
    .offcanvas-search_wrapper .tromic-offcanvas-body {
        width: calc(100% - 30px);
    }
}

.mobile-menu_wrapper .tromic-offcanvas-body .inner-body,
.offcanvas-search_wrapper .tromic-offcanvas-body .inner-body {
    padding: 0 0 50px 0;
}

.mobile-menu_wrapper .tromic-offcanvas-body .inner-body .tromic-offcanvas-top,
.offcanvas-search_wrapper .tromic-offcanvas-body .inner-body .tromic-offcanvas-top {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-bottom: 30px;
}

.mobile-menu_wrapper .tromic-offcanvas-body .inner-body .tromic-offcanvas-top .button-close,
.offcanvas-search_wrapper .tromic-offcanvas-body .inner-body .tromic-offcanvas-top .button-close {
    font-size: 24px;
    color: #c0c0c0;
    padding: 10px;
}

.mobile-menu_wrapper .tromic-offcanvas-body .inner-body .tromic-offcanvas-top .button-close i {
    font-weight: 800;
    font-size: 35px;
    color: #000000;
}

.mobile-menu_wrapper .tromic-offcanvas-body .inner-body .offcanvas-menu_area .offcanvas-navigation .mobile-menu>li,
.offcanvas-search_wrapper .tromic-offcanvas-body .inner-body .offcanvas-menu_area .offcanvas-navigation .mobile-menu>li {
    height: 100%;
}

.mobile-menu_wrapper .tromic-offcanvas-body .inner-body .offcanvas-menu_area .offcanvas-navigation .mobile-menu>li>a span,
.offcanvas-search_wrapper .tromic-offcanvas-body .inner-body .offcanvas-menu_area .offcanvas-navigation .mobile-menu>li>a span {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.mobile-menu_wrapper .tromic-offcanvas-body .inner-body .offcanvas-menu_area .offcanvas-navigation .mobile-menu li,
.offcanvas-search_wrapper .tromic-offcanvas-body .inner-body .offcanvas-menu_area .offcanvas-navigation .mobile-menu li {
    position: relative;
}

.mobile-menu_wrapper .tromic-offcanvas-body .inner-body .offcanvas-menu_area .offcanvas-navigation .mobile-menu li:not(:last-child),
.offcanvas-search_wrapper .tromic-offcanvas-body .inner-body .offcanvas-menu_area .offcanvas-navigation .mobile-menu li:not(:last-child) {
    padding-bottom: 25px;
}

.mobile-menu_wrapper .tromic-offcanvas-body .inner-body .offcanvas-menu_area .offcanvas-navigation .mobile-menu li>.menu-expand,
.offcanvas-search_wrapper .tromic-offcanvas-body .inner-body .offcanvas-menu_area .offcanvas-navigation .mobile-menu li>.menu-expand {
    position: absolute;
    right: 0;
    top: 2px;
    width: 50px;
    height: 100%;
    line-height: 40px;
    cursor: pointer;
    text-align: center;
    margin-right: 4px;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    font-size: 20px;
}

.mobile-menu_wrapper .tromic-offcanvas-body .inner-body .offcanvas-menu_area .offcanvas-navigation .mobile-menu li a,
.offcanvas-search_wrapper .tromic-offcanvas-body .inner-body .offcanvas-menu_area .offcanvas-navigation .mobile-menu li a {
    color: #000000;
    font-size: 16px;
    text-transform: uppercase;
    display: block;
    padding: 0 30px 25px 20px;
}

.mobile-menu_wrapper .tromic-offcanvas-body .inner-body .offcanvas-menu_area .offcanvas-navigation .mobile-menu li a i,
.offcanvas-search_wrapper .tromic-offcanvas-body .inner-body .offcanvas-menu_area .offcanvas-navigation .mobile-menu li a i {
    font-size: 24px;
}

.mobile-menu_wrapper .tromic-offcanvas-body .inner-body .offcanvas-menu_area .offcanvas-navigation .mobile-menu li .sub-menu,
.offcanvas-search_wrapper .tromic-offcanvas-body .inner-body .offcanvas-menu_area .offcanvas-navigation .mobile-menu li .sub-menu {
    background-color: rgba(255, 255, 255, 0.05);
    overflow-y: auto;
    padding: 25px 0;
    margin: 20px 0 10px;
}

.mobile-menu_wrapper .tromic-offcanvas-body .inner-body .offcanvas-menu_area .offcanvas-navigation .mobile-menu li .sub-menu li a,
.offcanvas-search_wrapper .tromic-offcanvas-body .inner-body .offcanvas-menu_area .offcanvas-navigation .mobile-menu li .sub-menu li a {
    text-transform: uppercase;
    font-size: 11px;
    color: #c0c0c0;
}

.mobile-menu_wrapper .tromic-offcanvas-body .inner-body .offcanvas-menu_area .offcanvas-navigation .mobile-menu li .sub-menu li a span,
.offcanvas-search_wrapper .tromic-offcanvas-body .inner-body .offcanvas-menu_area .offcanvas-navigation .mobile-menu li .sub-menu li a span {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.mobile-menu_wrapper .tromic-offcanvas-body .inner-body .offcanvas-menu_area .offcanvas-navigation .mobile-menu li .sub-menu li.menu-open>a,
.offcanvas-search_wrapper .tromic-offcanvas-body .inner-body .offcanvas-menu_area .offcanvas-navigation .mobile-menu li .sub-menu li.menu-open>a {
    color: #ee3231;
}

.mobile-menu_wrapper .tromic-offcanvas-body .inner-body .offcanvas-menu_area .offcanvas-navigation .mobile-menu li .sub-menu li.menu-open>a>span>i:before,
.offcanvas-search_wrapper .tromic-offcanvas-body .inner-body .offcanvas-menu_area .offcanvas-navigation .mobile-menu li .sub-menu li.menu-open>a>span>i:before {
    content: "\e682";
}

.mobile-menu_wrapper .tromic-offcanvas-body .inner-body .offcanvas-menu_area .offcanvas-navigation .mobile-menu li.menu-open>a,
.offcanvas-search_wrapper .tromic-offcanvas-body .inner-body .offcanvas-menu_area .offcanvas-navigation .mobile-menu li.menu-open>a {
    color: #ee3231;
}

.mobile-menu_wrapper .tromic-offcanvas-body .inner-body .offcanvas-menu_area .offcanvas-navigation .mobile-menu li.menu-open>a>span>i:before,
.offcanvas-search_wrapper .tromic-offcanvas-body .inner-body .offcanvas-menu_area .offcanvas-navigation .mobile-menu li.menu-open>a>span>i:before {
    content: "\e682";
}

.mobile-menu_wrapper.open .tromic-offcanvas-body,
.offcanvas-search_wrapper.open .tromic-offcanvas-body {
    visibility: visible;
    left: 0;
    opacity: 1;
    z-index: 999;
}

.header-top-right img {
    height: 50px !important;
}

/* ---Global Overlay--- */

.global-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 99;
    visibility: hidden;
}

.global-overlay.overlay-open {
    visibility: visible;
    cursor: pointer;
}

/* about section start */
.swiper-pagination-bullet-active {
    background: var(--c1) !important;
}

.about_sec {
    overflow-x: hidden;
}

.about_sec ul li {
    list-style: none;
    position: relative;
    padding: 5px 0 5px 20px;
}

.about_sec ul li::before {
    content: "\F7E0";
    position: absolute;
    font-family: "Bootstrap-icons";
    left: 0;
    color: var(--c2);
}

.about-single-counter-box {
    padding: 31px 40px 44px;
    background: #fff;
    box-shadow: 0px 10px 50px rgba(231, 231, 231, 0.5);
    border-radius: 4px;
    width: 379px;
    position: relative;
    z-index: 1;
    top: -98px;
    left: -45px;
}

.about-counter-number {
    float: left;
    padding-right: 22px;
}

.about-counter-number h2 {
    font-size: 95px;
    font-weight: 700;
    line-height: 80px;
    color: var(--c1);
    position: relative;
    z-index: 1;
}

.about-counter-number h2:before {
    position: absolute;
    content: "+";
    right: 1px;
    top: -2px;
    font-size: 20px;
    font-family: "Jost";
    font-weight: 500;
    background: #fff;
    width: 30px;
    height: 30px;
    line-height: 25px;
    border-radius: 50%;
    text-align: center;
    border: 2px solid var(--c1);
}

.about-counter-title h4 {
    font-size: 26px;
    font-weight: 500;
    line-height: 34px;
    padding: 8px 0 0;
}

.car-thumb {
    position: relative;
    z-index: 1;
    right: -280px;
    top: 17px;
    animation-name: run;
    animation-timing-function: linear;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    transition: all 5s;
    -webkit-transition: all 5s;
    transition-delay: 1s;
}

.car-road {
    width: 306px;
    border: 2px solid #000000;
    position: relative;
    right: -76px;
    top: 15px;
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .about-thumb img {
        width: 100%;
    }

    .car-thumb {
        right: -89px;
    }

    .car-road {
        width: 186px;
        right: -37px;
    }

    .about-counter-title h4 {
        font-size: 22px;
        line-height: 28px;
    }

    .about-counter-number h2 {
        font-size: 70px;
    }

    .about-single-counter-box {
        width: 295px;
        padding: 31px 25px 44px;
    }
}

@media (min-width: 992px) and (max-width: 1100px) {
    .main-nav>ul>li>a {
        font-size: 12px;
    }
}

@media screen and (max-width: 991px) {
    .about-single-counter-box {
        top: -40px;
    }

    .car-thumb,
    .car-road {
        top: -20px;
    }
}

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

    100% {
        -webkit-transform: translateX(-216px);
        transform: translateX(-216px);
    }
}

.tyre_abt .container {
    z-index: 3;
    position: relative;
}

.gallery_nav_sec {
    background: linear-gradient(#000000a6, #000000a6), url(https://www.maplewash.ca/newsiteassets/image/maple_car_wash_banner1.webp);
    background-attachment: fixed;
    background-size: cover;
    width: 100%;
    height: 100%;
}

.gallery_nav_sec button,
.tyre_abt button {
    padding: 5px 20px;
    color: #ffffff;
    background-color: var(--c2);
    border: none;
    margin: 0 10px;
    border-radius: 10px;
    transition: all .3s ease-out;
}

.gallery_nav_sec button:hover,
.tyre_abt button:hover {
    background-color: var(--c1);
    transition: all .3s ease-out;
}

.shape-mockup {
    position: absolute;
    z-index: 1;
}

.shape-mockup-wrap {
    z-index: 2;
    position: relative;
}

img:not([draggable]),
embed,
object,
video {
    max-width: 100%;
    height: auto;
}

.spin {
    -webkit-animation: spin 15s linear infinite;
    animation: spin 15s linear infinite;
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.faq_body .question {
    font-size: 20px;
    padding: 20px 80px 20px 20px;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-family: var(--sub-heading-font);
    font-weight: 600;
}

.faq_body .question::after {
    content: "\002B";
    font-size: 19px;
    position: absolute;
    right: 20px;
    transition: 0.2s;
}

.faq_body .question.active::after {
    transform: rotate(45deg);
}

.faq_body .answercont {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
}

.faq_body .answer {
    padding: 0 20px 20px;
    line-height: 1.5rem;
}

.faq_parent {
    border: 1px solid #eeeeee;
    border-radius: 10px;
    margin: 10px 0;
    background-color: #F8FBFB;
}

/* about section end */
/* testimonial start*/
.testimonial .row .tabs {
    all: unset;
    margin-right: 50px;
    display: flex;
    flex-direction: column;
}

.testimonial .row .tabs li {
    all: unset;
    display: block;
    position: relative;
}

.testimonial .row .tabs li.active::before {
    position: absolute;
    content: "";
    width: 50px;
    height: 50px;
    background-color: var(--c2);
    border-radius: 50%;
}

.testimonial .row .tabs li.active::after {
    position: absolute;
    content: "";
    width: 30px;
    height: 30px;
    background-color: var(--c2);
    border-radius: 50%;
}

.testimonial .row .tabs li:nth-child(1) {
    align-self: flex-end;
}

.testimonial .row .tabs li:nth-child(1)::before {
    left: 64%;
    bottom: -50px;
}

.testimonial .row .tabs li:nth-child(1)::after {
    left: 97%;
    bottom: -81px;
}

.testimonial .row .tabs li:nth-child(1) figure img {
    margin-left: auto;
}

.testimonial .row .tabs li:nth-child(2) {
    align-self: flex-start;
}

.testimonial .row .tabs li:nth-child(2)::before {
    right: -65px;
    top: 50%;
}

.testimonial .row .tabs li:nth-child(2)::after {
    bottom: 101px;
    border-radius: 50%;
    right: -120px;
}

.testimonial .row .tabs li:nth-child(2) figure img {
    margin-right: auto;
    max-width: 240px;
    width: 100%;
    margin-top: -50px;
}

.testimonial .row .tabs li:nth-child(3) {
    align-self: flex-end;
}

.testimonial .row .tabs li:nth-child(3)::before {
    right: -10px;
    top: -66%;
}

.testimonial .row .tabs li:nth-child(3)::after {
    top: -130px;
    border-radius: 50%;
    right: -46px;
}

.testimonial .row .tabs li:nth-child(3) figure img {
    margin-left: auto;
    margin-top: -50px;
}

.testimonial .row .tabs li:nth-child(3):focus {
    border: 10px solid #ff0000;
}

.testimonial .row .tabs li figure {
    position: relative;
}

.testimonial .row .tabs li figure img {
    display: block;
}

.testimonial .row .tabs li figure::after {
    content: "";
    position: absolute;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    border: 4px solid #dff9d9;
    border-radius: 50%;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.testimonial .row .tabs li figure:hover::after {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.testimonial .row .tabs.carousel-indicators li.active figure::after {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.testimonial .row .carousel>h3 {
    font-size: 20px;
    line-height: 1.45;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 600;
    margin-bottom: 0;
}

.testimonial .row .carousel .h1 {
    font-size: 40px;
    line-height: 1.225;
    margin-top: 23px;
    font-weight: 700;
    margin-bottom: 0;
}

.testimonial .row .carousel .carousel-indicators {
    all: unset;
    padding-top: 43px;
    display: flex;
    list-style: none;
}

.testimonial .row .carousel .carousel-indicators li {
    background: #000;
    background-clip: padding-box;
    height: 2px;
}

.testimonial .row .carousel .carousel-inner .carousel-item .quote-wrapper {
    margin-top: 42px;
}

.testimonial .row .carousel .carousel-inner .carousel-item .quote-wrapper p {
    font-size: 18px;
    line-height: 1.72222;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.7);
}

.testimonial .row .carousel .carousel-inner .carousel-item .quote-wrapper h3 {
    color: #000;
    font-weight: 700;
    margin-top: 37px;
    font-size: 20px;
    line-height: 1.45;
    text-transform: uppercase;
}

@media only screen and (max-width: 1200px) {
    .testimonial .row .tabs {
        margin-right: 25px;
    }
}

/* testimonial end*/
/* carwash package start */


/* .pricing {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto 3em;
} */

.pricing-item {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: stretch;
    align-items: stretch;
    text-align: center;
    height: 100%;
    width: 100%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    /* -webkit-flex: 0 1 330px;
    flex: 0 1 330px; */
}

.pricing-action {
    color: inherit;
    border: none;
    background: none;
}

.pricing-action:focus {
    outline: none;
}

.pricing-feature-list {
    text-align: left;
}

.pricing-palden .pricing-item {
    font-family: "Open Sans", sans-serif;
    cursor: default;
    color: #84697c;
    background: #fff;
    box-shadow: 0 0 10px rgba(46, 59, 125, 0.23);
    border-radius: 20px 20px 10px 10px;
    margin: auto;
    height: 100%;
}

.pricing-palden>[class*="col-"] {
    display: flex;
}

@media screen and (min-width: 66.25em) {
    .pricing-palden .pricing-item {
        margin: 1em -0.5em;
    }

    .pricing-palden .pricing__item--featured {
        margin: 0;
        z-index: 10;
        box-shadow: 0 0 20px rgba(46, 59, 125, 0.23);
    }
}

.pricing-palden .pricing-deco {
    border-radius: 10px 10px 0 0;
    background: rgba(76, 70, 101, 0.99);
    padding: 4em 0 7em;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-grow: 1
}

.pricing_bottom_content {
    margin-top: -60px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 20px;
}

.pricing-palden .pricing-deco-img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    flex-shrink: 0;
    height: 160px;
}

.pricing-palden .pricing_top_content {
    flex-grow: 1;
}

.pricing-palden .pricing-title {
    font-size: 15px;
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    font-weight: 900;
}

.pricing-palden .deco-layer {
    -webkit-transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
}

.pricing-palden .pricing-item:hover .deco-layer--1 {
    -webkit-transform: translate3d(15px, 0, 0);
    transform: translate3d(15px, 0, 0);
}

.pricing-palden .pricing-item:hover .deco-layer--2 {
    -webkit-transform: translate3d(-15px, 0, 0);
    transform: translate3d(-15px, 0, 0);
}

.pricing-palden .icon {
    font-size: 2.5em;
}

.pricing-palden .pricing-price {
    font-size: 5em;
    font-weight: bold;
    padding: 0;
    color: #fff;
    margin: 0 0 0.25em 0;
    line-height: 0.75;
}

.pricing-palden .pricing-currency {
    font-size: 0.15em;
    vertical-align: top;
}

.pricing-palden .pricing-period {
    font-size: 0.15em;
    padding: 0 0 0 0.5em;
    font-style: italic;
}

.pricing-palden .pricing__sentence {
    font-weight: bold;
    margin: 0 0 1em 0;
    padding: 0 0 0.5em;
}

.pricing-palden .pricing-feature-list {
    margin: 0;
    padding: 0.25em 0 2.5em;
    list-style: none;
    text-align: center;
}

.pricing-palden .pricing-feature {
    padding: 1em 0;
}

.pricing-palden .pricing-action {
    font-weight: bold;
    margin: auto;
    padding: 1em 2em;
    color: #fff;
    white-space: nowrap;
    border-radius: 30px;
    background: #4d4766;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
    width: fit-content;
}

.pricing-palden .pricing-action:hover,
.pricing-palden .pricing-action:focus {
    background-color: #100A13;
}

.pricing-palden .pricing-item--featured .pricing-deco {
    padding: 5em 0 8.885em 0;
}

.video-wrapper iframe {
    width: 100%;
    height: 280px;
}

/* carwash package end */
/* contact start */

.contact-info-wrapper {
    background: linear-gradient(135deg, #f5f7fa, #ffffff);
    border-radius: 16px;
    padding: 30px;
}

.contact-card {
    display: flex;
    gap: 18px;
    padding: 20px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-card .icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #28a745;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.contact-card h5 {
    margin-bottom: 6px;
    font-weight: 600;
}

.contact-card p,
.contact-card li {
    font-size: 14px;
    color: #555;
}

.contact-card a {
    color: #28a745;
    font-weight: 500;
    text-decoration: none;
}

.contact-card ul {
    padding-left: 18px;
}

/* contact end */
/* gallery start */
.gallery_parent .comparison {
    width: 100%;
    padding-bottom: 55%;
    position: relative;
    overflow: hidden;
}

.gallery_parent figure {
    position: absolute;
    inset: 0;
    background-size: 50% 100%;
    background-position: right;
    margin: 0;
    height: 300px;
}

.gallery_parent .divisor {
    position: absolute;
    inset: 0;
    width: 50%;
    background-size: cover;
    box-shadow: 0 5px 10px -2px rgba(0, 0, 0, .3);
}

.gallery_parent .divisor::before,
.gallery_parent .divisor::after {
    content: "";
    position: absolute;
    right: -2px;
    width: 4px;
    height: calc(50% - 25px);
    background: #fff;
    z-index: 3;
}

.gallery_parent .divisor::before {
    top: 0;
}

.gallery_parent .divisor::after {
    bottom: 0;
}

.gallery_parent .handle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.gallery_parent .handle::before,
.gallery_parent .handle::after {
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -6px;
    border: 6px inset transparent;
}

.gallery_parent .handle::before {
    border-right: 6px solid white;
    left: 8px;
}

.gallery_parent .handle::after {
    border-left: 6px solid white;
    right: 8px;
}

.gallery_parent .comparison-title {
    font-weight: 600;
    letter-spacing: .5px;
    background-color: var(--c2);
    color: #ffffff;
    padding: 15px 0;
}

.gallery_parent .tag {
    position: absolute;
    top: 15px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    background: rgba(0, 0, 0, .7);
    color: #fff;
    border-radius: 20px;
    z-index: 4;
    text-transform: uppercase;
}

.gallery_parent .before-tag {
    left: 15px;
}

.gallery_parent .after-tag {
    right: 15px;
}

.gallery_parent .slider {
    -webkit-appearance: none;
    appearance: none;
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 3;
    margin: auto;
    -webkit-appearance: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 4px solid #fff;
}

.gallery_parent .slider::-webkit-slider-thumb {
    display: none;
}

@media (min-width: 992px) and (max-width: 1100px) {
    .gallery_parent figure {
        height: 250px;
    }
}

@media (min-width: 531px) and (max-width: 540px) {
    .gallery_parent figure {
        height: 285px;
    }
}

@media (min-width: 501px) and (max-width: 530px) {
    .gallery_parent figure {
        height: 385px;
    }
}

@media (min-width: 421px) and (max-width: 500px) {
    .gallery_parent figure {
        height: 225px;
    }
}

@media screen and (max-width: 420px) {
    .gallery_parent figure {
        height: 215px;
    }
}

@media screen and (max-width: 400px) {
    .gallery_parent figure {
        height: 185px;
    }
}

/* gallery end */
/* tires start */
.tires_content_sec {
    background: #f8f9fb;
}

.tires-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.tires-service-card {
    background: #ffffff;
    padding: 25px;
    text-align: center;
    border-radius: 14px;
    height: 100%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.tires-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.tires-service-card i {
    font-size: 34px;
    color: #d62828;
    margin-bottom: 12px;
}

.tires-service-card h5 {
    font-weight: 700;
    margin-bottom: 8px;
}

.tires-list {
    list-style: none;
    padding-left: 0;
}

.tires-list li {
    margin-bottom: 12px;
    font-size: 16px;
}

.tires-list i {
    color: #28a745;
    margin-right: 8px;
}

.brand-badges span {
    display: inline-block;
    background: #ffffff;
    padding: 10px 18px;
    margin: 6px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.tireBrandSwiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.subscribe-section {
    padding: 68px 0 62px;
    background: url(../images/subscribe-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.subscribe-title h4 {
    font-size: 17px;
    font-weight: 500;
    line-height: 26px;
    margin-top: 0;
    color: var(--c2);
}

.subscribe-title h1 {
    font-size: 30px;
    padding: 0;
    margin-top: 0;
    font-size: 48px;
    font-weight: 600;
    line-height: 54px;
    color: #fff;
    padding: 11px 0 0;
}

.subscribe-steering img {
    transform: rotate(45deg);
    animation-name: rotate360;
    animation-timing-function: ease-in-out;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    transition: all 3s;
    -webkit-transition: all 5s;
    /* transition-delay: 1s; */
}

@keyframes rotate360 {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    /* 50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    } */

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* tires end */
/* blog start */

/* blog */

.blog-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.blog {
    /* background-color: #1e1e1e; */
    border-radius: 8px;
    box-shadow: 0 4px 8px #0000001a;
    overflow: hidden;
    flex: 1 0 calc(33.33% - 20px);
    display: flex;
    flex-direction: column;
}

.blog_parent {
    display: none;
}

.blog_parent button {
    background: var(--c2);
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    transition: all .3s ease-out;
}

.blog_parent button:hover {
    background: var(--c1);
    transition: all .3s ease-out;
}

.blog-image {
    position: relative;
    height: 300px;
    width: 100%;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    object-position: top;
    height: auto;
    transition: transform 0.3s;
}

.blog-image img:hover {
    transform: scale(1.05);
}

.blog-image .date {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: #000000b3;
    color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 14px;
}

.blog-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-content h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-green);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-content p {
    flex-grow: 1;
    color: #313131;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-content .site_butt {
    align-self: flex-start;
    padding: 10px 20px;
    border-radius: 5px;
}

.active>.page-link,
.page-link.active {
    z-index: 3;
    color: #ffffff;
    background-color: var(--c1);
    border-color: var(--c1);
}

.page-link {
    color: var(--c1);
}


.blog_details_parent li {
    list-style: none;
}

.blog_details_parent ul,
.blog_details_parent ol {
    padding-left: 0;
}

.blog_details_parent table td {
    padding: 0 15px;
}

/* blog end */
/* gift card start */

/* SECTION */
.gift-wrap {
    padding: 80px 20px;
}

/* CONTAINER */
.gift-box {
    max-width: 1200px;
    margin: auto;
    border-radius: 24px;
    padding: 50px;
    background: linear-gradient(145deg, #ffffff, #f5f7ff);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

/* HERO */
.gift-hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.gift-badge {
    display: inline-block;
    background: linear-gradient(90deg, #ff416c, #ff4b2b);
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 14px;
}

.gift-hero h1 {
    font-size: 46px;
    margin: 0 0 12px;
}

.gift-hero p {
    font-size: 18px;
    color: #444;
}

.prices {
    margin-top: 16px;
    font-weight: 600;
    font-size: 18px;
}

/* CTA */
.hero-cta {
    text-align: center;
}

.hero-cta a {
    display: inline-block;
    background: linear-gradient(135deg, var(--c1), #56ccf2);
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(47, 128, 237, 0.35);
    transition: 0.3s;
}

.hero-cta a:hover {
    transform: translateY(-4px);
}

.logo_gift {
    height: 100px !important;
}

/* GLASS INFO */
.glass-info {
    margin: 50px 0 0;
    padding: 35px;
    border-radius: 20px;
    background: var(--glass);
    backdrop-filter: blur(14px);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.glass-info h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.glass-info p {
    color: #333;
}

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

    .gift-box,
    .glass-info {
        padding: 35px 20px;
    }
}

/* SERVICES */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 22px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: 0.35s;
    position: relative;
    overflow: hidden;
}

.service::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(47, 128, 237, 0.15));
    opacity: 0;
    transition: 0.3s;
}

.service:hover::after {
    opacity: 1;
}

.service:hover {
    transform: translateY(-10px);
}

.service h4 {
    font-size: 22px;
    margin-bottom: 8px;
}

.service p {
    color: #555;
}

/* TRUST */
.trust {
    margin: 50px 0 20px;
    text-align: center;
    font-weight: 600;
}

/* SUPPORT */
.support {
    text-align: center;
    font-size: 16px;
    color: #333;
}

/* FINAL CTA */
.final-cta {
    margin-top: 40px;
    text-align: center;
}

.final-cta a {
    background: linear-gradient(135deg, var(--c2), #6fcf97);
    color: #fff;
    padding: 18px 46px;
    border-radius: 60px;
    font-size: 19px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 14px 35px rgba(39, 174, 96, 0.35);
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .gift-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .gift-hero h1 {
        font-size: 36px;
    }
}

/* gift card end */
/* footer start */
.footer-section {
    background: #141414e7;
    color: #f1f1f1;
}

.footer-section h5,
.footer-section h6 {
    color: var(--c2);
    margin-bottom: 15px;
}

.footer-section p {
    font-size: 14px;
}

.footer-section strong {
    font-size: 18px;
}

.footer-section a {
    color: #d8d8d8;
    text-decoration: none;
}

.footer-section ul li {
    padding: 5px 0;
}

.footer-section a:hover {
    color: #fff;
}

.social-icons a {
    width: 30px;
    height: 30px;
    font-size: 14px;
    border: 1px solid #585858;
    border-radius: 5px;
    /* background: #585858; */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
}

.social-icons a:hover {
    background: #fff;
    color: #000;
}

/*-- Scroll To Top --*/

.scroll-to-top {
    background-color: var(--c2);
    color: #fff;
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 99;
    overflow: hidden;
    display: block;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    -webkit-animation: fadeOutRight 1s normal;
    animation: fadeOutRight 1s normal;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

@media (prefers-reduced-motion: reduce) {
    .scroll-to-top {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }
}

.scroll-to-top:hover {
    background-color: #ee3231;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    -webkit-animation: fadeInRight 1s normal;
    animation: fadeInRight 1s normal;
}

.scroll-to-top i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    color: #fff;
    display: inline-block;
}

#monthlyOfferModal .modal-dialog {
    max-width: 500px;
}

#monthlyOfferModal label {
    font-size: 13px;
}

.free_listing {
    position: fixed;
    z-index: 9;
    width: 100px;
    height: 100px;
    right: 10px;
    bottom: 0;
    top: 0;
    margin: auto;
    transform: translateY(80%);
    animation: vertically 2s linear infinite alternate;
}

@keyframes vertically {
    0% {
        transform: translateY(80%);
    }

    100% {
        transform: translateY(0%);
    }
}

/* footer end */
