* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

:root {
    --size: clamp(10rem, 1rem + 40vmin, 30rem);
    --gap: calc(var(--size) / 35);
    --duration: 60s;
    --scroll-start: 0;
    --scroll-end: calc(-100% - var(--gap));
    --bg-blue: #00335e;
    --bg-white: #FFFFFF;
    --bg-red: #EE2110;
    --text-color-red: #EE2110;
    --text-color-white: #FFFFFF;
    --text-color: #111111;
    --inter: 'Inter';
    --test-n-2: 'TestNational2';
    --bg-color-greywhite: #F4F4F4;
}

/* .inter-<uniquifier> {
      font-family: "Inter", serif;
      font-optical-sizing: auto;
      font-weight: <weight>;
      font-style: normal;
    } */
@font-face {
    font-family: 'TestNational2';
    /* src: url('/font/TestNational2/TestNational2-Bold-BF663c3f490c32f.otf') format('opentype');
    src: url('/font/TestNational2/TestNational2-Medium-BF663c3f4904b1a.otf') format('opentype');
    src: url('/font/TestNational2/TestNational2-Regular-BF663c3f4a23d54.otf') format('opentype'); */
    src: url("../font/TestNational2-Medium.otf") format('opentype');
}

@font-face {
    font-family: 'inter';
    src: url('/font/Inter/Inter-VariableFont_slnt,wght.ttf') format('opentype');


}


body {
    a {
        text-decoration: none;
    }
}

/* .container {
    max-width: 1400px;
} */

input,
select,
textarea,
button {
    outline: 0;
}




/* <!-- slider -section -start --> */
.slide {
    position: relative;
    background-image: url('../assets/images1/slider1.webp');
    /* background-image: url('../assets/images1/navkar.jpeg'); */
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 17, 17, 0.5);
    z-index: 1;
}

.text {
    position: relative;
    z-index: 2;
    color: white;
}


.hero-slider {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
    position: relative;

}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.text {
    text-align: center;
}

.text h1 {
    font-family: var(--test-n-2);
    font-style: normal;
    font-weight: 500;
    font-size: 60px;
    line-height: 75px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #FFFFFF;

}


.animate-line1 {
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInDown 1s forwards;
    animation-delay: 0.5s;
}

.animate-line2 {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
    animation-delay: 1.5s;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navigation Buttons */
.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    font-size: 30px;
    padding: 10px 20px;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease;
}

.nav:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.nav.prev {
    left: 10px;
}

.nav.next {
    right: 10px;
}

.geterow {
    padding-left: 15px;
}

.growbtn {
    margin-top: 30px;
}

/* .growbtn button {
    width: 200px;
    height: 52px;
    padding: 14px 20px 14px 20px;
    gap: 10px;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-red);
    border: 1px solid var(--bg-red);
    border-radius: 100px;
    font-family: var(--inter);
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    color: var(--bg-white);
} */


.growbtn button {
    width: 200px;
    height: 52px;
    padding: 14px 20px;
    gap: 10px;
    justify-content: center;
    align-items: center;
    position: relative;
    background: var(--bg-red);
    border: 1px solid var(--bg-red);
    border-radius: 100px;
    font-family: var(--inter);
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    color: var(--bg-white);
    z-index: 1;
    overflow: hidden;
    transition: width .5s ease;
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
}

.growbtn button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 100px;
    background-color: var(--bg-blue);

    z-index: -1;
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: width .5s ease;
}

.growbtn button:hover {
    color: var(--bg-white);
    border: 1px solid var(--bg-blue);
}

.growbtn button:hover::before {
    width: 100%;
}












/* <!-- slider -section -End --> */


