:root {
    --primary-clr: #ae8b37;
    --secondary-clr: #ae8b37;
    --accent-clr: #af7c04;
    --body-clr: #000F08;
    --body-lt: #EBEBEB;
    --body-lt-2: #F0EFF4;
    --font-light: #f1f9ec;
    --font-dark: #1A181B;
    --shadow: 0 0.5rem 0.5rem rgba(0,0,0,0.65);
    --radius: 1rem;
    --small-raius: 0.5rem;
    --border: 0.1rem solid rgba(255, 255, 255, 0.3);
    --border-red: 0.1rem solid #fec722;
    --border-white: 0.1rem solid #f1f9ec;
    --border-dark: 0.1rem solid #1d1c1a; 
    --bg-light-tp: rgba(255, 255, 255, 0.1);
    --bg-dark-tp: rgba(0,0,0,0.1);
    --bg-darker-tp: rgba(0, 0, 0, 0.5);
    --dt-primary: #a5f9c5;
    --dt-secondary: #fb4a4f;
    --reflect: below 0.25rem linear-gradient(transparent, transparent, transparent, #000);
    --reflect2: below 0.25rem linear-gradient(transparent, transparent, transparent, #0005);
    --reflect3: below 0rem linear-gradient(transparent, transparent, transparent, #000);
    --reflect4: below 0rem linear-gradient(transparent, transparent, transparent, #0005);
}

@font-face {
    font-family: Headers;
    src: url(/static/Motors/fonts/headers.otf);
}

@font-face {
    font-family: General;
    src: url(/static/Motors/fonts/gen.ttf);
}

@font-face {
    font-family: DevTom;
    src: url(/static/Motors/fonts/DT.otf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: General;
    font-size: 10px;
    color: var(--font-light);
    letter-spacing: 1.2px;
}

body {
    position: relative;
    width: 100%;
    background: var(--body-lt);
    overflow-x: hidden;
    overflow-y: hidden;
}

::-webkit-scrollbar {
    width: 1rem;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(transparent, var(--primary-clr), var(--accent-clr));
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(transparent, var(--secondary-clr));
}

.body-container {
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
small {
    pointer-events: none;
    user-select: none;
    font-weight: 300;
}

a {
    text-decoration: none;
    user-select: none;
}

img,
button {
    user-select: none;
}

ul {
    list-style: none;
}

/* loader */
#circle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--body-lt);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: 1.5s;
    z-index: 20000;
}

.load-txt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: Headers;
    color: var(--font-dark);
    font-size: 4rem;
    letter-spacing: 0.2rem;
    text-align: center;
    line-height: 4rem;
    pointer-events: none;
    user-select: none;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 20rem;
}

.load-cnt {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 20rem;
    -webkit-box-reflect: var(--reflect2);
}

.load-cnt .loader {
    position: absolute;
    width: 20rem;
    height: 20rem;
    border-radius: 50%;
    animation: loading 2s linear infinite;
}

.load-cnt .loader:nth-child(2),
.load-cnt .loader:nth-child(4) {
    animation-delay: -1s;
}

@keyframes loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.load-cnt .loader:nth-child(1)::before,
.load-cnt .loader:nth-child(2)::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to top, 
        transparent, var(--primary-clr));
    opacity: 0.5;
    background-size: 10rem 18rem;
    background-repeat: no-repeat;
    border-top-left-radius: 10rem;
    border-bottom-left-radius: 10rem;
}

.load-cnt .loader i {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1rem;
    height: 1rem;
    background: var(--primary-clr);
    border-radius: 50%;
    z-index: 100;
    box-shadow: 0 0 1rem var(--primary-clr),
        0 0 2rem var(--primary-clr),
        0 0 3rem var(--primary-clr),
        0 0 4rem var(--primary-clr),
        0 0 5rem var(--primary-clr),
        0 0 6rem var(--primary-clr),
        0 0 7rem var(--primary-clr),
        0 0 8rem var(--primary-clr),
        0 0 9rem var(--primary-clr),
        0 0 10rem var(--primary-clr);
}

.load-cnt .loader span {
    position: absolute;
    inset: 1rem;
    background: var(--body-lt);
    border-radius: 50%;
    z-index: 1;
}

/* navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 6rem;
    background: rgba(0,0,0,0.75);
    border-bottom: 0.1rem solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(0.5rem);
    z-index: 10000;
}

.header-cont {
    position: relative;
    max-width: 140rem;
    height: 100%;
    padding: 1rem 2rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: Headers;
    font-size: 4rem;
    color: var(--font-light);
    letter-spacing: 0.2rem;
    transition: 0.3s ease-in-out;
    display: flex; 
    justify-content: center;
    align-items: center;
}

.logo img {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
}

.logo span {
    color: var(--primary-clr);
    transition: 0.3s ease-in-out;
}

.logo:hover {
    transform: scale(0.95);
    color: var(--primary-clr);
}

.logo:hover span {
    color: var(--font-light);
}

.head-group {
    display: flex;
    align-items: center;
}

.navigation {
    position: relative;
    display: flex;
    gap: 3rem;
}

.navigation li a {
    position: relative;
    color: var(--font-light);
    font-size: 3rem;
    letter-spacing: 0.2rem;
    font-weight: 300;
    opacity: 0.6;
    transition: 0.3s ease-in-out;
}

.navigation li a:hover {
    opacity: 1;
}

.navigation li a::before {
    position: absolute;
    content: "";
    bottom: -0.1rem;
    width: 100%;
    height: 0.2rem;
    border-radius: var(--radius);
    background: var(--primary-clr);
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
    transform-origin: right;
}

.navigation li a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.search {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    letter-spacing: 0.1rem;
    z-index: 100;
    cursor: pointer;
    color: var(--font-light);
}

.searchBx {
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    /* padding: 0 3rem; */
    background: var(--bg-dark-tp);
    backdrop-filter: blur(0.75rem);
    transition: 0.3s ease-in-out;
}

.searchBx::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0rem;
    background: var(--primary-clr);
    transition: 0.3s ease-in-out;
}

