@font-face {
    font-family: "Source Sans 3";
    src: url("fonts/Source_Sans_3/static/SourceSans3-Medium.ttf");
    font-weight: bold;
}

@font-face {
    font-family: "Oswald";
    src: url("fonts/Oswald/static/Oswald-Medium.ttf");
    font-weight: bold;
}

:root {
    /* CSS HEX */
    /* --rich-black: #071e22ff;
    --green-eagle: #1d7874ff;
    --green-eagle: #679289ff;
    --bright-gray: #f5f3f5ff;
    --grey-smoke: #e6e6e6ff; */

    /* --green-eagle: #124458; */
    --green-eagle: #590804;
    /* --green-eagle : #294308; */
    /* --green-eagle: #003342; */
    --rich-black: #01161e;
    --bright-gray: #e7e9ea;
    --davys-grey: #545454;

    --font-size-sm: clamp(0.8rem, 0.17vw + 0.76rem, 0.89rem);
    /* h6 */
    --font-size-base: clamp(1rem, 0.34vw + 0.91rem, 1.19rem);
    /* p */
    --font-size-md: clamp(1.25rem, 0.61vw + 1.1rem, 1.58rem);
    /* h5 */
    --font-size-lg: clamp(1.56rem, 1vw + 1.31rem, 2.11rem);
    /* h4 */
    --font-size-xl: clamp(1.95rem, 1.56vw + 1.56rem, 2.81rem);
    /* h3 */
    --font-size-xxl: clamp(2.44rem, 2.38vw + 1.85rem, 3.75rem);
    /* h2 */
    --font-size-xxxl: clamp(3.05rem, 3.54vw + 2.17rem, 5rem);
    /* h1 */

    /*
    Black Bold Italic Light

    */
    --font-primary: arial;
    --font-secondary: arial;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    font-size: 11px;
}

body {
    background-color: #eeeeee;
    font-family: var(--font-secondary);
    /* overflow-x: hidden; */

    /* font-weight: 900px; */
    /* position:sticky; */
}

.main {
}

h1 {
    font-size: var(--font-size-xxxl);
    font-family: var(--font-primary);
    color: var(--rich-black);
}

h2 {
    font-size: var(--font-size-xxl);
    color: var(--rich-black);
    font-family: var(--font-primary);
}

h3 {
    font-size: var(--font-size-xl);
    color: var(--rich-black);
    font-family: var(--font-primary);
}

h4 {
    font-size: var(--font-size-xl);
    color: var(--rich-black);
    font-family: var(--font-primary);
}

h5 {
    font-size: var(--font-size-lg);
    color: var(--rich-black);
    font-family: var(--font-primary);
}

h6 {
    font-size: var(--font-size-base);
    color: var(--rich-black);
    font-family: var(--font-primary);
    text-transform: uppercase;
}

p,
label,
a {
    font-family: var(--font-secondary);
    font-size: var(--font-size-md);
    /* color: var(--grey-smoke); */
}

/* NavigatonBar */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--bright-gray);

    width: 100%;
    position: absolute;
    z-index: 70;
}

nav .logo {
    font-size: var(--font-size-xl);
    font-family: var(--font-primary);
    color: var(--green-eagle);
    padding: 1rem;
}

nav .logo img {
    height: clamp(50px, 100px, 5vw);
}

nav .logo h3 {
    color: var(--green-eagle);
}

nav a {
    color: var(--green-eagle);
    text-decoration: none;
    font-size: var(--font-size-sm);
}

nav a p {
    font-size: var(--font-size-base);
}

nav .menu {
    display: flex;
    position: relative;
}

nav ul {
    display: flex;
    align-items: center;
    list-style-type: none;
    padding: 2rem;
}

nav ul li {
    padding: 1rem;
}
nav ul li a {
    text-decoration: none;
    color: var(--davys-grey);
    font-weight: 700;
    /* padding: 1rem; */
    font-size: var(--font-size-md);
    transition: 0.4s ease-in-out;
}

nav ul li .active,
nav ul li a:hover {
    color: var(--green-eagle);
    text-decoration: underline;
}

#meni-icon,
#close-icon {
    display: none;
    padding: 2rem;
    justify-content: center;
    align-items: center;
    color: var(--rich-black);
    font-size: var(--font-size-xl);
}

header .hero {
    position: relative;
    overflow: hidden;
    height: 70vh;
    /* transition: background-size 2s ease-in-out; */
}