/* <!-- Businesses Registered-4-box-section-start --> */
.countermainnp {
    background-color: var(--bg-blue);
    background-image: url("../assets/images1/bgpatterndeal.webp");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.card-countermain {
    color: #000000;
    border-radius: 5px;
    padding: 30px 30px 30px 30px;
    border: 1px solid var(--bg-white);
    background-color: var(--bg-white);
    border-radius: 10px;
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
    z-index: 211;
    position: relative;
    top: -60px;
}

.conter1img img {
    height: 60px;
    width: 60px;
}

.card-counter {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.card-counter i {
    font-size: 5em;
    opacity: 0.2;
}

.card-counter .count-numbers {
    font-family: var(--inter);
    font-size: 34px;
    font-weight: 700;
    line-height: 42px;
    color: #111111;
}

.card-counter .count-name {
    display: block;
    font-family: var(--inter);
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    color: #111111;
}

/* <!-- Businesses Registered-4-box-section-End --> */

/* <!-- Explore JPoint-Section-style-start --> */
.expercardmainnp {
    z-index: 11;
    padding: 66px 0px 120px 0px;
    background-color: var(--bg-blue);
    background-image: url("../assets/images1/bgpatterndeal.webp");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

}

.Exptitlenp h1 {
    font-family: var(--test-n-2);
    font-style: normal;
    font-weight: 500;
    font-size: 40px;
    line-height: 48px;
    display: flex;
    align-items: center;
    color: var(--bg-white);
}


/* .boxnp {
    background-color: rgba(255, 255, 255, 0.2) !important;
    padding: 30px 30px 30px 30px;
    gap: 30px;
} */



.boxnp {
    background-color: rgba(255, 255, 255, 0.2) !important;
    padding: 30px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
}

.boxnp::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 650px;
    left: 50%;
    bottom: 0;
    background: #ee2110;
    border-radius: 90%;
    transform: translate(-50%, 110%);
    opacity: 10px;
    transition: all 0.8s ease;
    z-index: -1;
}

.boxnp:hover::before {
    opacity: 10px;
    transform: translate(-50%, 20%);
}



.cardimg {
    height: 80px;
    width: 80px;
    background-color: #f3f3f3;
    border-radius: 110px;
    position: relative;
    overflow: hidden;
    z-index: 22;
    display: flex;
    justify-content: center;
    /* Horizontal center */
    align-items: center;
    /* Vertical center, optional */
}

.cardimg img {
    width: 50px;
    height: 50px;
    margin: auto;
}

.card-titlenp {
    font-family: var(--inter);
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    color: var(--text-color-white);
}


.card-textnp {
    font-family: var(--inter);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--text-color-white);
}

.card-bodynp a {
    font-family: var(--inter);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--text-color-white);
}


.exnp {
    margin-left: 10px;
}


/* <!-- Explore JPoint-Section--End-start --> */



/* <!-- category-slider-section-style-start --> */


.card-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #1111112b, #11111182);
    z-index: 1;
    transition: background-color 0.3s ease;
}

.card-img-label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-family: var(--inter);
    font-size: 16px;
    font-weight: bold;
    z-index: 2;

}

.marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--gap);
}

.marquee__group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: var(--gap);
    min-width: 100%;
    animation: scroll-x var(--duration) linear infinite;
}

@media (prefers-reduced-motion: reduce) {
    .marquee__group {
        animation-play-state: paused;
    }
}


.marquee--reverse .marquee__group {
    animation-direction: reverse;
    animation-delay: -3s;
}

@keyframes scroll-x {
    from {
        transform: translateX(var(--scroll-start));
    }

    to {
        transform: translateX(var(--scroll-end));
    }
}


.marquee .card,
.card-img-top {
    display: grid;
    place-items: center;
    width: var(--size);
    aspect-ratio: 16/9;
    border-radius: 0.5rem;
    background-color: #f0ffff00;
    /* filter: grayscale(100%); */
}

/* Parent wrapper */
.wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    margin: auto;
    max-width: 100vw;
    margin: 100px 0px;
}

.wrapper--vertical {
    flex-direction: row;
    height: 100vh;
}

/* <!-- category-slider-section-style-End--> */


/* <!-- Post your Buying Requirements-section-start --> */
.headimg-text {
    display: flex;
    gap: 15px;
}

.post-buy-np img {
    width: 500px !important;
}

.postb-np h2 {
    font-family: var(--test-n-2);
    font-style: normal;
    font-weight: 500;
    font-size: 50px;
    line-height: 62px;
    text-transform: capitalize;
    color: #FFFFFF;
}





.postb-np p {
    font-family: var(--inter);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

/* .postb-np button {
    margin: 10px 0px;
    font-family: var(--inter);
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    color: #111111;
} */


.postb-np button {
    margin: 10px 0px;
    /* width: 200px;
    height: 52px;
    padding: 14px 20px; */
    gap: 10px;
    justify-content: center;
    align-items: center;
    position: relative;
    background: var(--bg-white);
    border-radius: 100px;
    font-family: var(--inter);
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    color: var(--text-color);
    z-index: 1;
    overflow: hidden;
    transition: width 0.5s ease;
}

.postb-np button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 100px;
    background-color: var(--bg-red);
    z-index: -1;
    transition: width 0.5s ease;
}