.searchBx.active {
    right: 0;
}

.searchBx.active::before {
    height: 100%;
    opacity: 0.3;
    transition-delay: 0.6s;
}

.searchBx input {
    position: relative;
    width: 100%;
    border: none;
    outline: none;
    height: 6rem;
    background: var(--bg-darker-tp);
    /* border-bottom: 0.1rem solid var(--primary-clr); */
    color: var(--font-light);
    font-size: 1.6rem;
    letter-spacing: 0.1rem;
    padding: 0 3rem;
}

.searchBx input::placeholder {
    color: var(--font-light);
    font-size: 1.6rem;
    letter-spacing: 0.1rem;
}

.bi-search {
    position: relative;
    left: 2rem;
    scale: 1;
    transition: 0.3s ease-in-out;
}

.bi-search.active {
    left: 0;
    opacity: 0;
    visibility: hidden;
    scale: 0;
}

.bi-x-lg {
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
    scale: 0;
}

.bi-x-lg.active {
    opacity: 1;
    visibility: visible;
    transition: 0.3s ease-in-out;
    scale: 1;
}

.ham {
    position: relative;
    width: 4rem;
    height: 4rem;
    background: var(--bg-light-tp);
    backdrop-filter: blur(0.5rem);
    border-radius: 0.5rem;
    border: var(--border);
    cursor: pointer;
    display: none;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: 0.3s ease-in-out;
}

.ham.active {
    border: var(--border-red);
}

.ham::before {
    position: absolute;
    content: "";
    width: 2.5rem;
    height: 0.2rem;
    background: var(--font-light);
    transform: translateY(-1rem);
    box-shadow: 0 1rem 0 var(--font-light);
    transition: 0.3s ease-in-out;
}

.ham.active::before {
    transform: translateY(0rem) rotate(45deg);
    box-shadow: 0 0 0 var(--font-light);
    background: var(--primary-clr);
}

.ham::after {
    position: absolute;
    content: "";
    width: 2.5rem;
    height: 0.2rem;
    background: var(--font-light);
    transform: translateY(1rem);
    transition: 0.3s ease-in-out;
}

.ham.active::after {
    transform: translateY(0rem) rotate(-45deg);
    background: var(--primary-clr);
}

/* Pagination */
.pagination,
.pagination-ul {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination-ul {
    gap: 1rem;
    border: 0.1rem solid var(--font-dark);
    width: fit-content;
    padding: 1rem;
    background: var(--font-dark);
    border-radius: var(--small-raius);
}

.page-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-link {
    position: relative;
    font-size: 1.9rem;
    letter-spacing: 0.1rem;
    color: var(--font-light);
    font-weight: 600;
    opacity: 0.7;
    transition: 0.3s ease-in-out;
}

.page-item.paged .page-link {
    opacity: 1;
    font-size: 2.6rem;
}

.page-link:hover {
    opacity: 1;
}

/* scroll-to-top */
#progress {
    position: fixed;
    background: var(--accent-clr);
    bottom: 2rem;
    right: 1.8rem;
    height: 3rem;
    width: 3rem;
    display: flex;
    display: none;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 0.5rem 0rem var(--primary-clr);
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
}

#progress-value {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 2.5rem;
    width: 2.5rem;
    background: var(--body-clr);
    border-radius: 50%;
}

#progress-value svg {
    width: 1.8rem;
    height: 1.8rem;
    fill: var(--primary-clr);
}