header .hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /* background-color: var(--davys-grey); */
    background-image: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.092),
            rgba(0, 0, 0, 0.8)
        ),
        url("assets/images/quickvinscheck-bg.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    /* background-attachment: fixed; */
    /* background-size: cover; */
    /* filter: blur(1px); */
    z-index: -1;
}

header .hero .hero-content {
    position: absolute;
    width: 100%;
    box-sizing: border-box;
    /* top: 0; */
    bottom: 100px;
    /* top: -50px; */
    left: 50px;
}

header .hero h2 {
    font-size: var(--font-size-xxxl);
    font-family: var(--font-primary);
    color: var(--grey-smoke);

    /* width: 7; */
    /* text-align: center; */
}

header .hero p {
    font-size: var(--font-size-md);
    font-family: var(--font-secondary);
    color: var(--grey-smoke);
}

.gap {
    padding: 5rem;
}

#vinform {
    display: flex;
    flex-direction: column;
    padding: 2rem 0rem;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(
        120deg,
        var(--green-eagle),
        var(--rich-black)
    );
    color: var(--bright-gray);
}

#vinform h2 {
    color: var(--bright-gray);
}

#vinform p {
    color: #e7e9eab1;
}

#vinform form {
    display: flex;
    flex-direction: column;
    padding: 2rem 0rem;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    min-width: 50%;
}

#vinform form input,
#vinform form button {
    padding: 0.5rem;
    font-size: var(--font-size-md);
    min-width: 100%;
    max-width: 100%;
    /* width: clamp(2vw); */
    border: none;
    outline: none;
    border-radius: 4px;
}

#vinform form input::placeholder {
    color: var(--green-eagle);
    font-weight: 100;
}

#vinform form button {
    background-color: var(--green-eagle);
    color: var(--bright-gray);
    /* border-radius: 8px; */
    border: none;
    font-weight: 700;
    padding: 1rem;
    box-shadow: 1px 1px 5px 1px var(--rich-black);
    transition: all 0.3s;
}

#vinform form button:hover {
    background-color: var(--rich-black);
    box-shadow: 1px 1px 5px 1px var(--rich-black);
}

#about {
    padding: 5rem;
}

#about .about-card {
    /* padding:  2rem 4rem; */
    background-color: var(--bright-gray);
    box-shadow: 1px 1px 3px 2px #01161e3a;

    /* display: flex;
    justify-content: center;
    align-items: center; */

    padding: 6rem 2rem;
    /* background-color: aqua; */
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 80px 20px;
}

#about .about-card .left {
    /* padding: 2rem 2rem; */
    /* background-color: rgb(206, 102, 102); */
    /* display: flex; */

    background-image: linear-gradient(
            rgba(231, 233, 234, 0.545),
            rgba(231, 233, 234, 0.397)
        ),
        url("assets/images/about-back-pic.png");
    background-size: 100% 100%;
    /* opacity: 0.75; */
    background-repeat: no-repeat;

    position: relative;

    min-width: 200px;
    min-height: 30rem;
}

#about .about-card .left .imgbox {
    /* padding: 2rem 2rem; */
    /* height: 200px;
    width: 200px; */
    background-color: var(--grey-smoke);
    border: 10px solid #e7e9ea;
    /* border-radius: 20px; */
    /* display: flex; */
    position: absolute;
    /* top: 0px; */
    overflow: hidden;
}

#about .about-card .left .imgbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#about .about-card .left .imgbox:nth-child(1) {
    /* padding: 2rem 2rem; */
    height: 70%;
    width: 60%;
    transform: translateY(20%);
    /* background-color: var(--green-eagle); */
    /* border: 6px solid #000; */
    /* display: flex; */
    /* position:relative; */
    position: absolute;
    top: 30px;
    background-color: #0089c9;
}

#about .about-card .left .imgbox:nth-child(2) {
    /* padding: 2rem 2rem; */
    height: 45%;
    width: 35%;
    /* background-color: var(--green-eagle); */
    /* border: 6px solid #000; */
    /* display: flex; */
    position: absolute;
    top: 0px;
    right: 70px;
    background-color: #c90000;
}

