/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Michroma&display=swap');

/*=====Reset CSS======*/
article,
aside,
canvas,
figure,
figcaption,
footer,
header,
nav,
section,
audio,
video,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
label {
  margin: 0;
  padding: 0;
  border: 0;
}

a,
button,
input,
input[type="button"],
input[type="submit"],
select,
.btn,
textarea {
  -webkit-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
  text-decoration: none;
  font-style: normal;
}

a:focus,
button:focus,
input[type="button"]:focus,
input[type="submit"]:focus,
select:focus,
.btn:focus,
textarea:focus,
.bootstrap-select .dropdown-toggle:focus {
  outline: none !important;
  -webkit-box-shadow: none;
  box-shadow: none !important;
}

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

a,
label {
  display: inline-block;
  vertical-align: middle;
  vertical-align: 0;
}

figure {
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  margin: 0;
  font-size: 0;
  line-height: 100%;
}

figure,
img {
  max-width: 100%;
}

ul,
ol {
  list-style: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}


/* Firefox */

input[type=number] {
  -moz-appearance: textfield;
}



.svg_container {
  display: none;
}

.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width: 100%;
}

html {
  scroll-behavior: smooth;
}

  body {
        font-family: var(--ff-body);
        text-rendering: optimizeSpeed;
        font-size: 16px;
        font-weight: 400;
        line-height: 1.2;
        color: var(--clr-text-400);
        overflow-x: hidden;
    }


::-webkit-scrollbar-thumb {
  background: var(--clr-accent);
  border-radius: 10px;
}

::-webkit-scrollbar {
  background: #fff;
  width: 14px;
}

::-moz-selection {
  background: var(--clr-accent);
  color: var(--white_color);
}
 ::selection {
        background: var(--clr-accent);
        color: #fff;
        -webkit-text-fill-color: #fff;
    }

/* Reset-css--------------- */
.page-template-home-tmpl :is(h1, h2, h3, h4, h5, h6) {
    font-family: var(--ff-menu);
}

  :root {
        --clr-accent: #1E1E1E;
        --clr-white: #fff;
        --clr-white-600: #fcfcfc;
        --clr-text-100: #5F5F5F;
        --clr-text-400: #21272A;
        --clr-black-300: #292929;
        --clr-black: #000;
        --clr-clr-grey: #767676;
        --ff-menu: "Michroma", sans-serif;
        /* --ff-heading: "Atyp Display TRIAL", sans-serif; */
        --ff-heading: "Albra Display", sans-serif;
        --ff-body: "Manrope", sans-serif;
        --swiper-scrollbar-bottom: 0px;
        --swiper-scrollbar-size: 2px;
        --swiper-scrollbar-drag-bg-color: var(--clr-accent);
        --swiper-pagination-color: var(--clr-accent);
        --swiper-pagination-progressbar-size: 3px;
        --swiper-pagination-progressbar-bg-color: #D6D6D6;
        /* fly */
        --fly-clr-grey: #969696;
        --fly-clr-light-grey: #F6F6F6;
        --fly-ff-primary: "Saira", sans-serif;
        /* sky */
        --ff-sky-heading: "Oswald", sans-serif;
        --sky-clr-accent: #7AB629;
        --clr-sky-grey: #838282;
        /* car */
        --clr-car-text: #737373;
        --clr-car-grey: #999999;
        --car-ff-heading: "Genesize Grotesk", sans-serif;
        --car-ff-sub-heading: "HelveticaNeueCyr", sans-serif;
        --clr-car-bg: #F9F9F9;
        --clr-car-light: #F4F4F4;
        /* wastemanagement */
        --clr-waste-title: #ffb800;
        --clr-waste-yellow: #efd923;
        --clr-waste-bg: #292e34;
        --clr-waste-text: #5a5a5a;
        --transition: 0.4s all ease-in-out;
    }

/* Global Headings */

.gap {
  padding: 75px 0;
}

h1 {}

h1 span {}


h2 {}

h2 span {}

h3 {}


h4 {


}

h5 {}

h6 {
    letter-spacing: 0;
    text-transform: capitalize;
}

a {
  transition: var(--transition);
}

a:hover {
  text-decoration: none;
}

section {
  position: relative;
}

p {
  margin-bottom: 10px;
}


.black_glbl_btn {
  transition: all 0.4s ease;
  border-radius: 30px;
  background: var(--heading_color);
  color: var(--white_color);
  min-width: 156px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  position: relative;
  overflow: hidden;
}

.black_glbl_btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.4),
      transparent);
  transform: skewX(-25deg);
  transition: all 0.6s ease;
}

.black_glbl_btn:hover::before {
  left: 130%;
}

.black_glbl_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.white_glbl_btn {
  position: relative;
  overflow: hidden;
  color: var(--heading_color);
  min-width: 156px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 1px solid var(--heading_color);
  border-radius: 30px;
  background: var(--white_color);
  transition: all 0.4s ease;
}

.white_glbl_btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(0, 0, 0, 0.15),
      transparent);
  transform: skewX(-25deg);
  transition: all 0.6s ease;
}

.white_glbl_btn:hover::before {
  left: 130%;
}

.white_glbl_btn:hover {
  background: var(--white_color);
  /* same white bg */
  color: var(--heading_color);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}



/* Global Headings */


/* Header Start ---------------*/

.sticky_hdr .header {
  filter: drop-shadow(0px 15px 25px rgba(0, 76, 102, 0.15));
  -webkit-filter: drop-shadow(0px 15px 25px rgba(0, 76, 102, 0.15));
  padding: 15px 0;
  background-color: #c8faeb;
}




.hdrmobile_logo {
  display: none;
}

.menu-link-wrapper {
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: none;
}

.line {
  background: #000;
  width: 30px;
  height: 3px;
  display: block;
  margin: 3px 0;
}

.header_listing_holder {
  flex-grow: 1;
}