/* footer */
 footer {
    position: relative;
    width: 100%;
    height: auto;
    padding: 5rem;
    background: #191919;
    border-top: var(--border);
  }

  .footer-container {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    grid-gap: 3rem;
  }

  .foot-cnt {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .foot-socials {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, 5rem);
  }

  .foot-socials li a {
    display: inline-block;
    width: 3.6rem;
    height: 3.6rem;
    background: var(--light-glass-clr);
    border: var(--border);
    border-radius: var(--small-radius);
    box-shadow: var(--small-shadow);
    -webkit-box-reflect: var(--reflect);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease-in-out;
  }

  .foot-socials li a i {
    color: var(--font-light);
    font-size: 2rem;
    transition: 0.3s ease-in-out;
  }

  .foot-socials li a:hover {
    background: var(--primary-clr);
  }

  .foot-support,
  .foot-quick,
  .foot-contact {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .foot-support li a,
  .foot-quick li a {
    color: var(--font-light);
    font-size: 1.9rem;
    letter-spacing: 0.1rem;
    opacity:0.6;
    transition: 0.3s ease-in-out;
  }

  .foot-support li a:hover,
  .foot-quick li a:hover {
    opacity: 1;
  }

  .foot-contact li {
    position: relative;
    width: 100%;
    display: flex;
    gap: 1.25rem;
    transition:0.3s ease-in-out;
  }

  .foot-contact li span {
    width: 2rem;
    height: 2rem;
    background: var(--light-glass-clr);
    border-radius: var(--small-radius);
    border: var(--border);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .foot-contact li span i {
    font-size: 1.5rem;
    color: var(--primary-clr);
    transition: 0.3s ease-in-out;
  }

  .foot-contact li a {
    font-size: 1.9rem;
    letter-spacing: 0.1rem;
    color: var(--font-light);
    cursor: pointer;
    transition: 0.3s ease-in-out;
  }

  .foot-contact li:hover span i {
    color: var(--font-light);
  }

  .foot-contact li:hover  a {
    color: var(--primary-clr);
  }

  .copyright {
    position: relative;
    width: 100%;
    padding: 2rem 5rem;
    background: #0d0d0d;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .copy-p {
    font-size: 1.4rem;
    letter-spacing: 0.1rem;
    text-align: center;
    line-height: 2.5rem;
  }

  .copy-p a {
    pointer-events: auto;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    font-family: Devtom;
    font-size: 1.2rem;
    color: var(--dt-primary);
  }

  .copy-p a span {
    color: var(--dt-secondary);
    transition: 0.3s ease-in-out;
  }

  .copy-p a:hover {
    color: var(--dt-secondary);
  }

  .copy-p a:hover span {
    color: var(--dt-primary);
  }

.gen-head {
    position: relative;
    font-family: Headers;
    font-size: 2.5rem;
    color: var(--font-light);
    text-align: left;
    width: fit-content;
}

.gen-head-two {
    position: relative;
    font-family: Headers;
    font-size: 4.25rem;
    color: var(--font-light);
    width: fit-content;
}

.gen-head-two.home,
.gen-head-two.searching {
    color: var(--font-dark);
}

.gen-head-two.contact {
    margin-bottom: 2rem;
    text-align: center;
     width: fit-content;
}

.gen-head-three {
    position: relative;
    font-family: Headers;
    font-size: 6.25rem;
    color: var(--font-light);
    padding: 3rem;
    background: var(--bg-darker-tp);
    backdrop-filter: blur(0.1rem);
    border: var(--border);
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    box-shadow: var(--shadow);
    text-align: center;
}

.gen-head span,
.gen-head-two span,
.gen-head-three span {
    color: var(--primary-clr);
}

.gen-head::before ,
.gen-head-two::before,
.gen-head-three::before {
    position: absolute;
    content: "";
    bottom: -0.25rem;
    left: 0;
    width: 100%;
    height: 0.1rem;
    border-radius: var(--radius);
    background: linear-gradient(45deg, var(--primary-clr), var(--font-light));
}

.gen-head-two::before,
.gen-head-three::before {
    height: 0.3rem;
}

.gen-p,
.gen-p-p {
    text-align: center;
    font-size: 1.9rem;
    line-height: 3rem;
    letter-spacing: 0.1rem;
}

.gen-p {
    text-align: left;
    font-size: 1.6rem;
}

.gen-p-p {
    font-size: 1.7rem;
}

/* home page */
.top-sec {
    position: relative;
    margin-top: 6rem;
    width: 100%;
    height: calc(100vh - 6rem);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 10rem 20rem;
}

.top-sec.counter {
    padding: 4rem;
    background: url("/static/Motors/images/counter/counter.jpg");
    background-position: center;
    background-size: cover;
}

.count-div {
    width: 50%;
    height: auto;
    padding: 4rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 3rem;
    background: var(--bg-dark-tp);
    backdrop-filter: blur(0.5rem);
    border: var(--border);
    border-radius: var(--small-raius);
    box-shadow: var(--shadow);
}

.counter-div {
    width: 17.5rem;
    height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow);
    backdrop-filter: blur(0.5rem);
    border-right: var(--border);
}

.err-sec {
    position: relative;
    margin-top: 6rem;
    width: 100%;
    height: calc(100vh - 6rem);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: url("/static/Motors/images/error/error2.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.gen-p-p-p {
    font-size: 1.9rem;
    line-height: 3rem;
    letter-spacing: 0.1rem;
}

.gen-p-p-p.home {
    color: var(--font-dark);
}

.gen-btn span::before {
    position: absolute;
    content: "";
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: var(--bg-light-tp);
    transform: skew(25deg);
    border-radius: var(--small-raius);
}

.top-sec.home {
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background: linear-gradient(45deg, var(--body-lt), 
        var(--body-lt), var(--primary-clr), var(--body-lt),
        var(--body-lt));
}

.home-cnt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65%;
    background: var(--bg-darker-tp);
    backdrop-filter: blur(0.1rem);
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    justify-content: cnter;
    flex-direction: column;
    gap: 2rem;
    border-radius: var(--radius);
    border: var(--border);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.8s ease-in-out;
    z-index: 10;
}

.home-cnt.songa {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.home-cnt h1 {
    margin-bottom: 4rem;
}

.home-cnt p {
    margin-bottom: 2rem;
}

.top-sec img {
    z-index: 000;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-nav {
    z-index: 800;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.slider-btn {
    width: 2rem;
    height: 2rem;
    background: var(--font-light);
    cursor: pointer;
    box-shadow: var(--shadow);
    border-radius: 50%;
    transition: 0.3s ease-in-out;
}

.slider-btn:hover {
    transform: scale(1.2);
}

.slider-btn.songa {
    background: var(--primary-clr);
}

.top-sec-img {
    position: absolute;
    width: 100%;
    clip-path: circle(0% at 0 50%);
}

.top-sec-img.songa {
    clip-path: circle(150% at 0 50%);
    transition: 1s ease-in-out;
    transition-property: clip-path;
}

/* about page */
.header-sec {
    position: relative;
    margin-top: 10rem;
    margin-bottom: 4rem;
    width: 100%;
    height: 40rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.header-cnt {
    position: relative;
    width: 90%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 1rem;
    padding: 0 2rem;
    box-shadow: var(--shadow);
}

.header-cnt img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    object-fit: cover;
}

.re-use {
    margin: 4rem 0;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.re-use-cnt {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 95%;
    height: auto;
}

.re-use-lft {
    width: 45%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-left: 2rem;
    flex-direction: column;
    gap: 2rem;
}

.re-use-lft::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0.5rem;
    border-radius: 1rem;
    background: linear-gradient(45deg, 
                var(--primary-clr), var(--secondary-clr), transparent);
}

.re-use-lft.no-border {
    padding: 0;
}

.re-use-lft.no-border::before {
    display: none;
}

.re-use-rt,
.queries {
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 2rem;
    flex-direction: column;
    gap: 2rem;
}

.re-use-rt.reuse-imgbx {
    position: relative;
    height: 40rem;
    overflow: hidden;
    border-radius: var(--small-raius);
    box-shadow: var(--shadow);
}

.queries {
    gap: 1rem;
    width: 100%;
    padding-left: 0rem;
}

.foot-count {
    width: 100%;
    padding: 2rem;
    background: var(--font-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    border-top: var(--border-red);
}

.foot-count span {
    font-size: 2rem;
    color: var(--font-light);
    letter-spacing: 0.1rem;
}

.clock-rt {
    width: 45%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-right: 2rem;
}

.clock-rt::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0.5rem;
    border-radius: 1rem;
    background: linear-gradient(45deg, 
                var(--primary-clr), var(--secondary-clr), transparent);
}

.import-img {
    position: relative;
    width: 35rem;
    height: 35rem;
    background: var(--bg-dark-tp);
    border: var(--border);
    border-radius: 1rem;
    backdrop-filter: blur(1rem);
    box-shadow: var(--shadow);
}

.import-img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    height: 95%;
    border-radius: 1rem;
    box-shadow: var(--shadow);
}

.values {
    width: 100%;
    padding-bottom: 1rem;
    border-bottom: 0.1rem solid var(--primary-clr);
    cursor: pointer;
    margin-bottom: 2rem;
}

.question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.question h3,
.processes h3 {
    font-size: 2.2rem;
    letter-spacing: 0.1rem;
    color: var(--font-dark);
    transition: all 0.5s ease-in;
}

.processes {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
    border-radius: var(--small-raius);
    border-bottom: var(--border-red);
    transition: 0.3s ease-in-out;
}

.processes:hover {
    background: var(--bg-dark-tp);
}

.processes h3 {
    font-weight: 600;
}

.values.open .question h3,
.processes:hover h3 {
    color: var(--primary-clr);
    font-weight: 600;
}

.question i {
    font-size: 2rem;
    color: var(--primary-clr);
    transition: all 0.5s ease-in;
}

.values.open .question i {
    transform: rotate(180deg);
}

.answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 1.5s ease;
}

.values.open .answer {
    max-height: 80rem;
    animation: textfade 1s ease-in-out;
}

.answer p {
    color: var(--font-dark);
    font-size: 1.7rem;
    padding-top: 1rem;
    line-height: 2.5rem;
    letter-spacing: 0.1rem;
}

@keyframes textfade {
    from {
        opacity: 0;
        transform: translateY(-1rem);
    }
    to {
        opacity: 1;
        transform: translateY(0rem);
    }
}

.re-use.pale-chini {
    margin-top: 4rem;
    margin-bottom: 10rem;
}

.clock-left {
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap:  2rem;
}

.digital-clock {
    position: relative;
    width: 30rem;
    padding: 2rem 4.5rem;
    background: var(--font-dark);
    border: var(--border);
    box-shadow: 0 0.5rem 2.5rem rgba(0,0,0,0.65);
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    user-select: none;
}

.digital-clock::before {
    position: absolute;
    content: "";
    background: linear-gradient(45deg, 
                var(--primary-clr), var(--accent-clr), var(--font-light));
    background-size: 200% 200%;
    top: -0.5rem;
    left: -0.5rem;
    bottom: -0.5rem;
    right: -0.5rem;
    z-index: -1;
    filter: blur(1rem);
    animation: glowing 5s ease infinite;
}

@keyframes glowing {
    0% {
        background-position: 0 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0 50%;
    }
}

.time {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hours,
.dots,
.minutes {
    font-family: Headers;
    color: var(--font-light);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 0.5rem;
    line-height: 8rem;
    letter-spacing: 0.4rem;
}

.hours,
.minutes {
    font-size: 6rem;
    width: 8rem;
}

.dots {
    font-size: 5rem;
    opacity: 0.7;
}

.hours {
    background: -webkit-linear-gradient(90deg, 
        var(--primary-clr), var(--font-light));
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.minutes {
    background: -webkit-linear-gradient(90deg, 
        var(--font-light), var(--accent-clr));
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.right-side {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-left: 1rem;
}

.period,
.seconds {
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    font-weight: 600;
}

.period {
    transform: translateY(-2rem);
    background: -webkit-linear-gradient(90deg, 
        var(--primary-clr), var(--secondary-clr));
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.seconds {
    transform: translateY(1.6rem);
    background: -webkit-linear-gradient(90deg, 
        var(--accent-clr), var(--secondary-clr));
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.calendar {
    display: flex;
    justify-content: center;
    align-items: center;
    background: -webkit-linear-gradient(90deg, 
        var(--accent-clr), var(--primary-clr));
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.month,
.day,
.day-num,
.year {
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.2rem;
}

.day,
.day-num,
.year {
    margin-left: 1rem;
}

.dots-menu {
    position: absolute;
    top: 0;
    right: 0;
    margin: 1rem;
    font-size: 1.6rem;
    cursor: pointer;
}

.dot-menu {
    z-index: 1000;
    position: absolute;
    top: 0.7rem;
    right: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 2.5rem rgba(0,0,0,0.65);
    background: var(--bg-light-tp);
    border: var(--border);
    backdrop-filter: blur(0.5rem);
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease-in-out;
}

.dot-menu.switch {
    visibility: visible;
    opacity: 1;
}

.menu-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.clock-format-txt {
    font-size: 1.4rem;
    letter-spacing: 0.2rem;
    margin-right: 2rem;
}

.switch-btn {
    width: 3.5rem;
    height: 1.5rem;
    background: var(--font-dark);
    border-radius: 7.5rem;
    box-shadow: inset 0.2rem 0.2rem 0.4rem rgba(255, 255, 255, 0.1),
                inset -0.2rem -0.2rem 0.4rem rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.switch-btn::before {
    position: absolute;
    content: "";
    width: 1.4rem;
    height: 1.4rem;
    background: var(--primary-clr);
    border-radius: 50%;
    box-shadow: 0 0.5rem 2.5rem var(--primary-clr);
    transform: translateX(-1rem);
    transition: all 0.3s ease-in-out;
}

.switch-btn.switch::before {
    background: var(--dt-primary);
    box-shadow: 0 0.5rem 2.5rem var(--dt-primary);
    transform: translateX(1rem);
}

/* contact page */
  .contact-sec {
    position: relative;
    margin-top: 6rem;
    width: 100%;
    min-height: calc(100vh - 6rem);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 4rem 0;
    background-image: url("/static/Motors/images/contact/contact.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }

  .contact-cnt {
    position: relative;
    width: 70%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 4rem;
    margin-top: 4rem;
    background: var(--bg-darker-tp);
    padding: 1rem;
    backdrop-filter: blur(0.75rem);
    border: 0.1rem solid var(--bg-light-tp);
    border-radius: var(--small-raius);
    overflow: hidden;
  }

  .contactForm {
    position: relative;
    width: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 4rem 2rem;
    background: var(--darker-glass-clr);
    border: 0.1rem solid var(--primary-clr);
    box-shadow: var(--small-shadow);
    border-radius: var(--small-radius);
    backdrop-filter: blur(0.5rem);
  }

  .contactForm.job-form {
    width: 100%;
  }

  .main-contact-form {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }

  .rw-100 {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
  }

  .fichwa {
    display: none;
  }

  .inputBx {
    width: 100%;
  }

  .inputBx.rw-50 {
    position: relative;
    width: 50%;
  }

  .inputBx input,
  .inputBx textarea,
  .inputBx select {
    position: relative;
    width: 100%;
    padding: 0.5rem 0;
    margin: 1rem 0;
    font-family: General;
    background: transparent;
    border: none;
    outline: none;
    resize: none;
    border-bottom: 0.1rem solid var(--primary-clr);
    color: var(--font-light);
    font-size: 1.6rem;
    letter-spacing: 0.1rem;
    transition: 0.3s ease-in-out;
  }

  .form-help-text {
    position: relative;
    font-size: 1.4rem;
    color: var(--font-light);
    font-weight: 600;
    opacity: 0.7;
    user-select: none;
    pointer-events: none;
    width: 100%;
    margin-bottom: 1rem;
  }

  .field-error {
    position: relative;
    font-size: 1.4rem;
    color: #fd4141;
    font-weight: 600;
    user-select: none;
    pointer-events: none;
  }

  .inputBx textarea {
    height: 15rem;
  }
  .inputBx .captcha-question,
  .inputBx .all-the-way-up {
    position: absolute;
    top: -2.4rem;
    left: 0;
    color: var(--primary-clr);
    font-size: 1.4rem;
    opacity: 1;
  }

  .inputBx span {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    user-select: none;
    padding: 0.5rem 0;
    margin: 1rem 0;
    font-size: 1.9rem;
    opacity: 0.6;
    font-weight: 600;
    transition: 0.3s ease-in-out;
  }

  .inputBx input:focus ~ span,
  .inputBx textarea:focus ~ span,
  .inputBx input:valid ~ span,
  .inputBx textarea:valid ~ span  {
    color: var(--primary-clr);
    font-size: 1.6rem;
    opacity: 1;
    transform: translateY(-2.4rem);
  }

  .inputBx input:focus ~ .all-the-way-up ,
  .inputBx textarea:focus ~ .all-the-way-up ,
  .inputBx input:valid ~ .all-the-way-up ,
  .inputBx textarea:valid ~ .all-the-way-up {
    transform: none;
  }

  .inputBx span a {
    opacity: 0.7;
    font-weight: 600;
    color: var(--font-light);
    cursor: pointer;
    pointer-events: auto;
  }

.submitted-cnt {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 2rem;
}

.submit-p {
    position: relative;
    font-size: 1.9rem;
}

.sent-cnt {
  position: relative;
  width: 15rem;
  height: 15rem;
  border: var(--border);
  box-shadow: var(--small-shadow);
  border-radius: var(--small-radius);
}

.sent-cnt img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  height: 95%;
  object-fit: cover;
  border-radius: var(--small-radius);
}

/* error page */
.err-cnt {
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 4rem;
    padding: 2rem;
    background: var(--bg-darker-tp);
    border: var(--border);
    border-radius: 1rem;
    box-shadow: var(--shadow);
}

.err-cnt h3 {
    font-size: 3rem;
    letter-spacing: 0.1rem;
}

.err-img {
    width: 30rem;
    height: 30rem;
    position: relative;
    background: var(--bg-light-tp);
    box-shadow: var(--shadow);
    border: var(--border);
    border-radius: 1rem;
}

.err-img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    height: 95%;
    border-radius: 1rem;
    box-shadow: var(--shadow);
}

/* the cars page */
.cars-sec {
    width: 100%;
    min-height: calc(100vh - 6rem);
    margin-top: 6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: url("/static/Motors/images/home/cars.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.cars-cnt {
    width: 95%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 4rem 0;
}

.cars-ul {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.cars-ul li {
    position: relative;
    width: 15rem;
    height: 15rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cars-ul li > a {
    position: relative; 
    width: 100%;
    height: 100%;
    background: var(--bg-light-tp);
    border: var(--border);
    border-radius: 1rem;
    backdrop-filter: blur(0.75rem);
    transition: 0.3s ease-in-out;
}

.cars-ul li > a:hover {
    transform: scale(0.95);
    border: var(--border-red);
}

.cars-ul li > a > img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    height: 95%;
    object-fit: cover;
}

/* category page */
.cat-sec {
    margin-top: 6rem;
    height: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.cat-sec.homepage {
    margin: 4rem 0;
}

.cat-sec.middlepage {
    margin-top: 0;
    margin-bottom: 4rem;
    padding: 1rem;
    background: var(--body-lt-2);
}

.cat-sec.bottompage {
    margin-top: 0;
    margin-bottom: 4rem;
}

.cat-sec.middlepage-two {
    margin-top: 0;
    margin-bottom: 4rem;
    padding: 1rem;
    background: url("/static/Motors/images/home/gold.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.cat-sec.searching {
    padding: 4rem 0;
    width:95%;
    min-height: calc(100vh - 6rem);
    height: auto;
    justify-content: flex-start;
}

.cat-cnt {
    margin: 4rem 0;
    width: 95%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cat-card {
    position: relative;
    width: calc(33% - 1rem);
    height: 41rem;
}

.inner-cat-card {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    background: var(--bg-light-tp);
    box-shadow: var(--shadow);
    border-radius: var(--small-raius);
}

.cat-imgbx,
.cat-card-cnt {
    position: relative;
    width: 100%;
    height: 50%;
}

.cat-imgbx.sold-car {
    height: 70%;
}

.cat-card-cnt.inner-sold-car {
    height: 30%;
    background: var(--bg-darker-tp);
}

.gen-car-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-card-cnt {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.card-title {
    position: relative;
    font-size: 2.25rem;
    color: var(--font-dark);
    width: fit-content;
    font-weight: 600;
}

.card-title.sold-car-title {
    color: var(--font-light)
}

.card-title.sold-car-title::before {
    display: none;
}

.card-title::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: -0.5rem;
    width: 50%;
    height: 0.15rem;
    background: var(--primary-clr);
}

.inner-cat-card-cnt {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
    margin-top: 1rem;
}

.cat-car-ul {
    display: flex;
    width: 50%;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
}

.cat-car-ul.sold-car-ul {
    width: 100%;
}

.cat-car-ul li {
    position: relative;
    width: 100%;
    display: flex;
    gap: 0.5rem;
    color: var(--font-dark);
    font-size: 1.6rem;
}

.cat-car-ul:last-child li {
    justify-content: flex-end;
}

.cat-car-ul.sold-car-ul li {
    color: var(--primary-clr);
}

.cat-car-ul.sold-car-ul:last-child li {
    width: 100%;
    justify-content: flex-start;
}

.cat-card-price {
    position: relative;
    margin-top: 1rem;
    padding: 1rem;
    width: 100%;
    background: var(--font-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.8rem;
    color: var(--font-light);
    font-weight: 600;
}

.sold-car-cnt {
    position: relative;
    width: calc(25% - 1rem);
    height: 25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
    background: var(--font-dark);
    box-shadow: var(--shadow);
    border-radius: var(--small-raius);
}

.general-btn {
    position: relative;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    background: var(--font-dark);
    color: var(--font-light);
    font-size: 2rem;
    border-radius: var(--small-raius);
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.general-btn.home-btn {
    width: 15rem;
    background: var(--primary-clr);
    color: var(--font-light);
    transition: 0.3s ease-in-out;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.2rem;
    border: 0.1rem solid var(--primary-clr);
}

.general-btn.home-btn:hover {
    background: var(--font-dark);
    color: var(--font-light);
    border: 0.1rem solid var(--primary-clr);
}

.general-btn:hover {
    background: var(--primary-clr);
    box-shadow: none;
}


/* car page */
.prod-sec {
    margin-top: 10rem;
    margin-bottom: 4rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    gap: 4rem;
}

.pros-cnt {
    width: 95%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 4rem;
}

.prod-card {
    position: relative;
    width: 55%;
    height: 60rem;
    display: flex;
    flex-direction: column;
    gap: 5%; 
    overflow: hidden;
}


.product-cnt {
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 2rem;
}

.price-txt {
    font-size: 2rem;
    color: var(--font-light);
    letter-spacing: 0.2rem;
    font-weight: 600;
    background: var(--font-dark);
    width: fit content;
    padding: 1rem;
}

.prod-head {
    position: relative;
    font-size: 3rem;
    color: var(--font-dark);
    letter-spacing: 0.2rem;
    font-weight: 600;
    width: fit-content;
    margin-bottom: 1rem;
}

.prod-head::before {
    position: absolute;
    content: "";
    bottom: 0.1rem;
    left: 0;
    width: 38%;
    height: 0.3rem;
    border-radius: 1rem;
    background: var(--primary-clr);
}

.prod-detail ul {
    display: flex;
    gap: 2rem;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.prod-detail ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: var(--font-dark);
    letter-spacing: 0.2rem;
    font-weight: 600;
    user-select: none;
    pointer-events: none;
}

.prod-detail ul li span {
    color: var(--font-dark);
}

.prod-detail ul li i {
    color: var(--primary-clr);
    margin-right: 0.5rem;
}

.purchase-info {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
}

.purchase-info a {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: var(--font-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-box-reflect: var(--reflect);
    transition: 0.3s ease-in-out;
}

.purchase-info a i {
    font-size: 2rem;
    color: var(--font-light);
    transition: 0.3s ease-in-out;
}

.purchase-info a:hover {
    background: var(--primary-clr);
    transform: scale(0.95);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 0.1rem; 
    background-color: #e0e0e0; 
    border: 0.1rem solid #c0c0c0; 
    border-radius: var(--small-raius);
    width: 100%;
    max-width: 600px;
    margin-top: 2rem;
    overflow: hidden; 
}

.specs-cell {
    background-color: white;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 10rem;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    user-select: none;
}

.specs-cell:hover {
    background-color: #f5f5f5;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 120, 212, 0.15);
    z-index: 2;
}

.specs-cell:focus-within {
    outline: 2px solid var(--primary-clr);
    outline-offset: -2px;
}

.specs-cell i {
    font-size: 28px;
    color: var(--primary-clr);
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.specs-cell:hover i {
    transform: scale(1.1);
}

.spec-label {
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-bottom: 6px;
    font-weight: 600;
}

/* Value styling */
.spec-value {
    font-size: 18px;
    color: var(--font-dark);
    font-weight: 600;
    line-height: 1.3;
}

/* Car Models */
.cat-models-cnt {
    margin: 4rem 0;
    width: 95%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0; 
    border: 1px solid #ddd; 
}

.cat-item {
    padding: 1rem;
    min-height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid #ddd;
    margin: -1px 0 0 -1px; 
    background-color: white;
    transition: 0.3s ease-in-out;
}

.cm-head {
    color: var(--font-dark);
    font-size: 2.25rem;
    text-transform: uppercase;
    font-weight: 600;
    width: fit-content;
    letter-spacing: 0.2rem;
}

.cat-item:hover {
    background-color: #f5f5f5;
}

#main-slider {
    position: relative;
    flex: 0 0 80%;
    height: 80%;
    overflow: hidden; 
}

#main-slider .splide__track,
#main-slider .splide__list,
#main-slider .splide__slide {
    height: 100%;
}

#main-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#thumbnail-slider {
    flex: 0 0 15%;
    height: 15%;
}

#thumbnail-slider .splide__track,
#thumbnail-slider .splide__list {
    height: 100%;
}

#thumbnail-slider .splide__list {
    display: flex;
    align-items: center; 
}

#thumbnail-slider .splide__slide {
    height: 100%;
    opacity: 0.5;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

#thumbnail-slider .splide__slide.is-active {
    opacity: 1;
    border: 2px solid #000;
}

#thumbnail-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#thumbnail-slider .splide__slide img {
    object-fit: contain; 
    max-height: 100%;
}

#main-slider .splide__arrow {
    background: var(--font-dark);
    width: 40px;
    height: 40px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

#main-slider .splide__arrow:hover {
    background: var(--primary-clr);
    opacity: 1;
}

#main-slider .splide__arrow svg {
    fill: var(--font-light);
    width: 20px;
    height: 20px;
}

#main-slider .splide__arrow:hover svg {
    fill: var(--font-dark);
}

#main-slider .splide__arrow--prev {
    left: 10px;
}

#main-slider .splide__arrow--next {
    right: 10px;
}

/* FAQs Page */
.faq-cnt-page {
    position: relative;
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 4rem 0;
    padding: 1rem;
    background-color: white;
    box-shadow: var(--shadow);
    border-radius: var(--small-raius);
}

/* responsiveness */
@media(max-width:1250px) {
    .navigation{
        position: absolute;
        opacity: 0;
        visibility: hidden;
        top: 6rem;
        left: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 4rem;
        width: 100%;
        height:calc(100vh - 6rem);
        gap: 4.5rem;
        transition: 0.3s ease-in-out;
        overflow-y: scroll;
        overflow-x: hidden;
    }

    .navigation li a {
        font-size: 4rem;
        letter-spacing: 0.3rem;
        color: var(--font-dark);
        font-weight: 700;
    }

    .header-cont.active .navigation,
    .header-cont.haiya .navigation {
        opacity: 1;
        visibility: visible;
        top: 6rem;
        left: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 4rem;
        width: 100%;
        height:calc(100vh - 6rem);
        background: var(--body-lt-2);
        backdrop-filter: blur(0.25rem);
    }

    .bi-search {
        left: -3rem;
    }

    .ham {
        position: absolute;
        display: flex;
        z-index: 100;
    }
    
    .ham.haiya {
        display: none;
    }

    .ham.active.haiya {
        display: none;
    }
}

@media(max-width: 1150px) {
    
    .home-cnt {
        width: 90%;

    .cat-card {
        width: calc(50% - 1rem);
    }

    .sold-car-cnt {
        width: calc(33% - 1rem);
    }

    .faq-cnt-page {
        width: 80%;
    }
}

@media(max-width:1080px) {
    .top-sec {
        padding: 10rem 0rem;
    }

    .pros-cnt {
        flex-direction: column;
    }

    .product-cnt,
    .prod-card  {
        width: 100%;
    }

    .prod-card {
        height: 60rem;
    }

    .contact-cnt {
        width: 95%;
    }
}

@media (max-width: 991px) {
    footer {
        padding: 5rem 5%;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .copyright {
        padding: 2rem 5%;
    }

    .cat-models-cnt {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width: 900px) {
    .re-use-cnt {
        flex-direction: column;
        gap: 2rem;
    }

    .re-use-cnt.reverse {
        flex-direction: column-reverse;
    }

    .re-use-lft,
    .re-use-rt,
    .clock-rt,
    .clock-left {
        width: 100%;
    }

    .clock-rt {
        padding-right: 0;
        padding-left: 2rem;
    }

    .clock-rt::before {
        left: 0;
    }

    .faq-cnt-page {
        width: 100%;
    }

    .contact-cnt,
    .submitted-cnt {
        align-items: center;
        justify-content: center;
    }

    .submit-p {
        text-align: center;
    }

    .rw-100 {
      flex-direction: column;
    }

    .inputBx.rw-50 {
      width: 100%;
    }
}

@media(max-width:770px) {
    .home-cnt h1 {
        margin-bottom: 2rem;
    }

    .home-cnt {
        width: 95%;
    }

    .logo {
        font-size: 2.5rem;
    }

    .logo img {
        width: 6rem;
        height: 6rem;
    }

    .header-sec {
        height: 30rem;
    }

    .gen-head-three {
        font-size: 4.5rem;
    }

    .contact-sec {   
        background-image: url("/static/Motors/images/contact/contact2.jpg");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
    }

    .err-cnt {
        width: 90%;
    }

    .cars-sec {
        background: url("/static/Motors/images//home//cars2.jpg");
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .top-sec.counter {
        padding: 0rem;
    }

    .count-div {
        width: 90%;
    }
    .cat-card {
        width: 100%;
    }
    
    .sold-car-cnt {
        width: calc(50% - 1rem);
    }
     .footer-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .cat-models-cnt {
        grid-template-columns: repeat(2, 1fr);
    }

    .prod-card {
        height: 50rem;
    }

    #main-slider .splide__arrow {
       display: none;
    }
}

@media(max-width:550px) {

    .img-showcase {
        width: 40rem;
        height: 30rem;
    }

    .img-select {
        width: 100%;
    }

    .img-item {
        position: relative;
        width: 9rem;
        height: 7rem;
    }

    .foot-contact-info {
        align-items: flex-start;
    }

    .sold-car-cnt {
        width: 100%;
    }

    .prod-card {
        height: 40rem;
    }

}

@media(max-width:400px) {
    .img-showcase {
        width: 30rem;
        height: 25rem;
    }

    .img-item {
        position: relative;
        width: 6.5rem;
        height: 5rem;
    }

    .import-img {
        width: 25rem;
        height: 25rem;
    }

    .digital-clock {
        width: 25rem;
    }

    .hours,
    .minutes {
        font-size: 5rem;
    }

    .seconds {
        transform: translateY(0.2rem);
    }

    .period {
        transform: translateY(-1rem);
    }

    .cat-models-cnt {
        grid-template-columns: 1fr;
    }

}

@media(max-width:350px) {

    .foot-icons a {
        width: 3rem;
        height: 3rem;
    }

    .foot-icons a i {
        font-size: 1.5rem;
    }
}