#about .about-card .left .imgbox:nth-child(3) {
    /* padding: 2rem 2rem; */
    height: 45%;
    width: 35%;
    /* background-color: var(--rich-black); */
    /* border: 6px solid #000; */
    /* display: flex; */
    box-shadow: 1px 1px 30px 1px var(--green-eagle);
    position: absolute;
    bottom: -40px;
    left: 35%;
    background-color: #067030;
}

#about .about-card .right {
    width: 100%;
    display: flex;
    flex-direction: column;
    /* align-items: center;
    justify-content: center; */
}

#about .about-card .right h2 {
    color: var(--green-eagle);
    overflow-wrap: break-word;
}

#about .about-card .right p {
    color: var(--davys-grey);
}

#about .about-card .right .button {
    /* background-color: var(--rich-black);
    box-shadow: 1px 1px 5px 1px var(--rich-black); */
    text-decoration: none;
    color: var(--bright-gray);
    padding: 2rem 0rem;
    /* width: 0; */
}

#about .about-card .right a {
    background-color: var(--green-eagle);
    box-shadow: 1px 1px 5px 1px var(--rich-black);
    text-decoration: none;
    color: var(--bright-gray);
    transition: all 0.4s ease;
    padding: 1rem;
}

#about .about-card .right a:hover {
    background-color: var(--rich-black);
    box-shadow: 3px -3px 5px 2px var(--rich-black);
}

#whyus-stats {
    /* padding: 1rem;
     */
    /* position:relative; */
}

#whyus-stats #stats {
    display: flex;
    width: 100%;
    justify-content: space-around;
    align-items: center;
    /* gap: 5rem; */
    position: relative;
    /* transform: translateY(50%); */

    /* width: calc(100vw - 50px); */
    /* width: 100%;
    padding: 1rem;
    display: grid;
    grid-template-columns: repeat( auto-fit, minmax(250px, 1fr) );
    gap: 50px; */
}

#whyus-stats #stats .stats-card .stat-figure {
    background-image: linear-gradient(
            rgba(231, 233, 234, 0.545),
            rgba(231, 233, 234, 0.397)
        ),
        url("assets/images/stats-back-pic.png");

    /* opacity: .5; */
    background-size: 100% 100%;
    background-position: center;
    height: 4rem;
    width: 4rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

#whyus-stats #stats .stats-card {
    /* height: 100px;
    width: 100%; */
    padding: 40px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 1px 1px 3px 2px #01161e3a;
    background-color: var(--bright-gray);
}

#whyus-stats #whyus {
    /* padding: 20rem 0rem; */
    display: flex;
    /* align-items: center; */
    justify-content: center;
    align-content: stretch;
}

#whyus-stats #whyus .pic {
    width: 100%;

    /* padding: 1rem 0rem; */
    background-color: var(--davys-grey);
    /* background: var(--green-eagle); */
    overflow: hidden;
}

#whyus-stats #whyus .pic img {
    width: 100%;
    height: 100%;
    /* height: 600px; */
    object-fit: cover;
    /* object-fit:contain; */
}

#whyus-stats #whyus .content {
    width: 100%;
    /* height: 100%; */
    padding: 9rem 2rem;
    background-color: var(--green-eagle);
    color: var(--bright-gray);
}

#whyus-stats #whyus .content h6 {
    color: #e7e9eacd;
}

#whyus-stats #whyus .content h2 {
    color: var(--bright-gray);
}

#whyus-stats #whyus .content h5 {
    color: var(--bright-gray);
}

#whyus-stats #whyus .content p {
    color: #e7e9eac5;
}

#whyus-stats #whyus .content .whyus-card {
    padding: 1rem;
}

#country {
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    padding: 4rem 1rem;
    text-align: center;
}

#country h6 {
    color: var(--davys-greye);
}

#country h2 {
    color: var(--green-eagle);
}

#vehicle {
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    text-align: center;
    background-color: var(--green-eagle);
    padding: 3rem 3rem;
    margin: 3rem;
    /* height: 50vh; */
    /* position: relative; */
}

#vehicle h6 {
    color: #e7e9ead6;
}

#vehicle h2 {
    color: var(--bright-gray);
}

#vehicle .vehicles-container {
    display: flex;
    justify-content: space-around;
    align-content: center;
    /* flex-direction: column; */
    text-align: center;
    position: relative;
    /* top: 150px; */
    /* height: 50px; */
    /* transform: translateY(75%);  */
}

#vehicle .vehicles-container .swiper {
    /* position: absolute; */
    /* width: 100%; */
    /* transform: translateY(100%); */
}