.header_wrppr {
  display: flex;
  align-items: center;
  padding: 0 100px;
  position: relative;
}

.navlink {
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  transition: var(--transition);
  position: relative;
  color: #515479;
  line-height: 20px;
}

.navitem {
  position: relative;
  padding: 0 15px;
}

.navlist {
  display: flex;
  align-items: center;
  padding: 15px 10px;
}

.header {
  position: fixed;
  width: 100%;
  z-index: 4;
  top: 0;
  transition: var(--transition);
  padding: 0 0 8px 0;
  background: transparent;
  margin-top: 50px;
}

.headerlogo_hamwrpr {
  position: absolute;
  left: 0;
  right: 0;
}

.header_logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  max-width: 236px;
}

.navlist_hldr {
  border: 8px solid rgb(255, 255, 255);
  border-radius: 100px;
  box-shadow: 0px 7px 15px 0px rgba(52, 76, 131, 0.15);
  backdrop-filter: blur(74px);
  background: rgba(255, 255, 255, 0.5);
}

.navlist li:nth-child(5) {
  margin-left: auto;
}

.navlink:hover {
  color: var(--hdng_color);
  font-weight: 500;
}


.navlink::after {
  position: absolute;
  content: '';
  background: #FC8B2B;
  bottom: 0;
  left: unset;
  right: 0;
  width: 0;
  height: 2px;
  transition: var(--transition);
}

.nav-up {
  top: -120px;
}

/* Header End----------- */