.postb-np button:hover {
    color: var(--bg-white);
    border: 2px solid var(--bg-red);
}

.postb-np button:hover::before {
    width: 100%;
    border: 2px solid var(--bg-red);

}



.requirements-section {
    background-color: var(--bg-blue);
    color: white;
    border-radius: 30px;
    min-height: 532px;
}

.buymainnp {
    margin-bottom: 100px;
}

.section-post1 {
    min-height: 532px;
    /* padding-right: 5rem !important;
      padding-left: 5rem !important; */
    /* margin-bottom: 100px; */

}

.icons-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 2rem;
}

.postimg {
    width: 500px;
    height: 292;
}

.szcl {
    color: #111111;
    font-size: 14px;
    font-family: Inter;
    margin: 4px 0px;
}

.fw-semibold {
    font-family: var(--inter);
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: #111111;
}

/* .in-submit-r{
      background-color: #EE2110;
        padding: 14px 20px; 
    font-family:var(--inter);
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    text-transform: capitalize;
    color: #FFFFFF;
    } */
.modelbtnsub {
    background-color: #111111 !important;
    color: #ffffff;
    padding: 14px 20px;
    font-size: 16px;
}

.custom-btn {
    border: none;
    background-color: white;
    color: black;
    padding: 14px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Custom close button style */
.custom-close-btn {
    width: 24px;
    height: 24px;
    background-color: #F4F4F4;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    top: 20px;
    align-items: center;
    right: 20px;

    i {
        color: #000000;
        font-size: 25px;
        font-weight: bold;
        position: absolute;
    }
}

/* .sub-re-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 14px 20px;
    gap: 10px;
    width: 100%;
    height: 52px;
    background: #EE2110;
    border-radius: 100px;
    font-family: var(--inter);
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    color: #ffffff;
} */

.sub-re-btn {
    position: relative;
    display: inline-block;
    background-color: var(--bg-red);
    /* base white background like .postb-np */
    padding: 14px 20px;
    width: 100%;
    height: 52px;
    font-family: var(--inter);
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    text-transform: capitalize;
    color: var(--bg-white);
    border-radius: 100px;
    border: 2px solid var(--bg-red);
    z-index: 1;
    overflow: hidden;
    transition: color 0.5s ease;
}

.sub-re-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 100px;
    background-color: var(--bg-blue);
    color: var(--bg-white);
    /* border: 2px solid var(--bg-blue); */
    z-index: -1;
    transition: width 0.5s ease;
}

.sub-re-btn:hover {
    background-color: var(--bg-red);
    /* base white background like .postb-np */
    color: var(--bg-white);
    border: 2px solid var(--bg-blue);
}

.sub-re-btn:hover::before {
    width: 100%;
}



/* Change button background color to red when clicked */
.sub-re-btn.clicked {
    background-color: red;
}

/* Hide the submit text and right arrow icon when clicked */
.sub-re-btn.clicked #submitText,
.sub-re-btn.clicked .exnp {
    display: none;
}

/* Show the loader and loading text when clicked */
.sub-re-btn.clicked #loader,
.sub-re-btn.clicked #loadingText {
    display: inline-block;
}

/* <!-- Post your Buying Requirements-section-End --> */


/* <!--  Bulk Deals-section-style-start --> */
.bulkmainnp {
    background-color: #f4f4f4;
    padding: 80px 0px;
    /* display: none; */
}

.header-img img {
    width: 50px;
    height: 50px;
}

.product-slider {
    /* position: relative;
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid;
    border-image: linear-gradient(94deg, #EE2110, #00335E) 10; */
    padding: 20px;
    border-radius: 10px;
    border: 1px solid transparent;
    background: linear-gradient(white, white) padding-box,
        linear-gradient(94deg, #EE2110, #00335E) border-box;
    position: relative !important;
}


.slider-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 20px;
    padding: 0 15px;
}