#vehicle .vehicles-container .vehicle-card {
    /* padding: 50px; */
    background-color: var(--bright-gray);
    box-shadow: 1px 1px 3px 2px #01161e3a;
    height: 100px;
}

#vehicle .vehicles-container .vehicle-card img {
    width: 100%;
    object-fit: contain;
}

#affliatehead {
    color: var(--davys-grey);
    padding: 8rem 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#affliatehead .section-title {
    color: var(--green-eagle);
    padding: 2rem;
}

#affliatehead a {
    color: var(--bright-gray);
    text-decoration: none;
    background-color: var(--green-eagle);
    margin-top: 10px;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.2s ease-in-out;
}

#affliatehead a:hover {
    color: var(--bright-gray);
    text-decoration: none;
    background-color: var(--rich-black);
    padding: 10px 20px;
}

#affliatecards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#affliatecards .card {
    flex-basis: 100%;
    margin: 20px;
    border-radius: 10px;
    background-color: #f6f6f6;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#affliatecards .card .icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#affliatecards .card .icon {
    width: 100px;
    height: 100px;
    background-color: #333;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 40px;
}

#affliatecards .card h5 {
    font-weight: bold;
    margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
    #affliatecards .card {
        flex-basis: calc(50% - 30px);
    }
}

@media screen and (min-width: 992px) {
    #affliatecards .card {
        flex-basis: calc(33.33% - 30px);
    }
}


#contactus {
    padding: 5rem;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    text-align: center;
}

#contactus .contact-container {
    /* padding: 2rem; */
    margin: 2rem;
    display: flex;
    justify-content: center;
    align-content: center;
    box-shadow: 1px 1px 4px 1px #54545463;
    /* flex-direction: column; */
    /* text-align: center; */
}

#contactus .contact-container .picture {
    width: 100%;
    display: flex;
    background-color: #e7e9ea;
    overflow: hidden;
    flex-direction: column;
    justify-content: space-around;
}

#contactus .contact-container .picture img {
    width: 100%;
    height: 30vw;
    /* opacity: .8; */
    object-fit: contain;
}

#contactus .contact-container .contact-form {
    width: 100%;
    /* height: 100%; */
    text-align: left;
    padding: 2rem;
    background-color: var(--bright-gray);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#contactus h2 {
    color: var(--green-eagle);
}

#contactus .contact-container .contact-form h3 {
    text-align: left;
    color: var(--green-eagle);
}

#contactus .contact-container .contact-form form {
    margin-top: 1rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    /* text-align: center; */
    gap: 10px;
}

#contactus .contact-container .contact-form form input,
#contactus .contact-container .contact-form form textarea,
#contactus .contact-container .contact-form form button {
    padding: 0.5rem;
    font-size: var(--font-size-md);
    min-width: 100%;
    max-width: 100%;
    /* width: clamp(2vw); */
    border: none;
    outline: none;
    border-radius: 4px;
    transition: all 0.1s linear;
    background-color: #54545418;
}

#contactus .contact-container .contact-form form input::placeholder,
#contactus .contact-container .contact-form form textarea::placeholder {
    color: var(--green-eagle);
    font-weight: 100;
}

#contactus .contact-container .contact-form form button {
    padding: 1rem;

    background-image: linear-gradient(
        120deg,
        var(--green-eagle),
        var(--rich-black)
    );
    color: var(--bright-gray);
}

#contactus .contact-container .contact-form form button:hover {
    /* background-image: linear-gradient(120deg, var(--rich-black), var(--green-eagle) ); */
    background-image: linear-gradient(
        120deg,
        var(--rich-black),
        var(--rich-black)
    );
}

.swiper {
    width: 100%;
    height: 100%;
    --swiper-theme-color: var(--green-eagle);
    margin: 2rem;
    padding: 2rem;
}

.swiper-wrapper {
    width: 100%;
    height: 100%;
    /* margin: 2rem; */
    padding: 3rem 0rem;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: var(--bright-gray);
    box-shadow: 1px 1px 5px 1px #0000003e;
    /* padding: 5rem; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#select-country-page .container {
    padding: 10rem 2rem;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    align-content: center;
    justify-content: center;
}

#select-country-page .container h2,
h6 {
    text-align: center;
}

#select-country-page .container .country-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    /* grid-template-columns: repeat(auto-fit, minmax(clamp(300px, 100px), 1fr)); */
    gap: 20px 20px;
    padding: 2rem;
}