figure,
    img {
        max-width: 100%;
    }

    .page-template-home-tmpl {
        line-height: 26px;
        color: var(--clr-accent);
        background: var(--clr-white);
    }


    .page-template-home-tmpl :is(h1, h2, h3, h4, h5, h6) {
        font-family: var(--ff-menu);
    }

    .page-template-home-tmpl .gap {
        padding: 75px 0;
    }


    .page-template-home-tmpl a {
        transition: var(--transition);
    }


    .page-template-home-tmpl section {
        position: relative;
    }

    .page-template-home-tmpl p {
        margin-bottom: 10px;
    }


    .black_glbl_btn {
        transition: all 0.4s ease;
        border-radius: 30px;
        background: var(--clr-accent);
        color: var(--clr-white);
        min-width: 156px;
        height: 46px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0 25px;
        position: relative;
        overflow: hidden;
    }

    .black_glbl_btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: -75%;
        width: 50%;
        height: 100%;
        background: linear-gradient(120deg,
                transparent,
                rgba(255, 255, 255, 0.4),
                transparent);
        transform: skewX(-25deg);
        transition: all 0.6s ease;
        pointer-events: none;
    }

    .black_glbl_btn:hover::before {
        left: 130%;
    }

    .black_glbl_btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    }

    .white_glbl_btn {
        position: relative;
        overflow: hidden;
        color: var(--clr-accent);
        min-width: 156px;
        height: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0 25px;
        border: 1px solid var(--clr-accent);
        border-radius: 30px;
        background: var(--clr-white);
        transition: all 0.4s ease;
    }

    .white_glbl_btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: -75%;
        width: 50%;
        height: 100%;
        background: linear-gradient(120deg,
                transparent,
                rgba(0, 0, 0, 0.15),
                transparent);
        transform: skewX(-25deg);
        transition: all 0.6s ease;
    }

    .white_glbl_btn:hover::before {
        left: 130%;
    }

    .white_glbl_btn:hover {
        background: var(--clr-white);
        /* same white bg */
        color: var(--clr-accent);
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }



    /* Global Headings */


    /* Header Start ---------------*/

    .sticky_hdr .header {
        filter: drop-shadow(0px 15px 25px rgba(0, 76, 102, 0.15));
        -webkit-filter: drop-shadow(0px 15px 25px rgba(0, 76, 102, 0.15));
        padding: 15px 0;
        background-color: #c8faeb;
    }




    .hdrmobile_logo {
        display: none;
    }

    .menu-link-wrapper {
        width: 50px;
        height: 50px;
        cursor: pointer;
        display: none;
    }

    .line {
        background: #000;
        width: 30px;
        height: 3px;
        display: block;
        margin: 3px 0;
    }

    .header_listing_holder {
        flex-grow: 1;
    }

    .header_wrppr {
        display: flex;
        align-items: center;
        padding: 0 100px;
        position: relative;
    }

    .navlink {
        font-size: 16px;
        font-weight: 400;
        text-transform: capitalize;
        transition: var(--transition);
        position: relative;
        color: #515479;
        line-height: 20px;
    }

    .navitem {
        position: relative;
        padding: 0 15px;
    }

    .navlist {
        display: flex;
        align-items: center;
        padding: 15px 10px;
    }

    .header {
        position: fixed;
        width: 100%;
        z-index: 4;
        top: 0;
        transition: var(--transition);
        padding: 0 0 8px 0;
        background: transparent;
        margin-top: 50px;
    }

    .headerlogo_hamwrpr {
        position: absolute;
        left: 0;
        right: 0;
    }

    .header_logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
        max-width: 236px;
    }

    .navlist_hldr {
        border: 8px solid rgb(255, 255, 255);
        border-radius: 100px;
        box-shadow: 0px 7px 15px 0px rgba(52, 76, 131, 0.15);
        backdrop-filter: blur(74px);
        background: rgba(255, 255, 255, 0.5);
    }

    .navlist li:nth-child(5) {
        margin-left: auto;
    }

    .navlink:hover {
        color: var(--hdng_color);
        font-weight: 500;
    }


    .navlink::after {
        position: absolute;
        content: '';
        background: #FC8B2B;
        bottom: 0;
        left: unset;
        right: 0;
        width: 0;
        height: 2px;
        transition: var(--transition);
    }

    .nav-up {
        top: -120px;
    }

    /* Header End----------- */

    /* Landing PAGE Start */

    .landing_banner_lease {
        min-height: 100vh;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }

    .banner_contents_lease {
        text-align: center;
        max-width: 530px;
        margin: auto;
        z-index: 1;
        position: relative;
    }

    .banner_contents_lease .lease_btn {
        width: 170px;
        height: 170px;
        border: 1px solid var(--clr-white);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        flex-direction: column;
        row-gap: 20px;
        margin: 0 auto 70px;
        color: var(--clr-white);
    }

    .banner_contents_lease p {
        color: var(--clr-white);
    }

    .banner_contents_lease h1 {
        color: var(--clr-white);
        font-size: 40px;
        text-transform: uppercase;
        margin-bottom: 70px;
    }

    .lease_landing_video {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

    .lease_landing_video video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .landing_banner_lease::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: linear-gradient(-0.81deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.81) 100%);
    }

    .header_menu_img {
        position: absolute;
        z-index: 2;
        top: 20px;
        right: 0;
        left: 0;
        margin: auto;
    }

    /* Tilt Css */
    .tilt {
        box-shadow: 0 20px 27px rgba(0, 0, 0, 0.05);
        transform-style: preserve-3d;
        border-radius: 50%;
        transition: transform 0.2s ease;
    }

    .tilt img {
        transform: translateZ(10px);
    }

    /* Tilt Css */

    .lease_tab_car_wrpr .image img {
        width: 100%;
        height: 100%;
    }

    .lease__tab_wrpr {
        padding: 50px 60px 50px 0;
        border: 1px solid rgba(231, 231, 231, 1);
        border-radius: 16px;
        background: rgba(248, 248, 248, 1);
        margin-top: -70px;
    }

    .landing__tab_lease .container-fluid {
        padding: 0 80px;
    }

    .lease_tab_right_wrpr {
        padding-left: 40px;
    }

    .leasecar_text_hldr h6 {
        color: #525252;
        font-family: var(--ff-body);
        margin-bottom: 25px;
        border-bottom: 1px solid #525252;
        display: inline-block;
        padding-bottom: 5px;
        font-size: 18px;
    }

    .leasecar_text_hldr h6 img {
        max-width: 56px;
        margin-left: 5px;
    }

    .lease_heading h2 {
        color: rgba(var(--clr-accent), 0.88);
        font-size: 45px;
        font-weight: 400;
        line-height: 1.5;
        text-transform: uppercase;
        margin-bottom: 20px;
    }

    .lease_tab_right_wrpr ul li {
        color: #525252;
        position: relative;
        padding-left: 26px;
    }

    .lease_tab_right_wrpr ul li::after {
        content: '';
        position: absolute;
        width: 13px;
        height: 13px;
        background: #D9D9D9;
        left: 0px;
        top: 7px;
        border-radius: 50%;
        animation: pulseDot 1.8s ease-out infinite;
    }

    .btn_wrpr {
        display: inline-flex;
        align-items: center;
        gap: 15px;
        margin-top: 30px;
    }

    .lease_tab_car_wrpr {
        position: relative;
    }

    .plan_holder {
        border: 1px solid rgba(255, 255, 255, 1);
        border-radius: 16px;
        box-shadow: 0px -1px 4px 0px rgba(0, 0, 0, 0.25);
        backdrop-filter: blur(49.20000076293945px);
        background: rgba(255, 255, 255, 0.60);
        position: absolute;
        top: 12%;
        right: 33%;
        max-width: 230px;
        padding: 15px;
        transition: 0.2s all;
    }

    .lease_tab_car_wrpr h3 {
        font-family: var(--ff-body);
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .lease_tab_car_wrpr p {
        color: var(--clr-accent);
        font-size: 12px;
        line-height: 1.5;
    }

    .lease_tab_car_wrpr .white_glbl_btn {
        font-size: 12px;
        min-width: 104px;
        height: 30px;
        padding: 0 15px;
        margin-bottom: 25px;
    }


    .round_btn {
        position: relative;
        display: flex;
        width: 47px;
        height: 47px;
        background: var(--clr-accent);
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: var(--clr-white);
        margin-left: auto;
        overflow: hidden;
        transition: all 0.4s ease;
    }

    .round_btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 60%;
        height: 100%;
        background: linear-gradient(120deg,
                transparent,
                rgba(255, 255, 255, 0.4),
                transparent);
        transform: skewX(-25deg);
        transition: all 0.6s ease;
    }

    .round_btn:hover::before {
        left: 130%;
    }

    .round_btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    }

    .lease_tab_car_wrpr:hover .plan_holder {
        opacity: 1;
    }

    .lease__tab_wrpr .nav-tabs {
        border: none;
        gap: 25px;
        padding-left: 60px;
        margin-bottom: 70px;
		justify-content: center;
    }

    .lease__tab_wrpr .nav-link {
        padding: 15px 30px;
        border-radius: 50px;
		border: none;
    }

    .lease__tab_wrpr .nav-link.active {
        background: var(--clr-accent);
    }

    .lease__tab_wrpr .nav-link.active img {
        filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7467%) hue-rotate(127deg) brightness(98%) contrast(106%);
    }

    .lease__tab_wrpr .nav-link img {
        width: 40px;
        height: 40px;
        object-fit: contain;
    }

    .plan_holder::after {
        content: '';
        position: absolute;
        width: 13px;
        height: 13px;
        background: #D9D9D9;
        right: 20px;
        top: 20px;
        border-radius: 50%;
        animation: pulseDot 1.8s ease-out infinite;
    }

    @keyframes pulseDot {
        0% {
            box-shadow: 0 0 0 0 rgba(217, 217, 217, 0.6);
            transform: scale(1);
        }

        70% {
            box-shadow: 0 0 0 12px rgba(217, 217, 217, 0);
            transform: scale(1.1);
        }

        100% {
            box-shadow: 0 0 0 0 rgba(217, 217, 217, 0);
            transform: scale(1);
        }
    }

    .expeience_card_lease {
        border: 1px solid #e7e7e7;
        border-radius: 16px;
        background: #f4f4f4;
        padding: 20px;
        transition: var(--transition);
        height: 100%;
    }

    .expeience_card_lease:hover {
        background: var(--clr-accent);
        color: var(--clr-white);
    }

    .landing__tab_lease .container .row+.row {
        margin-top: 100px;
    }

    .landing__tab_lease {
        padding-bottom: 80px;
    }

    .expeience_card_lease .exp_hldr .icon {
        width: 60px;
        height: 60px;
        background: var(--clr-white);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        border: 1px solid #e7e7e7;
        flex: 0 0 auto;
		padding: 7px;
    }

    .expeience_card_lease .exp_hldr {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 15px;
    }

    .expeience_card_lease .exp_hldr h6 {
        font-size: 32px;
        text-transform: uppercase;
    }

    .leasing_item {
        position: relative;
        min-height: 100vh;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .slider_bg_img {
        position: absolute;
        inset: 0;
    }

    .w100 {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .leasing__slider_section .container-fluid {
        padding: 0;
    }

    .leasing_slider .slider__wrpr {
        position: relative;
    }

    .leasing_item .contents {
        max-width: 60%;
    }

    .leasing_item .lease_heading h2 {
        color: var(--clr-white);
    }

    .leasing_item .contents p {
        color: var(--clr-white);
    }

    .starter_plans_holder {
        background: var(--clr-white);
        padding: 25px;
        border-radius: 16px;
        height: 100%;
    }

    .starter_plans_holder h6 {
        color: var(--clr-accent);
        font-family: var(--ff-body);
        font-weight: 400;
        margin-bottom: 10px;
    }

    .starter_plans_holder h3 {
        font-size: 18px;
        text-transform: uppercase;
        margin-bottom: 20px;
    }

    .starter_plans_holder h3 span {
        font-size: 24px;
    }

    .starter_plans_holder .black_glbl_btn {
        display: flex;
        cursor: pointer;
    }

    .starter_plans_holder ul {
        padding-top: 16px;
        margin-top: 20px;
        border-top: 1px solid #939393;
    }

    .starter_plans_holder ul li {
        color: #525252;
        position: relative;
        padding-left: 20px;
    }

    .starter_plans_holder ul li+li {
        margin-top: 10px;
    }

    .starter_plans_holder ul li::after {
        content: '';
        position: absolute;
        background: url(../images/listing_check.png) no-repeat left;
        width: 14px;
        height: 14px;
        left: 0;
        top: 6px;
    }

    .starter__plans_wrap {
        position: relative;
        z-index: 1;
		margin-right: 21px;
    }

    .starter__plans_wrap::after {
        content: '';
        position: absolute;
        top: -25px;
        left: -25px;
        width: calc(100% + 50px);
        height: calc(100% + 50px);
        border-radius: 16px;
        padding: 3px;
        z-index: -1;
        background: linear-gradient(90deg,
                rgba(255, 255, 255, 1) 0%,
                rgba(255, 255, 255, 0) 50%,
                rgba(255, 255, 255, 1) 100%);
        background-size: 300% 300%;
        animation: borderColorFlow 6s linear infinite;
        -webkit-mask:
            linear-gradient(#fff 0 0) content-box,
            linear-gradient(#fff 0 0);
        mask-composite: exclude;
        -webkit-mask-composite: xor;
    }

    @keyframes borderColorFlow {
        0% {
            background-position: 0% 50%;
        }

        50% {
            background-position: 100% 50%;
        }

        100% {
            background-position: 0% 50%;
        }
    }

    .slider_bg_img::after {
        content: '';
        position: absolute;
        background: rgb(0, 0, 0, 0.2);
        inset: 0;
    }


    .leasing_slider .slick-prev,
    .leasing_slider .slick-next {
        top: 80%;
        width: 40px;
        height: 40px;
        z-index: 1;
        left: 50%;
        transform: translateX(-50%);
    }

    .leasing_slider .slick-next {
        margin-left: 80px;
    }

    .leasing_slider .slick-prev {
        margin-left: -80px;
    }

    .leasing_slider .slick-prev:before {
        opacity: 1;
        content: '';
        background: url(../images/left_arrow.png) no-repeat center;
        width: 47px;
        height: 47px;
        display: block;
        transition: var(--transition);
    }

    .leasing_slider .slick-prev:hover::before,
    .leasing_slider .slick-next:hover::before {
        opacity: 0.7;
    }

    .leasing_slider .slick-next:before {
        opacity: 1;
        content: '';
        background: url(../images/right_arrow.png) no-repeat center;
        width: 47px;
        height: 47px;
        display: block;
        transition: var(--transition);
    }

    .leasing_slider .slick-next::after {
        content: '';
        position: absolute;
        background: var(--clr-white);
        width: 80px;
        height: 1px;
        left: -90px;
        pointer-events: none;
        top: 56%;
    }

    .whychoose__section {
        min-height: 100vh;
        padding-top: 60px;
    }

    .whychhose_bgimg {
        position: absolute;
        inset: 0;
    }

    .whychoose__section .container {
        position: relative;
    }

    .whychoose_accordian .accordion-button {
        color: var(--clr-accent);
        font-size: 24px;
        text-transform: uppercase;
        backdrop-filter: blur(49.20000076293945px);
        background: rgba(255, 255, 255, 0.42);
        padding: 30px;
        box-shadow: none;
        transition: var(--transition);
        padding-right: 150px;
        line-height: 1.4;
    }

    .whychoose_accordian .accordion-item {
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.7);
        transition: var(--transition);
    }

    .whychoose_accordian .accordion-header {
        transition: var(--transition);
    }

    .whychoose_accordian .accordion-item {
        overflow: hidden;
        color: var(--clr-white);
        border-radius: 16px;
    }

    .ecofriendly_section {
        overflow-x: hidden;
    }

    /* .leasing__slider_section .container-fluid>.row>*,
.refined__slider_section .container-fluid>.row>*
{
  padding: 0;
} */


    .whychoose_accordian .accordion-body {
        /* backdrop-filter: blur(49.20000076293945px); */
        background: rgba(0, 0, 0, 0.42);
        padding: 0 160px 25px 35px;
        font-size: 18px;
    }

    .whychoose_accordian .accordion-item:has(.accordion-collapse.show) .accordion-button {
        backdrop-filter: unset;
        border: none;
        background: rgba(0, 0, 0, 0.42);
    }

    .whychoose_accordian .accordion-button:not(.collapsed) {
        color: var(--clr-white);
        background-color: unset;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.42);
    }

    .accordion-item:last-of-type .accordion-button.collapsed {
        border-radius: 0;
    }

    .accordion-item:first-of-type .accordion-button {
        border-radius: 0;
    }

    .whychoose_accordian .accordion-button::after {
        background: url(../images/accordian_arrow.png) no-repeat right;
        position: absolute;
        right: 40px;
        width: 25px;
        height: 30px;
        transform: rotate(0deg);
        transition: var(--transition);
    }

    .whychoose_accordian .accordion-button:not(.collapsed)::after {
        background: url(../images/accordian_arrow.png) no-repeat right;
        filter: brightness(0) saturate(100%) invert(100%) sepia(96%) saturate(0%) hue-rotate(19deg) brightness(103%) contrast(104%);
        transform: var(--bs-accordion-btn-icon-transform);
    }

    .whychoose_accordian {
        padding-left: 150px;
        padding-top: 80px;
    }

    .whychhose_left_contents .leasecar_text_hldr h6 {
        color: var(--clr-black);
    }

    .whychhose_left_contents {
        max-width: 800px;
    }

    .ecofriendly__heading {
        text-align: center;
        max-width: 1100px;
        margin: auto;
    }

    .ecofriendly__heading p {
        color: #525252;
    }

    .eco_nav h3 {
        color: rgba(30, 30, 30, 0.88);
        font-size: 24px;
        text-transform: capitalize;
        margin-bottom: 20px;
    }

    .eco_nav_hldr {
        border-radius: 16px;
        background: #f8f8f8;
        padding: 20px;
        position: relative;
        height: 100%;
        z-index: 1;
    }

    .eco_nav {
        padding: 0 12px;
        height: auto;
    }

    .eco_nav_hldr::after {
        content: '';
        position: absolute;
        background: url(../images/eco_current_after.png) no-repeat center;
        background-size: 100% 100%;
        inset: 0;
        z-index: -1;
        opacity: 0;
        transition: var(--transition);
    }

    .eco_nav.slick-current .eco_nav_hldr::after {
        opacity: 1;
    }

    .eco_nav_hldr .starter_plans_holder {
        background: transparent;
        padding: 0;
        height: auto;
    }

    .eco_nav_hldr .starter_plans_holder ul li+li {
        margin-top: 4px;
    }

    .eco_nav_hldr .starter_plans_holder ul {
        margin-top: 0;
        border: none;
        padding-top: 0;
        padding-right: 45px;
    }

    .eco_nav_hldr img {
        width: 100%;
        height: 170px;
        object-fit: contain;
    }

    .eco_nav_hldr .round_btn {
        position: absolute;
        bottom: 16px;
        right: 12px;
    }

    .ecofriendly__slider .slider-nav .slick-track {
        display: flex;
        position: relative;
    }

    .ecofriendly__slider .slider-nav .slick-track::after {
        content: '';
        position: absolute;
        width: 100%;
        left: 0;
        right: 0;
        height: 1px;
        background: #000;
        top: calc(50% + 2px);
        z-index: -1;
    }

    .ecofriendly__slider .slick-list {
        padding: 0 10px;
        max-width: 1700px;
        margin: auto;
    }

    .ecofriendly__slider .slick-prev,
    .ecofriendly__slider .slick-next {
        width: 40px;
        height: 40px;
        z-index: 1;
    }

    .ecofriendly__slider .slick-prev:before {
        opacity: 1;
        content: '';
        background: url(../images/eco_leftarrow.png) no-repeat center;
        width: 47px;
        height: 47px;
        display: block;
        transition: var(--transition);
    }

    .ecofriendly__slider .slick-prev::after {
        content: "";
        position: absolute;
        top: 56%;
        background: var(--clr-black);
        height: 1px;
        right: 0;
        left: -100vw;
        width: 100vw;
    }

    .ecofriendly__slider .slick-next:before {
        opacity: 1;
        content: '';
        background: url(../images/eco_rightarrow.png) no-repeat center;
        width: 47px;
        height: 47px;
        display: block;
        transition: var(--transition);
    }

    .ecofriendly__slider .slick-next::after {
        content: "";
        position: absolute;
        top: 56%;
        background: var(--clr-black);
        height: 1px;
        right: 0;
        right: -100vw;
        width: 100vw;
    }

    .eco_for img {
        width: 700px;
        height: 450px;
        object-fit: contain;
        scale: 0.3;
        transition: var(--transition);
    }

    .eco_for {
        text-align: center;
        margin-bottom: 30px;
    }

    .eco_for.slick-current img {
        scale: 1;
    }

    .eco_for .black_glbl_btn {
        opacity: 0;
    }

    .eco_for.slick-current .black_glbl_btn {
        opacity: 1;
    }

    .ebike_sticky_hdng_wrpr {
        max-width: 1150px;
        margin: auto;
        text-align: center;
    }

    .ebike_sticky_hdng_wrpr .lease_heading h2 {
        margin-bottom: 40px;
    }

    .ebike_sticky_hdng_wrpr .lease_heading h2 span {
        display: block;
    }

    .ebike_sticky_hdng_wrpr h3 {
        color: var(--clr-accent);
        font-family: var(--ff-body);
        font-size: 40px;
        text-transform: uppercase;
    }

    .ebike_sticky_card_wrpr .cards {
        border: 1px solid #eeeeee;
        border-radius: 16px;
        background: #f8f8f8;
        padding: 25px;
        position: sticky;
        top: 100px;
        margin-bottom: 25px;
    }

    .ebike_sticky_card_wrpr .cards:last-child {
        margin-bottom: 0;
    }

    .ebike_sticky_card_wrpr {
        max-width: 1150px;
        margin: 40px auto auto;
        position: relative;
    }

    .ebike_sticky_card_wrpr .cards h3 {
        max-width: 450px;
        font-size: 24px;
        text-transform: uppercase;
        line-height: 1.4;
    }

    .sticky_thumb {
        text-align: center;
    }

    .sticky_thumb img {
        max-width: 500px;
    }

    .about_hldr {
        color: #525252;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 10px;
    }

    .ebike_sticky_card_wrpr .cards .text {
        max-width: 500px;
    }


    .small_icon {
        max-width: 180px;
        border: 1px solid #eeeeee;
        border-radius: 16px;
        background: var(--clr-white);
        padding: 10px;
        position: absolute;
        top: 15px;
        right: 15px;
    }

    .small_icon h4 {
        font-size: 14px;
        text-transform: uppercase;
        text-align: center;
        line-height: 1.4;
        margin-top: 10px;
    }

    .progress__hdng_wrpr {
        text-align: center;
        max-width: 710px;
        margin: 0 auto 35px;
    }

    .leasecar_text_hldr.whitetext h6 {
        color: var(--clr-white);
        border-color: var(--clr-white);
    }

    .leasecar_text_hldr.whitetext h6 img {
        filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(1%) hue-rotate(67deg) brightness(106%) contrast(102%);
    }

    .progress__hdng_wrpr .lease_heading h2 {
        color: var(--clr-white);
    }

    .progress__section {
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
    }

    .progress__card {
        text-align: center;
        padding: 0 50px;
        position: relative;
    }

    .progress__card::after {
        content: "";
        position: absolute;
        top: 80px;
        right: 0;
        width: 1px;
        height: 120px;
        background-image: linear-gradient(to bottom,
                var(--clr-white) 0 30%,
                transparent 30% 100%);
        background-size: 1px 12px;
        background-repeat: repeat-y;
    }


    .progress_icon {
        width: 100px;
        height: 100px;
        object-fit: contain;
        margin-bottom: 15px;
    }

    .progress__card h3 {
        color: var(--clr-white);
        font-size: 24px;
        text-transform: uppercase;
        margin-bottom: 15px;
        line-height: 1.4;
    }

    .progress__card p {
        color: var(--clr-white);
        font-weight: 300;
    }

    .progress__section .row {
        row-gap: 20px;
    }

    .progress__section .row>*:nth-child(4n) .progress__card::after {
        display: none;
    }

    .transparent_btn {
        position: relative;
        overflow: hidden;
        border: 1px solid var(--clr-white);
        border-radius: 30px;
        color: var(--clr-white);
        min-width: 156px;
        height: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0 25px;
        background: transparent;
        cursor: pointer;
        transition: var(--transition);
    }

    .transparent_btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: -75%;
        width: 50%;
        height: 100%;
        background: linear-gradient(120deg,
                transparent,
                rgba(255, 255, 255, 0.3),
                transparent);
        transform: skewX(-25deg);
        transition: all 0.6s ease;
    }

    .transparent_btn:hover::before {
        left: 130%;
    }

    .transparent_btn:hover {
        color: var(--clr-black);
        background: var(--clr-white);
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    .progress_btn {
        text-align: center;
        margin-top: 60px;
    }

    .progress_btn span {
        font-size: 16px;
        margin: 0 25px;
        color: var(--clr-white);
    }

    .progress__section::after {
        content: '';
        position: absolute;
        background: linear-gradient(0.00deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.5) 100%);
        inset: 0;
    }

    .progress__section .container {
        position: relative;
        z-index: 1;
    }

    .leasing_option_heading {
        text-align: center;
        max-width: 1100px;
        margin: 0 auto 50px;
    }

    .leasing__option_card {
        border: 1px solid rgba(231, 231, 231, 1);
        border-radius: 16px;
        background: hsl(0, 0%, 96%);
        padding: 22px;
        height: 100%;
        transition: var(--transition);
    }

    .leasing__option_card:hover {
        background: var(--clr-accent);
        color: var(--clr-white);
    }

    .leasing__option_card:hover p {
        color: var(--clr-white);
    }

    .leasing__option_card>img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        border-radius: 16px;
        margin-bottom: 20px;
    }

    .leasing__option_card h3 {
        font-size: 24px;
        text-transform: uppercase;
        margin-bottom: 15px;
        line-height: 1.4;
    }

    .leasing__option_card p {
        color: #525252;
        font-size: 16px;
        transition: var(--transition);
    }

    .leasing__option_section .row {
        row-gap: 25px;
    }

    .form_fields {
        background: #f7f7f7;
        border-radius: 16px;
        padding: 40px 40px 30px;
        color: #525252;
        font-size: 18px;
    }

    .appointmnet_form {
        text-align: center;
        max-width: 1100px;
        margin: auto;
    }

    .appnt_input {
        max-width: 230px;
        padding: 0 15px;
        border: none;
        border-bottom: 1px solid var(--clr-accent);
        background: transparent;
        margin-bottom: 25px;
        color: var(--clr-accent);
    }

    .appnt_input:focus-visible {
        outline: none;
    }

    .form_fields select {
        color: #525252;
        font-size: 18px;
        border-radius: 8px;
        background: var(--clr-white);
        min-width: 220px;
        padding: 6px 12px;
        cursor: pointer;
    }

    .appnt_checkbox {
        color: #525252;
        font-size: 18px;
        display: inline-flex;
        justify-content: center;
        margin-top: 30px;
        position: relative;
        cursor: pointer;
        column-gap: 10px;
    }

    .appointmnet_form input[type="submit"] {
        display: block;
        width: 100%;
        background: transparent;
        color: #fff;
        border: none;
        height: 100%;
    }

    .appnt_checkbox input {
        position: absolute;
        inset: 0;
        opacity: 0;
        cursor: pointer;
    }

    .appnt_box {
        width: 25px;
        height: 25px;
        box-sizing: border-box;
        border: 1px solid rgba(82, 82, 82, 1);
        border-radius: 4px;
        position: relative;
        z-index: -1;
    }

    .appnt_box::after {
        content: '';
        position: absolute;
        left: 9px;
        top: 4px;
        width: 7px;
        height: 13px;
        border: solid white;
        border-width: 0 3px 3px 0;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        opacity: 0;
        transition: var(--transition);
    }

    .appnt_checkbox input:checked~.appnt_box {
        background: var(--clr-accent);
    }

    .appnt_checkbox input:checked~.appnt_box::after {
        opacity: 1;
    }

    .appointmnet_form .black_glbl_btn {
        display: inline-block;
        padding: 0;
        margin-top: 25px;
        overflow: unset;
    }

    .lease__footer {
        background: var(--clr-accent);
        padding: 40px 0 20px;
    }

    .ftr_bnr_img {
        width: 100%;
        height: 380px;
        object-fit: cover;
        border-radius: 16px;
    }

    .footer_bnr {
        position: relative;
    }

    .footer_bnr::after {
        content: '';
        position: absolute;
        background: url(../images/ftr_bnr_shadow.png) no-repeat left;
        inset: 0;
        background-size: 100% 100%;
    }

    .ftr_info {
        z-index: 1;
        position: absolute;
        bottom: 30px;
        left: 40px;
    }

    .ftr_info h6 {
        color: var(--clr-white);
        font-size: 18px;
        text-transform: uppercase;
        margin-bottom: 20px;
    }

    .ftr_info a {
        color: var(--clr-white);
        font-family: var(--ff-menu);
        font-size: 40px;
        text-transform: uppercase;
    }

    .ftr_info a:hover {
        opacity: 0.7;
    }

    .footer_mid {
        text-align: center;
        margin: 45px 0 75px;
    }

    .lease_footer_logo {
        max-width: 222px;
        margin: auto;
        display: block;
    }

    .footer_bottom li a {
        color: var(--clr-white);
        font-size: 18px;
        position: relative;
    }

    .footer_bottom li a:hover::after {
        width: 100%;
        right: unset;
        left: 0;
    }

    .footer_bottom li a::after {
        content: '';
        position: absolute;
        width: 0;
        left: unset;
        right: 0;
        bottom: 0;
        height: 1px;
        background: var(--clr-white);
        transition: var(--transition);
    }

    .footer_bottom ul {
        display: flex;
        align-items: center;
        column-gap: 60px;
        row-gap: 10px;
        flex-wrap: wrap;
    }

    .footer_bottom ul li:nth-child(4) {
        margin-left: auto;
    }


    .footer_btm_text {
        color: var(--clr-white);
        font-size: 18px;
        text-align: center;
        border-top: 1px solid #fff;
        margin-top: 20px;
        padding-top: 20px;
    }

    .footer_btm_top {
        color: var(--clr-white);
        font-size: 18px;
        text-align: center;
        max-width: 370px;
        margin: auto;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 56px;
    }

    .footer_bottom {
        position: relative;
    }

    .lease__footer::after {
        content: '';
        position: absolute;
        background: url(../images/footer_shape.png) no-repeat center;
        background-size: 100% 100%;
        inset: 0;
    }

    .lease__footer {
        position: relative;
    }

    .lease__footer .container {
        position: relative;
        z-index: 1;
    }

    .refined__slider_section .container-fluid {
        padding: 0;
    }

    .refined_slider_item .slider_wrprr {
        position: relative;
    }

    .refined__slider_hldr {
        border: 1px solid var(--clr-white);
        border-radius: 16px;
        box-shadow: 0px -1px 4px 0px rgba(0, 0, 0, 0.25);
        backdrop-filter: blur(49.20000076293945px);
        background: rgba(255, 255, 255, 0.60);
        max-width: 530px;
        padding: 30px;
        position: absolute;
        bottom: 100px;
        z-index: 2;
        opacity: 0;
        transform: translateX(-100px);
        transition: all 1s ease;
    }

    .refined__slider .slick-current .refined__slider_hldr {
        opacity: 1;
        transform: translateX(0);
    }

    .leasing__slider_section,
    .refined__slider_section {
        overflow-x: hidden;
    }

    .refined__slider_hldr h3 {
        font-size: 40px;
        text-transform: uppercase;
        margin-bottom: 15px;
    }

    .refined__slider_hldr .black_glbl_btn {
        margin-top: 20px;
    }

    .refined__arrows button {
        border: none;
        background: transparent;
        padding: 0;
    }

    .refined__arrows {
        position: absolute;
        bottom: 130px;
        left: 0;
        right: 0;
        pointer-events: none;
    }

    .refine_arw_hldr {
        display: inline-flex;
        column-gap: 90px;
        left: 320px;
        position: relative;
        pointer-events: initial;
    }

    .refine_arw_hldr::after {
        content: '';
        position: absolute;
        width: 70px;
        height: 1px;
        background: var(--clr-accent);
        left: 58px;
        bottom: 23px;
    }

    .refined__slider_section {
        min-height: 100vh;
    }

    .refine_img {
        height: 100vh;
    }

    .slick-disabled {
        opacity: 0.5;
    }


    /* Leasing Slider modal */
    .leasingplan_modal .modal-header {
        border: none;
        z-index: 2;
    }

    .leasingplan_modal .modal-dialog {
        max-width: 1000px;
        margin: auto;
        height: 100vh;
    }

    .leasingplan_modal .btn-close {
        opacity: 1;
    }

    .leasingplan_modal .modal-body {
        padding: 0px 0px 35px 35px;
    }

    .leasingplan_modal .contents h3 {
        font-size: 18px;
        text-transform: uppercase;
        margin-bottom: 5px;
    }

    .leasingplan_modal .contents p {
        color: #525252;
        font-size: 14px;
        line-height: 1.5;
    }

    .leasingplan_modal .contents label {
        font-size: 14px;
        display: block;
        margin-bottom: 3px;
    }

    .leasemdl_input {
        border: 1px solid #979797;
        border-radius: 8px;
        width: 100%;
        height: 40px;
        padding: 15px;
        margin-bottom: 10px;
    }

    .leasingplan_modal form p {
        color: #525252;
        font-size: 14px;
        line-height: 1.5;
    }

    .leasingplan_modal form p a {
        color: #525252;
    }

    .leasingplan_modal .contents {
        padding-right: 50px;
    }

    .leasingplan_modal input[type="submit"] {
        display: block;
        width: 100%;
        background: transparent;
        color: #fff;
        border: none;
        height: 100%;
        padding: 0 25px;
    }

    .leasingplan_modal .modal-content {
        border-radius: 16px;
        overflow: hidden;
        margin-top: 45px;
    }

    .leasingplan_modal .form_btn {
        margin-top: 20px;
        cursor: pointer;
    }

    .leasemdl_input:focus-visible {
        outline: none;
    }

    .leasemdl_input:focus {
        border-color: var(--heading_color);
    }

    .cycle_img {
        height: 100%;
        margin-right: -70px;
    }

    .cycle_img img {
        scale: 1.2;
    }

    .leasingplan_modal .form_btn .black_glbl_btn {
        padding: 0;
    }

    /* Leasing Slider modal */

    .page-template-home-tmpl img {
        display: inline-block;
    }

    /* checkbox cf7 */

    .appnt_checkbox>.wpcf7-form-control-wrap:has(input:checked)~.appnt_box::after {
        opacity: 1;
    }

    .appnt_checkbox>.wpcf7-form-control-wrap:has(input:checked)~.appnt_box {
        background: var(--clr-accent);
    }

    .appnt_checkbox>.wpcf7-form-control-wrap {
        position: absolute;
        inset: 0;
    }

    .appointmnet_form .wpcf7-not-valid-tip {
        font-size: 13px;
        position: absolute;
        left: 0;
        top: 25px;
    }

    .leasingplan_modal .form_btn .black_glbl_btn {
        display: inline-block;
        overflow: hidden;
    }

    .modal_form_btn {
        display: flex;
        justify-content: space-between;
    }

    .page-template-home-tmpl .wpcf7-spinner {
        opacity: 1;
        margin: 0;
        margin-top: 8px;
        position: absolute;
        right: -30px;
        top: 4px;
    }

    .leasingplan_modal .form_btn .next_step_btn,
    .leasingplan_modal .form_btn .prev_step_btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .lease_step {
        height: 320px;
        overflow-y: auto;
        overflow-x: hidden;
        overscroll-behavior: contain;
        padding-bottom: 20px;
    }

    .page-template-home-tmpl.modal-open {
        overflow: hidden;
    }

    .page-template-home-tmpl .eco_for img {
        display: block;
    }

    .leasingplan_modal .wpcf7-radio {
        margin-bottom: 5px;
        display: block;
    }

    .leasingplan_modal .wpcf7 input[type="file"] {
        margin-bottom: 8px;
    }

    /* checkbox cf7 */
    .page-template-home-tmpl section.footer__menu-sticky {
        position: fixed;
    }

    .page-template-home-tmpl .wpcf7 form .wpcf7-response-output {
        margin: 10px 5px 5px;
        font-size: 13px;
    }

    .page-template-home-tmpl .wpcf7-not-valid-tip {
        font-size: 13px;
    }

    .page-template-home-tmpl .wpcf7 form.invalid .wpcf7-response-output {
        border-color: var(--clr-accent);
    }

    /* lease css End */
    /* lease Header Start */