.header-left {
    /* display: flex;
      align-items: center; */
    gap: 20px;

    h4 {
        font-family: var(--test-n-2);
        font-size: 20px;
        font-weight: 500;
        line-height: 26px;
        color: #111111;
        margin: 0px;
        padding: 0px;
    }

    p {
        font-family: var(--inter);
        font-size: 16px;
        font-weight: 400;
        line-height: 22px;
        color: #303030;
        margin: 0px;
        padding: 0px;
    }
}

.product-container {
    position: relative;
    overflow: hidden;

}

.product-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.product-slide {
    flex: 0 0 100%;
    min-width: 100%;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 15px;
}

.imgslide-np img {
    margin: 18px 0 0 0;
    width: 100%;
    height: 450px;
    object-fit: cover;
}

/* .product-card {
      background: white;
      border-radius: 8px;
      padding: 15px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
  } */

/* .product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  } */

.product-image {
    width: 100%;
    height: 173px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
    border: 1px solid #EFEFEF;
    border-radius: 10px;
}



.arrow-btn {
    width: 35px;
    height: 35px;
    background: #fff;
    border: 1px solid var(--bg-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;

    i {
        color: var(--bg-blue);
    }
}



/* .arrow-btn:hover {
      background: #0d6efd;
      color: white;
      border-color: #0d6efd;
  } */

.slider-bullets {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    flex-wrap: wrap;
    padding: 10px;
}

.bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #dee2e6;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.bullet.active {
    background: var(--bg-blue);
    transform: scale(1.2);
}

.product-title {
    font-family: var(--inter);
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    color: #111111;
    white-space: nowrap;
    width: 135px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* <!--  Bulk Deals-section-style-End --> */


/* <!-- Start Selling on JPoint
      In 3 Simple Steps-section-start --> */

.steps-container {
    background-image: url(../assets/images1/register-back.png);
    color: var(--text-color-white) !important;
    padding: 4.5rem !important;

    h2 {
        font-size: 40px;
        line-height: 48px;
    }

}

.register-container {
    padding: 100px 30px 100px 30px !important;
}

.form-check-label {
    font-family: var(--inter);
    font-size: 14px;
    font-weight: 500;
}

.terms-np a {
    color: var(--bg-blue);
    font-weight: 500;
    font-size: 14px;
}

.Alredy {
    font-family: var(--inter);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #303030;
}

/* .btnregis {
    background-color: var(--bg-red) !important;
    color: var(--text-color-white) !important;
    padding: 14px 20px !important;
    width: 219px !important;
    font-family: Inter !important;
    font-size: 16px !important;

} */


.btnregis {
    background-color: var(--bg-red);
    color: var(--text-color-white);
    padding: 14px 20px;
    width: 219px;
    height: 52px;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    border: 1px solid var(--bg-red);
    border-radius: 100px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: width 0.5s ease;
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btnregis::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 100px;
    background-color: var(--bg-blue);
    z-index: -1;
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: width 0.5s ease;
}

.btnregis:hover {
    color: var(--bg-white);
    border: 1px solid var(--bg-blue);
}

.btnregis:hover::before {
    width: 100%;
}

.submit-btn {
    background-color: var(--bg-red);
    color: var(--text-color-white);
    padding: 14px 20px;
    width: 219px;
    height: 52px;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    border: 1px solid var(--bg-red);
    border-radius: 100px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: width 0.5s ease;
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.submit-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 100px;
    background-color: var(--bg-blue);
    z-index: -1;
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: width 0.5s ease;
}

.submit-btn:hover {
    color: var(--bg-white);
    border: 1px solid var(--bg-blue);
}

.submit-btn:hover::before {
    width: 100%;
}

.main-number-text {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 0px 0px 30px 0px;
}

/* .step-number {
    width: 80px;
    height: 80px;
    background: #FFFFFF;
    border-radius: 60px;
    font-style: normal;
    font-weight: 500;
    font-size: 46px;
    line-height: 54px;
    color: #EE2110;
    position: relative;
}

.step-number p {
    position: absolute;
    font-family: 'TestNational2';
    width: 18px;
    height: 31px;
    left: 28px;
    top: 13px;
} */
.step-number {
    width: 100px;
    height: 100px;
    background: #FFFFFF;
    border-radius: 50%;
    /* display: flex;
    justify-content: center;
    align-items: center; */
    /* margin: 20px auto; */
    box-sizing: border-box;
}

.step-number p {
    font-family: var(--test-n-2) !important;
    font-weight: 600 !important;
    font-size: 46px !important;
    color: #EE2110 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 19px !important;
}

/* .row:nth-child(2) .step-number,
.row:nth-child(2) .step-card {
    background-color: #f0f0f0 !important;
    opacity: 0.6 !important;
    pointer-events: none !important;
    color: #b0b0b0 !important;
}


.row:nth-child(3) .step-number,
.row:nth-child(3) .step-card {
    background-color: #f0f0f0 !important;
    opacity: 0.6 !important;
    pointer-events: none !important;
    color: #b0b0b0 !important;
} */

.active-ad {
    box-shadow: #ee211061 0px 0px 1px 9px !important;
}

.regilabel-ad {
    font-family: var(--inter) !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    color: #303030 !important;
    line-height: 14px !important;

}

.login-ad {
    color: var(--bg-blue) !important;
}

.step-card {
    background-color: var(--bg-white) !important;
    padding: 1rem !important;
    border-radius: 8px !important;

    h5 {
        color: var(--text-color) !important;
        font-family: var(--inter) !important;
        font-weight: 600 !important;
        font-size: 20px !important;
        line-height: 28px;
        color: #111111;

    }

    p {
        font-family: var(--inter) !important;
        font-weight: 400 !important;
        font-size: 14px !important;
        color: var(--text-color) !important;
    }
}


.form-container {
    background-color: var(--bg-white) !important;
    padding: 1rem 5rem !important;
    border-radius: 8px !important;
    border-radius: 8px !important;

    h2 {
        font-size: 33px !important;
        line-height: 38px !important;
        font-family: var(--test-n-2) !important;
        font-weight: 500 !important;
    }

    #otp-section {
        h5 {
            font-family: var(--test-n-2);
            font-style: normal;
            font-weight: 500;
            font-size: 30px;
            line-height: 38px;
            display: flex;
            align-items: center;
            color: #111111;

        }

        p {
            font-family: var(--inter);
            font-style: normal;
            font-weight: 400;
            font-size: 14px;
            line-height: 22px;
            color: #303030;
        }

        display: none;
    }

    .otp-container {
        display: flex;
        justify-content: start;
        align-items: center;
    }

    .otp-inputs {
        display: flex;
        gap: 10px;
    }

    #verify-otp {
        background-color: var(--bg-red);
        border-color: var(--bg-red);
    }

    .otp-input {
        width: 50px;
        height: 50px;
        text-align: center;
        font-size: 20px;
        border: 2px solid #ccc;
        border-radius: 5px;
    }

    .otp-input:focus {
        border-color: var(--bg-blue);
        outline: none;
    }

}