#select-country-page .container .country-container .country {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    /* border: 1px solid #000; */
    background-color: var(--green-eagle);
    background: linear-gradient(160deg, var(--green-eagle), var(--rich-black));
    border-radius: 8px;
    /* flex-wrap: wrap; */
    /* box-shadow: inset -2px -2px 5px 0px var(--green-eagle), inset 2px 2px 5px 0px var(--green-eagle); */

    width: 100%;
    /* transition:all 2s linear; */
    transition: all 0.2s ease-in-out;
}

#select-country-page .container .country-container .country:hover {
    box-shadow: 2px 5px 5px 0px var(--rich-black),
        inset -2px -2px 5px 0px var(--green-eagle),
        inset 2px 2px 5px 0px var(--green-eagle);
}

#select-country-page .container .country-container .country img {
    max-width: 10rem;

    /* height: 200px; */
}

#select-country-page .container .country-container .country p {
    padding: 2rem;
    font-size: var(--font-size-lg);
    color: var(--bright-gray);

    /* text-align: center; */
}

#faq-section .container {
    padding: 10rem 2rem 2rem 2rem;
    /* background-color: var(--grey-smoke); */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#faq-section .container h2 {
    color: var(--green-eagle);
}

#faq-section .container .faq-container {
    padding: 8rem 2rem;
    /* background-color: var(--grey-smoke); */
    display: flex;
    flex-direction: column;

    width: 100%;
}

#faq-section .container .faq-container details {
    /* font-size: var(--font-size-lg); */
    /* padding: 1rem; */

    transition: all 0.5s;
    /* max-width: 900px; */

    /* background-color: var(--rich-black); */
    /* margin-bottom: .5rem; */
    box-shadow: 1px 1px 20px 1px var(--green-eagle);

    border-radius: 4px;

    padding: 1rem;
    margin-bottom: 1rem;
}

#faq-section .container .faq-container details summary {
    font-size: var(--font-size-lg);
    font-weight: 600;
    /* background-color: var(--green-eagle); */

    /* font-weight: 800; */
    font-family: var(--font-primary);

    /* background-color: var(--grey-smoke); */
    /* width: 100%; */
    color: var(--rich-black);
    /* background-color: var(--rich-black); */
}

#faq-section .container .faq-container details summary:hover {
    cursor: pointer;
}

#faq-section .container .faq-container details p {
    /* background-color: var(--green-eagle); */
    padding: 1rem;
    color: var(--green-eagle);
}

#faq-section .container .faq-container details[open] summary {
    border-bottom: 1px solid var(--green-eagle);
}

details summary::marker {
    display: none;
    content: "+ ";
}

details[open] summary::marker {
    display: none;
    content: "- ";
}

#hto .container {
    padding: 10rem 2rem 2rem 2rem;
    /* background-color: var(--grey-smoke); */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#hto .container h2 {
    color: var(--green-eagle);
}

#hto .container h2 {
    color: var(--green-eagle);
}

#hto .container .hto-container {
    /* color: var(--green-eagle); */
    padding: 8rem 2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* justify-content: center;
    align-items: center; */
}

#hto .container .hto-container .process h3 {
    color: var(--green-eagle);
}

#hto .container .hto-container .process {
    /* text-align: center; */
    /* max-width: 900px; */
    border-bottom: 1px solid #00000065;
}

#hto .container .hto-container .process:nth-child(2n-1) {
    /* color: var(--green-eagle); */
    padding: 2rem 2rem;
    text-align: right;
}

#hto .container .hto-container .process:nth-child(2n) {
    /* color: var(--green-eagle); */
    padding: 8rem 2rem;
    text-align: left;
}

#hto .container .hto-container .process:nth-child(1) {
    text-align: center;
}

#footer footer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    background-color: var(--green-eagle);
    color: var(--bright-gray);
}

#footer footer p {
    font-size: var(--font-size-base);
}

#success-section {
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}
#success-section h3 {
    color: #8db32c;
}
#success-section p span {
    color: #05c7f8;
}