.lease_header {
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 99;
    padding: 15px 0;
	transition: var(--transition);
}

.lease_hdr_wrpr {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lease_hdr_logo {
    max-width: 66px;
}

.leasingplan_modal .modal-title {
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-family: var(--ff-menu);
}

.sticky_hdr .lease_header {
    background: var(--clr-black);
}
.footer_btm_text p a{
    color: var(--clr-white);
}


/* lease Header End */


/* 404 page Start */
.page_404 {
    padding: 40px 0;
    background: #fff;
    font-family: var(--ff-menu);
	/* margin-top: 80px; */
}

.error404 .lease_header{
	background: var(--clr-black);
}


.page_404 img {
    width: 100%;
}

.four_zero_four_bg {
    background-image: url(https://cdn.dribbble.com/users/285475/screenshots/2083086/dribbble_1.gif);
    height: 400px;
    background-position: center;
}

.four_zero_four_bg h1 {
    font-size: 80px;
}

.four_zero_four_bg h3 {
    font-size: 80px;
}

.link_404 {
    color: #fff !important;
    padding: 10px 20px;
    background-color: var(--clr-accent);
    margin: 20px 0;
    display: inline-block;
}

.contant_box_404 {
    margin-top: -50px;
}

.container {
    max-width: 1600px;
    padding: 0 30px;
}


/* 404 page End */

/* 14-11-2025 */

.white_glbl_btn{
  border-color: transparent;
}

/* 14-11-2025 */