#terms:checked {
    background-color: var(--bg-blue);
    border-color: var(--bg-blue);
}

#whatsapp:checked {
    background-color: var(--bg-blue);
    border-color: var(--bg-blue);
}

.steps-container {
    position: relative !important;
    overflow: hidden !important;

    h2 {
        font-family: var(--test-n-2) !important;
        font-style: normal;
        font-weight: 500;
        font-size: 45px;
        line-height: 48px;
        color: #FFFFFF;
    }


    .steps {
        margin-top: 5rem !important;

    }

}

.steps-container .left-bottom-img {
    position: absolute !important;
    left: -25px !important;
    bottom: -83px !important;
    width: 287px !important;
    height: 287px !important;
    object-fit: cover !important;
    object-position: bottom left !important;
}

.steps-container .top-right-img {
    position: absolute !important;
    right: -115px !important;
    top: -145px !important;
    width: 287px !important;
    height: 287px !important;
    object-fit: cover !important;
    object-position: top right !important;
}


/* <!-- Start Selling on JPoint
      In 3 Simple Steps-section-End--> */


/* <!-- Success Stories-section-start --> */

.video-container {
    position: relative;
    margin: 0 auto;
}

.video-thumbnail {
    width: 100%;
    height: auto;
    display: block;
}

.play-button:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.play-button::after {
    content: "";
    display: block;
    height: auto;
    border-top: 15px solid transparent;
    border-left: 22px solid white;
    border-bottom: 15px solid transparent;
    margin-left: 5px;
}

video {
    width: 100%;
    height: auto;
    display: none;
    border: 1px solid rgb(180, 180, 180);
    border-radius: 10px;
}