#success-section {
    padding: 10rem 2rem 2rem 2rem;
    /* background-color: var(--grey-smoke); */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#success-section .receipt {
    color: var(--skobeloff);
    margin-top: 1rem;
}
#success-section .receipt div {
    color: var(--skobeloff);
    margin-top: 1rem;
}
#success-section .head img {
    width: 100px;
    height: 100px;
}
#success-section .receipt .foot {
    margin-top: 2rem;
    text-align: right;
}
#success-section .receipt a {
    background-color: var(--green-eagle);
    color: var(--bright-gray);
    text-decoration: none;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.2s ease-in-out;
}

#success-section .receipt a:hover {
    background-color: var(--rich-black);
    color: var(--bright-gray);
}

select[readonly] option,
select[readonly] optgroup {
    display: none;
}

#checkout_button,
#checkout_button_secure_nmi,
#checkout_button_deposyt,
#checkout_button_stripe {
    display: inline-block;
    display: none;
    font-family: sans-serif;
    font-size: var(--font-size-md);
    width: 100%;
    background: linear-gradient(160deg, var(--rich-black), #181818);
    color: white;
    border-radius: 4px;
    padding: 8px 20px;
    text-align: center;
    font-weight: 500;
    border: none;
    transition: all 0.4s;
    font-style: italic;
}

#checkout_button_stripe {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;

    background: linear-gradient(160deg, #9843d9, #181818);
    font-size: var(--font-size-md);
}
#checkout_button_stripe:hover,
#checkout_button_secure_nmi:hover,
#checkout_button_deposyt:hover,
#checkout_button:hover {
    cursor: pointer;
    box-shadow: 1px 1px 10px 1px var(--rich-black);
}

#checkout-section .container .checkout-container #error-noti {
    display: none;
}
#checkout-section .container .checkout-container #error-noti p {
    color: #d92f2f;
    text-align: center;
}

#checkout-section .container {
    padding: 10rem 2rem 2rem 2rem;
    /* background-color: var(--grey-smoke); */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#checkout-section .container h2 {
    color: var(--green-eagle);
}

#checkout-section .container .checkout-container {
    margin-top: 1rem;
}

#checkout-section .container .checkout-container form {
    /* color: var(--green-eagle); */
    display: flex;
    gap: 20px;
}

#checkout-section .container .checkout-container form input,
#checkout-section .container .checkout-container form textarea,
#checkout-section .container .checkout-container form select {
    font-size: var(--font-size-md);
    padding: 8px;
    border: 1px solid var(--bright-gray);
    border-radius: 4px;
}

#checkout-section .container .checkout-container form select option {
    font-size: var(--font-size-md);
    background-color: var(--bright-gray);
}

#checkout-section .container .checkout-container form input:focus-visible,
#checkout-section .container .checkout-container form textarea:focus-visible,
#checkout-section .container .checkout-container form select:focus-visible {
    outline: none;
    border-bottom: 2px solid var(--green-eagle);
}

#checkout-section .container .checkout-container form input::placeholder,
#checkout-section .container .checkout-container form textarea::placeholder,
#checkout-section .container .checkout-container form select::placeholder {
    color: var(--bright-gray);
}

#checkout-section .container .checkout-container .input-box {
    color: var(--rich-black);
    display: flex;
    flex-direction: column;
    padding: 1rem;
}

#checkout-section .container .checkout-container .input-container {
    /* color: var(--green-eagle); */
    display: flex;
}

#checkout-section .container .checkout-container .billing {
    /* color: var(--green-eagle); */

    border: 1px solid var(--green-eagle);
    padding: 0.5rem;
    border-radius: 8px;

    display: flex;
    flex-direction: column;
    gap: 10px;
}

#checkout-section .container .checkout-container .billing .details {
    /* color: var(--green-eagle); */

    /* border: 1px solid var(--green-eagle); */
    padding: 1rem;
    border-radius: 8px;
}

#checkout-section .container .checkout-container .billing .notes {
    /* color: var(--green-eagle); */

    /* border: 1px solid var(--green-eagle); */
    padding: 1rem;
    border-radius: 8px;
}

#checkout-section .container .checkout-container .order {
    border: 1px solid var(--green-eagle);
    padding: 1rem;
    border-radius: 8px;

    display: flex;
    flex-direction: column;
    gap: 20px;
}

#checkout-section .container .checkout-container .order .orderdetails {
    /* border: 1px solid var(--green-eagle); */
    padding: 1rem;
    border-radius: 8px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    /* gap: 0px 0px;  */
    gap: 20px;

    align-items: center;
}
#vin_input_container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
#checkout-section .container .checkout-container .order .payment {
    border: 1px solid var(--green-eagle);
    padding: 1rem;
    border-radius: 8px;

    display: flex;
    flex-direction: column;

    /* display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    /* gap: 0px 0px;  */
    gap: 20px;

    align-items: center;
    width: 100%;
}

/* #checkout-section .container .checkout-container .order .payment button{

    padding: 1rem 2rem;
    border: none;
    background: linear-gradient(160deg, var(--rich-black), var(--green-eagle));
    color: #FFF;
    border-radius: 3px;
} */
#checkout-section .container .checkout-container .order .payment #ptp {
    padding: 1rem 2rem;
    border: none;
    background: linear-gradient(160deg, var(--rich-black), var(--green-eagle));
    color: #fff;
    border-radius: 3px;
    width: 100%;
    transition: all 0.4s;
}

#checkout-section
    .container
    .checkout-container
    .order
    .payment
    #editformbutton {
    padding: 1rem 2rem;
    border: none;
    background: linear-gradient(160deg, var(--rich-black), var(--green-eagle));
    color: #fff;
    border-radius: 3px;
    transition: all 0.4s;
    display: none;
    width: 100%;
}

#checkout-section .container .checkout-container .order .payment #ptp:hover {
    box-shadow: 1px 1px 10px 1px var(--green-eagle);
}
#checkout-section
    .container
    .checkout-container
    .order
    .payment
    #paypal-button-container {
    /* box-shadow: 1px 1px 10px 1px var(--green-eagle); */
    width: 100%;
    display: none;
}
.text{
    padding: .3rem;
}
dialog {
    /* width: 100%;
    height: 100%; */
    position: fixed;
    /* padding: 1rem; */
    /* top: 50%; */
    left: 50%;
    transform: translate(-50%, 10%);
    /* translate: trans; */
    /* transform: translateX(50%); */
    /* transform: translate(50% 50%); */
    width: clamp(400px, 40%, 200px);

    border: none;
    border-radius: 8px;
    /* overflow: hidden; */
}

dialog .modalhead {
    display: flex;
    justify-content: space-between;
    background: linear-gradient(160deg, var(--rich-black), var(--green-eagle));
    color: #fff;
    font-family: var(--font-primary);
    /* font-family: var(--font-primary); */

    padding: 1rem;
}

dialog .modalhead p {
    /* display: flex;
    justify-content: space-between;
    background: linear-gradient(160deg, var(--rich-black), var(--green-eagle));
    color: #fff; */
    font-family: var(--font-primary);
    /* font-family: var(--font-primary); */
}

dialog .modalbody {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: space-between;
    /* background: linear-gradient(160deg, var(--rich-black), var(--green-eagle)); */
    /* color: ; */
    padding: 1rem;
    overflow-y: auto;
}

dialog .modalbody ul {
    padding: 1rem;
}

dialog .modalbody li {
    font-size: var(--font-size-md);
}

dialog .modalfooter {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    /* background: linear-gradient(160deg, var(--rich-black), var(--green-eagle)); */
    color: #fff;
    font-family: var(--font-primary);
    padding: 1rem;
}

dialog .modalfooter .closedialog {
    background: #d92f2f;
    color: #fff;
    border: none;
    font-family: var(--font-primary);
    font-size: var(--font-size-md);
    padding: 0.4rem 1rem;
    border-radius: 3px;
}

dialog .modalfooter .submitdialog {
    background: var(--green-eagle);
    color: #fff;
    border: none;
    font-family: var(--font-primary);
    font-size: var(--font-size-md);
    padding: 0.4rem 1rem;
    border-radius: 3px;
}

dialog .modalhead button {
    color: #fff;
    border: none;
    background: none;
}

dialog::backdrop {
    /* background: ; */
    backdrop-filter: blur(10px);
    width: 100%;
    height: 100%;
    opacity: 0.75;
}

.notification {
    position: fixed;
    /* bottom: 20px;
    left: 10px; */
    /* top: 180px;
    left: 500px; */
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    /* transform: translate(100%); */

    z-index: 200;
    background: linear-gradient(120deg, var(--rich-black), var(--green-eagle));
    padding: 1rem 2rem;
    font-size: var(--font-size-lg);
    font-family: var(--font-primary);
    color: var(--grey-smoke);
    border-radius: 8px;
}