.hidden {
    display: none;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px !important;
    height: 90px !important;
    background: #00335e !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 10px rgb(255, 255, 255);
    transition: box-shadow 0.3s ease-in-out;
}

.play-button::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #00335e;
    border-radius: 50%;
    z-index: -1;
    animation: pulse 1.5s infinite ease-in-out;
}

.play-button:hover {
    box-shadow: 0 0 20px rgb(255, 255, 255);
}

.play-icon {
    width: 0;
    height: 0;
    border-left: 20px solid white;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.6;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.testimonial-wrapper {
    position: relative !important;
    overflow: hidden !important;
}

.testimonial-container {
    display: flex !important;
    transition: transform 0.5s ease !important;
    width: 100% !important;
}

.testimonial-slide {
    flex: 0 0 100% !important;
    width: 100% !important;
}

.testimonial-card {
    height: 100% !important;
    padding: 1rem !important;
    border-radius: 10px;
    border: 1px solid transparent;
    background: linear-gradient(white, white) padding-box,
        linear-gradient(94deg, #EE2110, #00335E) border-box;
    position: relative !important;
}

.testimonial-content {
    padding: 5px !important;
    margin-top: 6px !important;
}

.user-info {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-top: 20px !important;
    position: absolute !important;
    bottom: 20px !important;
}

.user-icon {
    width: 60px !important;
    height: 60px !important;
    background: #f0f0f0 !important;
    border-radius: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.text-testimonial {
    font-family: var(--inter) !important;
    font-size: 22px !important;
    line-height: 26px !important;
    font-weight: 300 !important;
    display: flex !important;
    text-align: left !important;
}


.bg-color-testmonial {
    background-color: var(--bg-color-greywhite) !important;
}

.testimoninal-height-ad {
    margin-bottom: 5px;
    padding: 80px 0px !important;
}

.success-stories-row {
    display: flex !important;
    margin-right: 12px !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-bottom: 16px !important;
}

.success-stories-row h2 {
    font-family: var(--test-n-2) !important;
    font-style: normal !important;
    font-weight: 500 !important;
    font-size: 40px !important;
    line-height: 48px !important;
    color: var(--text-color) !important;
}

.mb-4 {
    margin-bottom: 16px !important;
}

.navigation-arrows {
    display: flex !important;
    gap: 8px !important;
}

.arrow-btn-ad {
    font-size: 40px !important;
    cursor: pointer !important;
    border: none !important;
    background-color: transparent !important;
    color: #7a7979 !important;
    font-weight: 900 !important;
    transition: color 0.3s ease !important;
}

.arrow-btn-ad.active {
    color: #00335E !important;
}

/* .img-testmonial {
    height: 549px !important;

} */
.bi-arrow-right-short::before {
    content: "\f135";
    color: #00335E;
}

/* <!-- Success Stories-section-End --> */



/* <!-- Insights-Section-Start --> */
.maininsights {
    margin: 50px 0px;
}

.card-ad {
    position: relative;

    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.card-1_ad {
    position: relative;

    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay for Text */
.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgb(0 0 0 / 25%);
    color: white;
    padding: 10px;
    box-sizing: border-box;
    height: 100%;

    .set-position {
        position: absolute;
        bottom: 10px;
        padding: 10px;


        small {
            display: block;
            font-size: 0.8rem;
            margin-bottom: 8px;
            font-size: 16px;
            font-family: var(--inter);
            font-weight: 400;
            line-height: 16px;

        }

        h5 {
            font-size: 26px;
            font-family: var(--inter);
            font-style: normal;
            font-weight: 600;
            margin: 0;
        }
    }
}




.set-label-add {
    font-family: var(--test-n-2);
    font-style: normal !important;
    font-weight: 500 !important;
    font-size: 40px;
    line-height: 40px;
}





.gap_y {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.row .card-1_ad {
    height: 618px;
}

.row .card-ad {
    height: 294px;
}

/* <!-- Insights-Section-End --> */
.sponsor {
    background-color: var(--bg-color-greywhite) !important;
    padding: 30px 0px;

    .container {
        col-4 {
            font-family: var(--test-n-2) !important;
            font-size: 20px !important;
            line-height: 28px !important;
            font-weight: 400 !important;
        }

        h2 {
            font-family: var(--test-n-2) !important;
            font-style: normal !important;
            font-weight: 500 !important;
            font-size: 40px !important;
            line-height: 48px !important;

        }

        h5 {

            font-family: var(--test-n-2) !important;
            font-style: normal !important;
            font-weight: 500 !important;
            font-size: 20px !important;
            line-height: 28px !important;
        }
    }



    .sponsor-logo {
        max-width: 100px;
        margin: auto;
    }

    .carousel-indicators {
        button {
            width: 7px !important;
            height: 7px !important;
            border-radius: 50% !important;
            background-color: #f4f4f456;
            transition: background-color 0.3s ease;
        }
    }

    .carousel-indicators .active {
        background-color: var(--bg-white);
        border-radius: 50% !important;
    }

    .carousel-item img {
        border-radius: 10px !important;
    }

    .carousel-item.active {
        border-radius: 10px !important;
    }

    .carousel-inner {
        border-radius: 10px !important;
        overflow: hidden !important;
    }

    .carousel-item {
        border-radius: 10px !important;
    }

    .carousel-item img {
        width: 100% !important;
        height: 400px !important;
        object-fit: inherit;
    }

    .card {
        height: 400px !important;
        background-color: white !important;
        box-shadow: rgb(50 50 93 / 5%) 0px 0px 4px 1px !important;

        display: flex !important;
        justify-content: center !important;
        border: none !important;
        border-radius: 10px !important;

        img {
            height: 254px !important;
            object-fit: contain !important;
        }

        button {
            border: 1px solid var(--bg-blue) !important;
            border-radius: 50% !important;
            height: 40px !important;
            width: 40px !important;

            svg {
                display: flex !important;
                align-content: center !important;
                justify-content: center !important;
                align-items: center !important;
                position: relative !important;
                top: -7px !important;
                left: -11px !important;
                fill: #00335e !important;

                path {
                    fill: #00335e !important;

                }

            }
        }
    }


}

#requirementModal {
    #buy-popup {
        /* height: 424px;
        width: 420px; */
    }

    #buy-popup .btn-close {
        position: relative;
        top: -32px;
        color: #000000 !important;
        padding: 10px;
        background-color: #F4F4F4;
        border-radius: 100px;
        font-size: 12px;
    }

    .modal-header {
        border-bottom: none;
        padding: 20px 20px 10px 20px !important;
    }

    .modal-body {
        padding: 20px;
    }

    #buy-popup p {
        font-family: 'Inter';
        font-style: normal;
        font-weight: 400;
        font-size: 20px;
        line-height: 28px;
        color: #111111;
        margin: 5px 5px 10px 5px;

    }

    .login-btn,
    .create-btn {
        width: 100%;
        padding: 10px;
        margin: 8px 0;
        border-radius: 25px;
        font-weight: 500;
    }



    .login-btn {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 14px 20px;
        gap: 10px;
        /* width: 360px; */
        height: 52px;
        background: var(--bg-red);
        border-radius: 100px;
        font-family: 'Inter';
        font-style: normal;
        font-weight: 700;
        font-size: 16px;
        line-height: 16px;
        text-align: center;
        text-transform: capitalize;
        color: #FFFFFF;
        border: none;
    }

    .create-btn {
        background: white;
        color: var(--bg-blue);
        border: 1px solid var(--bg-blue);
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 14px 20px;
        gap: 10px;
        /* width: 360px; */
        height: 52px;
        border-radius: 100px;
        font-family: 'Inter';
        font-style: normal;
        font-weight: 700;
        font-size: 16px;
        line-height: 16px;
        text-align: center;
        text-transform: capitalize;

    }

    .divider {
        /* position: relative;
        text-align: center; */
        margin: 30px 0;
        font-family: 'Test National 2';
        font-style: normal;
        font-weight: 600;
        font-size: 18px;
        line-height: 26px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #111111;
    }

    .divider::before,
    .divider::after {
        content: '';
        position: absolute;
        top: 50%;
        width: 35%;
        height: 1px;
        background-color: #8A8A8A;
        transform: translateY(-50%);
    }

    .divider::before {
        left: 20px;
    }

    .divider::after {
        right: 20px;
    }

    .modal-title {
        font-family: var(--test-n-2);
        font-style: normal;
        font-weight: 600;
        font-size: 30px;
        line-height: 38px;
        color: #111111;
    }



}

.red {
    color: #ee2110 !important;
}