.notification::backdrop {
    background-image: linear-gradient(
        45deg,
        magenta,
        rebeccapurple,
        dodgerblue,
        green
    );
    opacity: 0.75;
}

#preloader {
    background: #fcfcfc;
    background-size: 30%;
    height: 500vh;
    width: 100%;
    position: fixed;
    z-index: 100;
}
#preloader .wheels {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
#preloader .wheels img {
    animation: rotation 1s infinite linear;
    height: 40vh;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* chota laptop */
@media (max-width: 860px) {
    #checkout-section .container .checkout-container form {
        flex-direction: column;
    }
    #about .about-card {
        /* flex-direction: column; */
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
        gap: 80px 20px;
    }
}

/* tablet */
@media (max-width: 768px) {
    #about {
        padding: 1rem;
    }

    #about .about-card {
        /* flex-direction: column; */
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
        gap: 80px 20px;
    }

    #whyus-stats #whyus {
        flex-direction: column-reverse;
    }

    #contactus {
        padding: 0;
    }

    #contactus .contact-container {
        flex-direction: column;
    }

    #meni-icon,
    #close-icon {
        display: none;
        justify-content: center;
        align-items: center;
        color: var(--rich-black);
        font-size: var(--font-size-xl);
    }

    #checkout-section .container .checkout-container form {
        flex-direction: column;
    }

    #checkout-section .container .checkout-container .input-container {
        flex-direction: column;
    }
}

/* Mobile */
@media (max-width: 650px) {
    nav .menu {
        position: absolute;
        width: 100%;
        display: flex;
        flex-direction: column;

        left: 0;
        top: 100%;
        /* z-index: 1000; */
        /* justify-content:unsafe; */
        /* align-content: center; */
    }

    nav {
        /* overflow:visible; */
        /* overflow: hidden; */
    }

    nav ul {
        display: none;
        /* position: absolute; */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        /* position:absolute; */
        top: 100%;
        bottom: 0;
        /* top: 0; */
        left: 0;
        width: 100%;
        height: 17.7rem;
        /* z-index: 0; */
        /* color: #FFF; */
        /* transform: translateY(-200%); */
        transition: all 1s;
        /* overflow: hidden; */
        backdrop-filter: blur(8px);
    }

    nav ul li {
        /* box-sizing: border-box; */
        width: 100%;
        text-align: center;
        padding: 10px;
        background: linear-gradient(
            120deg,
            var(--green-eagle),
            var(--rich-black)
        );
    }

    nav ul li a {
        text-decoration: none;
        color: #ffffff65;
        font-weight: 700;
        /* padding: 1rem; */
        font-size: var(--font-size-md);
        transition: 0.4s ease-in-out;
    }

    nav ul li .active,
    nav ul li a:hover {
        /* color: var(--green-eagle); */
        color: var(--bright-gray);
        text-decoration: underline;
    }

    #meni-icon {
        display: block;
    }
}

#loader-slider {
    width: 100vw;
    height: 100vh;
    align-items: center;
    justify-content: center;
    background: linear-gradient(120deg, var(--green-eagle), var(--rich-black));
    display: flex;
    position: fixed;
    z-index: 40;
}

.loader {
    width: 96px;
    height: 48px;
    /* width: 100vw;
    height: 100vh; */
    display: inline-block;
    position: relative;
    background: #fff;
    border-radius: 48px 48px 0 0;
    box-sizing: border-box;
    overflow: hidden;
}

.loader::after {
    content: "";
    box-sizing: border-box;
    position: absolute;
    width: 24px;
    height: 12px;
    border-radius: 24px 24px 0 0;
    background: #ff3d00;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}

.loader::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 32px;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
    background: #ff3d00;
    transform-origin: 50% 100%;
    box-sizing: border-box;
    animation: animloader 2s linear infinite alternate;
}

@keyframes animloader {
    0% {
        transform: rotate(-70deg);
    }

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

    20%,
    45%,
    35% {
        transform: rotate(-10deg);
    }

    40%,
    30% {
        transform: rotate(-30deg);
    }

    50%,
    60% {
        transform: rotate(20deg);
    }

    55%,
    65%,
    75% {
        transform: rotate(40deg);
    }

    70% {
        transform: rotate(45deg);
    }

    85%,
    90% {
        transform: rotate(50deg);
    }

    95% {
        transform: rotate(75deg);
    }

    100%,
    93% {
        transform: rotate(70deg);
    }
}
