html {
    scroll-behavior: smooth;
    font-size: 16px;

}

* {
    box-sizing: border-box;
    list-style: none;
    text-decoration: none !important;
    padding: 0;
    margin: 0;
}

body {
    overflow-x: hidden;
    font-family: "Inter", sans-serif;
    background-color: #060d15;
    background-color: white;
    /* width: 100%;
    height: 100%;
    position: relative; */
    color: black;
    line-height: normal;

}



ul {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    padding: 0;
    margin: 0;
}

.cursor {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: black;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999999;
    color: white;
    font-size: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* mix-blend-mode: difference; */
    pointer-events: none;
    overflow: hidden;

}

/* header-css-start */
#header {
    width: 100%;
    display: inline-block;
}

.header-up {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.header-up li {
    color: white;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-top {
    padding: 10px 0;
    background-color: black;
}

.header-up li button {
    background: white;
    outline: 0;
    border-radius: 20px;
    border: 0;
    padding: 5px 16px;
    display: inline-block;
}

.header-up li button img {
    width: 18px;
    margin-right: 1px;
}

/* header-bottom-css */
.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 160px;

}

.logo a {
    display: inline-block;
}

.logo a img {
    width: 100%;
}

.nav-bar ul {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.nav-bar>ul>li>a {
    color: black;
    display: flex;
    padding: 10px 0;
    overflow: hidden;
}

.nav-bar>ul>li>a:hover span {
    animation: fadeIn 0.4s ease 0.1s forwards;
}

.nav-bar>ul>li>a span:nth-child(1) {
    animation-delay: 0.1s;
}

.nav-bar>ul>li>a span:nth-child(2) {
    animation-delay: 0.2s;
}

.nav-bar>ul>li>a span:nth-child(3) {
    animation-delay: 0.3s;
}

.nav-bar>ul>li>a span:nth-child(4) {
    animation-delay: 0.4s;
}

.nav-bar>ul>li>a span:nth-child(5) {
    animation-delay: 0.5s;
}

.nav-bar>ul>li>a span:nth-child(6) {
    animation-delay: 0.6s;
}

.nav-bar>ul>li>a span:nth-child(7) {
    animation-delay: 0.7s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(60px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.left-navs {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.login-signup {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 2px #0000002b;
}

.login-signup a {
    display: flex;
    overflow: hidden;
}

.login-signup a img {
    width: 30px;
}

.login-signup a img {
    width: 22px;
    transform: rotate(180deg);

}

.login-signup a:hover img {
    animation: lefttoright 0.55s forwards;
}

@keyframes lefttoright {
    49% {
        transform: translateX(40px);
    }

    50% {
        opacity: 0;
        transform: translateX(-40px);
    }

    51% {
        opacity: 1;
    }
}

select#languageDropdown {
    outline: none;
    background: transparent;
    border: 0;
    cursor: pointer;
}

select#languageDropdown option {
    color: black;
}

.header-bottom {
    background: white;
    padding: 16px 0;
    box-shadow: 0 0 10px #00000012;
}

.how-to-use {
    display: flex;
    width: 100%;
    position: fixed;
    justify-content: center;
    align-items: center;
    top: 0px;
    display: none;
    height: 100vh;

}

.how-to-use::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: black;
    opacity: 0.7;
    content: "";
    height: 100%;
    z-index: -1;
}

.play-video .how-to-use {
    display: flex;
}

.how-to-use .video-pl {
    width: 80%;
}

.cross-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    z-index: 999;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 0 5px #00000040;
}

.cross-btn img {
    width: 30px;
}

/* banner-css-start */
#banner-main {
    display: flex;
    width: 100%;
    padding: 60px 0;
}

.banner-main {
    display: flex;
    width: 100%;
}

.banner-left .tegline {
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgb(229 229 229);
    padding: 4px 12px;
    border-radius: 40px;
    color: black;
    display: inline-block;

}

.banner-left {
    width: 50%;
}

.banner-right {
    width: 50%;
}

.banner-right video {
    width: 100%;
}

.banner-right img {
    width: 100%;
    height: auto;
}


.banner-left h1 {
    font-size: 46px;
    font-weight: 700;
}

.banner-left p {
    font-size: 16px;
    color: hsl(0 0% 27%);
}

.banner-left {
    width: 50%;
    display: flex;
    gap: 15px;
    flex-direction: column;
}

.btn-1 a {
    display: flex;
    padding: 14px 30px;
    background: #0511AA;
    background: linear-gradient(25deg, rgba(5, 17, 170, 1) 27%, rgba(2, 37, 253, 1) 100%);
    color: white;
    border-radius: 120px;
    transition: 0.5s;
}

.btn-1 {
    display: flex;
    margin-top: 10px;
}

.btn-1 a:hover {
    background: #0511AA;
    background: linear-gradient(205deg, rgba(5, 17, 170, 1) 27%, rgba(2, 37, 253, 1) 100%);
    transition: 0.5s;

}

.typing-text {
    height: 55px;
    overflow: hidden;
    line-height: 20px;
}


.typing-text li {
    height: 80px;
    position: relative;
    animation: animatetotop 6s steps(3) infinite;
}

@keyframes animatetotop {
    0% {
        top: 0;
    }

    100% {
        top: -240px;
    }
}

.typing-text li span {
    display: inline-block;
    position: relative;
    line-height: 1;
    padding-right: 50px;
}

.typing-text li span::after {

    content: "";
    position: absolute;
    top: -1px;
    right: 0;
    bottom: -2px;
    left: 0;
    border-left: 1px solid #fff;
    background-color: white;
    animation: animatetoright 1s steps(10) infinite alternate;
    margin-right: -10px;
}

@keyframes animatetoright {
    0% {
        left: 0;
        margin-right: auto;
    }

    100% {
        left: 100%;
        margin-left: .6em;
        margin-right: -.6em;
    }
}

/* client-logo-css */

#client-logo {
    display: flex;
    width: 100%;
    background-color: #f5f5f5;
    padding: 60px 0;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}

.sub-heading h2 {
    font-size: 36px;
    font-weight: 500;
}

.client-logo-slider {
    width: 100%;
    display: flex;
    flex-direction: column;

}

.sub-heading {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    flex-direction: column;
    gap: 15px;
}

.sub-heading p {
    max-width: 80%;
    margin: auto;
    text-align: center;
}

.logo-container {
    white-space: nowrap;
    overflow: hidden;
}

.logo-track {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    margin-top: 10px;
    overflow-x: auto;
}

.logo-track img {
    height: 50px;
    margin: 0 20px;
}

.client-logo-track {
    display: flex;
    flex-wrap: nowrap;
    animation: repeat-scroll 10s linear infinite;
}

@keyframes repeat-scroll {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-100%);
    }
}

@keyframes repeat-scroll-1 {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0%);
    }
}

.logo-track::-webkit-scrollbar {
    display: none;
}

/* online-presence-css */



#online-presence {
    display: flex;
    width: 100%;
    padding: 60px 0;
}

.presence-title {
    display: flex;
    flex-direction: column;
    justify-content: center;

    gap: 15px;
    margin-top: 60px;
    margin-bottom: 10px;
}

.presence-title h3 {
    font-size: 42px;
    font-weight: 400;
}

.online-profile {
    column-count: 3;
    column-gap: 20px;
    position: relative;
    margin-top: 60px;
}

.profile-image img {
    width: 100%;
}

.profile-image {
    margin-bottom: 20px;
}

.profile-image video {
    width: 100%;
    border-radius: 5px;
}

.presense-online {
    width: 80%;
    max-width: 100%;
    margin: auto;
}

.profile-image.cards-track-m {
    position: absolute;
    width: 32%;
    margin-bottom: 0;
    top: 25%;
    z-index: 99;
}

.profile-image.cards-track-m.right-card img {
    border-radius: 5px;
}

.profile-image {
    margin-bottom: 60px;
}

.left-card,
.right-card {
    will-change: transform;
}

/* presence-box-css */

.presence-boxes {
    display: flex;
    /* gap: 20px; */
    margin-top: 40px;
    justify-content: space-between;
}

.presece-box {
    padding: 20px 16px;
    background: #f5f5f5;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 6px;
    width: 24%;
    transition: 0.3s;
}

.presece-box:hover {
    transform: translateY(-10px);

}

.pre-box-icon img {
    height: 45px;
}

.presece-box p {
    font-size: 18px;
}

/* does-work-css */

div#does-work {
    padding: 60px 0;
    background: black;
}

.does-work-heading h2 {
    font-size: 42px;
    font-weight: 600;
    color: white;
}

.does-work-heading p {
    font-size: 16px;
    color: white;
}

.does-work-heading {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 70%;
}

.counter-boxes {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.counter-box {
    padding: 26px 20px;
    background-color: #24242480;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 6px;
    width: 32%;
    border: 1px solid #ffffff1a;
    position: relative;
}

.counter-box::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: inherit;
    background: linear-gradient(157deg, rgba(255, 255, 255, 0.40) 2.12%, rgba(255, 255, 255, 0.00) 39%, rgba(255, 255, 255, 0.00) 54.33%, rgba(255, 255, 255, 0.10) 93.02%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
}

.counter-number h4 {
    font-size: 70px;
    color: white;
}

.counter-number p {
    color: white;
    font-size: 16px;
}

.counter-number {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ----- */
section.how-it-does {
    background-color: black;
    color: white;

}

.how-it-works {
    grid-column-gap: 5rem;
    grid-row-gap: 4rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    align-items: stretch;
    display: grid;
    position: relative;
}

.step-images img {
    width: 50%;
    position: absolute;
}

.steps {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
}

.step {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100vh;
    display: flex;
    gap: 30px;
}

.step-images {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    display: flex;
    position: sticky;
    top: 0;
}

.step-point {
    font-size: 16px;
    font-weight: 600;
    color: white;
    position: relative;
}

.step-point::after {
    content: "";
    position: absolute;
    bottom: -10px;
    width: 80%;
    height: 1px;
    background-color: white;
    left: 0;
}

.step-heading {
    font-size: 64px;
    font-weight: 700;
}

.step-sub {
    font-size: 18px;
}

.step-images img {

    opacity: 0;
}

.step-image.active {
    opacity: 1;
}

/* features-css */

#features {
    display: flex;
    width: 100%;
    padding: 60px 0;
    overflow-x: hidden;
}

.feature-heading h2 {
    font-size: 64px;
}

/* .feature{
    display: flex;
  } */



.features-grid {
    display: flex;
    gap: 20px;
    align-items: stretch;
}

.column-left,
.column-right {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.left-bottom {
    display: flex;
    gap: 20px;
}

.left-bottom .feature {
    width: 50%;
}

.feature {
    padding: 24px;
    border-radius: 16px;
    background: #f3f3f3;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}


.neelteck-product-details .tegline {
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgb(229 229 229);
    padding: 4px 12px;
    border-radius: 40px;
    color: #0512ad;
    display: inline-block;
}

/* Individual Backgrounds */
.scanner {
    background: #8a73ff;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding-bottom: 0px;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sync {
    background: black;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sync .feature-content {
    gap: 10px;
}

.crm {
    background: #00d3ec;
    color: #000;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.share {
    background: #eaeeff;
    color: #000;
    display: flex;
    gap: 20px;
    padding-bottom: 0;
}

.share .feature-image-b img {
    width: 250px;
    height: 100%;
}

.share .feature-content {
    justify-content: center;
    gap: 10px;
}

.signature {
    background: #0b7dff;
    color: white;
    height: 100%;
    display: flex;
    align-items: center;

}

.feature-heading {
    margin-bottom: 40px;
}

.feature h3 {
    font-size: 32px;
}

.feature .heading-feature {
    font-size: 24px;
}

.feature-image-b img {
    width: 100%;
}

.sync .feature-image-b img {
    width: 40px;
}

.crm .feature-image-b img {
    width: 40px;
}

.crm .feature-content {
    gap: 10px;
}

/* product-range-css */

div#neeleck-products {
    display: flex;
    width: 100%;
    padding: 60px 0;
}

.neelteck-products {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 100px;
}

.neelteck-product-left {
    width: 50%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.neelteck-product-details {
    width: 50%;
}


.sub-images-products {
    display: flex;
    gap: 10px;
    margin: 2px;
}

.neelteck-product-img img {
    width: 100%;
}

.sub-product-img {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    border-radius: 2px;
    cursor: pointer;
    box-shadow: 0 0 2px #0000002f;

}

.sub-product-img img {
    max-width: 90px;

}

.product-heading {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
}

.product-heading h2 {
    font-size: 62px;
    max-width: 75%;
    margin: auto;
}

.neelteck-product-details h3 {
    font-size: 32px;
    font-weight: 600;
}

.neelteck-product-details h3 span {
    font-size: 18px;
    display: flex;
    font-weight: 400;
}

.price-product {
    text-decoration: line-through !important;

    font-size: 28px;
    font-weight: 700;
    color: #888888;

}


.item-meta {
    display: flex;
    align-items: center;
}

.discount-original-price {
    font-size: 28px;
    font-weight: 700;
    color: #d33f49;
    padding-left: 20px;

}

.offer-per {
    font-size: 14px;
    padding-left: 6px;
}

/* .product-overview p{
    color: #58616e;
} */

.neelteck-product-details {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-overview {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-buulet-point {
    padding: 30px 20px;
    background: #f5f5f5;
    border-radius: 4px;
}

.product-buulet-point ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 10px;
}

.product-buulet-point ul li {
    list-style: disc;
}

.btn-1 {
    gap: 20px;
}

.neelteck-product-img {
    background: red;
}

.tabcontent {
    display: none;
    position: relative;
    padding: 50px 0;

}

.tabcontent.active-1 {
    display: flex;
}

.swiper {
    width: 190px;
    height: 355px;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    overflow: hidden;
    object-position: top;
}

.swipe-left {
    position: absolute;
    z-index: 99;
    bottom: 0;
    right: 0;
}

.swipe-left img {
    width: 60px;
    height: 60px;
}

.neelteck-products:last-child {
    margin-bottom: 0;
}

.product-img-back {
    display: none;
}

.sub-main-img:hover .product-img-back {
    display: block;
}

.sub-main-img:hover .product-img-front {
    display: none;
}

.product-img-back img {
    width: 100%;
}

/* comperison-css */
section#comperison {
    display: flex;
    width: 100%;
    padding-top: 60px;
    overflow: hidden;
}

.compare-card {
    display: flex;
    gap: 20px;
    max-width: 95%;
    margin: auto;
}

.pepar-card {
    width: 50%;
    padding: 22px;
    background-color: #f5f5f5;
    border-radius: 10px;
    position: relative;
}

.nfc-card-neel {
    width: 50%;
    padding: 22px;
    border-radius: 10px;
    position: relative;
    background-color: #0582ff;
}

.nfc-card-neel img {
    width: 200px;
    position: absolute;

    bottom: -50px;
    right: -70px;

}

.pepar-card h5 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 16px;
}

.nfc-card-neel h5 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 16px;
}

.peparcard-ul ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: white;
    padding: 16px;
    border-radius: 10px;
    min-height: 500px;
}

.peparcard-ul ul li {
    font-weight: 500;
    position: relative;
    padding-left: 35px;
}

.peparcard-ul ul li::after {
    position: absolute;
    top: -2px;
    left: 0;
    width: 24px;
    height: 24px;
    content: "\f00c";
    background-color: #0582ff;
    color: white;
    font-family: 'fontawesome';
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}

.nfc-card-neel h5 {
    color: white;
}

.pepar-card img {
    width: 200px;
    position: absolute;
    bottom: -50px;
    left: -70px;
}

#comperison .btn-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    flex-direction: column;
    gap: 10px;
}

/* ecofreindly-css */
#eco-friendly {

    padding-top: 60px;
    width: 100%;
    background-color: white;
}

.eco-system {
    /* display: flex; */
    background-color: green;
    padding: 60px 0;
    border-radius: 60px 60px 0 0;
    background-image: url('../images/leaves.svg'), linear-gradient(141deg, #00b43f, #000);
    background-position: 100% 0, 0 0;
    background-repeat: no-repeat, repeat;
    background-size: cover;
}

.eco-system .counter-box {
    background-color: #00581f85;
}

.eco-system .does-work-heading h2 {
    font-size: 56px;
}

.eco-friendly .does-work-heading span {
    color: white;
    position: relative;
    display: block;
}

.eco-friendly .does-work-heading span::after {
    content: "";
    position: absolute;
    bottom: -10px;
    width: 80%;
    height: 1px;
    background-color: white;
    left: 0;
}

.eco-span {
    display: flex;
}

/* whatapp-chat-css */
.whats-app {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: end;
    gap: 8px;
    z-index: 99;
    flex-direction: column;

}

.whatsapp-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #2db742;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    cursor: pointer;
    position: relative;

}

.btn-popup-text {
    font-size: 12px;
    background-color: #f5f7f9;
    padding: 8px;
    border-radius: 2px;
    transition: 0.4s;
    position: relative;
    cursor: pointer;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 10px;

}

.whatsapp-icon .fa-xmark {
    display: none;
}

.whatsapp-body {
    display: flex;
    border-radius: 10px;
    flex-direction: column;
    background-color: white;
    width: 340px;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
    transition: 0.5s;
    position: fixed;
    right: 25px;
    bottom: 90px;
}

.whatsapp-headr {
    display: flex;
    padding: 20px;
    background: #2db742;
    color: white;
    gap: 10px;
}

.wa-header-icon {
    font-size: 40px;
}

.wa-header-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.wa-header-text p {
    font-size: 12px;
}

.wa-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;

}

.wa-body span {
    font-size: 12px;
    color: #a5abb7;
}

.wa-profile {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.wa-profile {
    width: 48px;
    height: 48px;
    background: url('../images/customer-care.png') center center / cover no-repeat;
}

.whatsapp-dp {
    padding: 10px;
    background-color: #f5f7f9;
    border-left: 2px solid #2db742;
    display: flex;
    align-items: center;
    gap: 10px;

}

.wa-pf-text h6 {
    font-size: 14px;
    color: black;
}

.wa-pf-text span {
    font-size: 10px;
}

.wa-pf-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 48px);
}

.wa-pf-wa i {
    font-size: 34px;
    color: #2db742;
}

.whatsapp-toggle .whatsapp-body {
    opacity: 1;
    overflow: visible;
    visibility: visible;
    bottom: 110px;
}

.whatsapp-toggle .btn-popup-text {
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transform: translateY(20px);
    position: relative;
    pointer-events: none;

}

.powerd-by-logo img {
    width: 14px;
}

.powerd-by-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.whatsapp-icon::after {
    position: absolute;
    background: url(../images/cross.svg) 50% / 30px auto no-repeat;
    background-size: 12px auto;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: 0.3s;
    transform: scale(0) rotate(-1turn);
}

.whatsapp-icon::before {
    position: absolute;
    background: url(../images/whats-app.svg) 50% / 30px auto no-repeat;
    background-size: 25px auto;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: 0.3s;


}

.whatsapp-toggle .whatsapp-icon::after {
    transform: scale(1) rotate(0);
    opacity: 1;
}

.whatsapp-toggle .whatsapp-icon::before {
    opacity: 0;
    transform: scale(0) rotate(-1turn);

}

/* real-section-css */

.reel-container {
    position: fixed;
    left: 10px;
    bottom: 20px;
    width: 120px;
    height: 204px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    z-index: 9999;
    transition: all 0.4s ease;
    cursor: pointer;
}

.reel-container.zoomed {
    width: 200px;
    height: 357px;
}

.reel-close-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    background: white;
    color: black;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 20px;
    font-weight: bold;
    z-index: 10000;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reel-close-btn img {
    width: 15px;
}

.reel-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reel-close-btn img {
    width: 15px;
}

/* nfc-box-css */

#np-info {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.info-right-img img {
    width: 100%;
    height: 100%;
}

.info-left {
    padding: 60px 40px;
}

.info-left {
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-details-paragraph {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.for-professan {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.for-professan h5 {
    font-weight: 600;
}

.for-professan ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 40px;
}

.for-professan ul li {
    list-style: disc;
}

.info-right-img {
    height: 100%;
}

.info-left h3 {
    font-size: 34px;
    font-weight: 700;
}

.for-professan p {
    font-size: 16px;
    font-weight: 500;
}

.secure-img {
    filter: invert(1);
}

.logo-track.reverse .client-logo-track {
    animation: repeat-scroll-1 10s linear infinite;
}

.refund-u {
    background-color: black;
    border-radius: 16px;
}

/* faq-css */
#faqs-accordians {
    padding-top: 40px;
    padding-bottom: 60px;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accordion__item {
    background-color: white;
    border-top: none;
    transition: 0.5s;
}

.accordion__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    cursor: pointer;
    background-color: black;
    position: relative;

}

.accordion__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    padding: 0px 20px;
    color: white;
    background-color: black;
}

.accordion__title h3 {
    font-size: 16px;
    font-weight: 500;
    color: white;
    margin-bottom: 0;
}

.icons-plus-minus span {
    font-size: 24px;
    color: white;
    transition: 0.5s;

}

.tab-open .icons-plus-minus span:nth-child(1) {
    display: none;
}

.tab-open .icons-plus-minus span:nth-child(2) {
    display: block;
}

.accordion__content p {
    padding-bottom: 15px;
    text-align: justify;
    font-style: italic;
    display: flex;
    flex-direction: column;
    gap: 1px;
    font-size: 14px;
}

.accordion__item:hover .accordion__title .icons-plus-minus {
    transform: rotate(360deg);
    transition: 0.3s;
}

.icons-plus-minus span:nth-child(2) {
    display: none;
}

.faqs-acco {
    max-width: 75%;
    margin: auto;
}

/* features-slider-css */
#features-slider {
    padding: 60px 0;
    background-color: black;
    overflow-x: hidden;
}

#features-slider .product-heading h2 {
    color: white;
}

#features-slider .product-heading {
    display: flex;
    flex-direction: column;
    grid-area: 16px;
}

#features-slider .product-heading p {
    color: white;
    font-size: 18px;
}

.feature-slider-boxes {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-slider-details {
    color: white;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.feature-slider-details h5 {
    font-size: 16px;
}

.feature-slider-details p {
    font-size: 14px;
    color: #c2c2c2;
}

.feature-swiper-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

/* footer-css */

.logo-footer {
    width: 250px;
    margin-bottom: 25px;
}

.logo-footer img {
    width: 100%;
}

footer.main-footer .widgets-section {
    padding-top: 80px;
    padding-bottom: 60px;

}

.widget {
    margin-bottom: 40px;
}

.about-widget_text {
    font-size: 16px;
    line-height: 30px;
    color: black;
    font-weight: 400;
    position: relative;
    margin-bottom: 20px;
    /* text-align: justify; */
    padding-right: 44px;
}

.about-widget_phone {
    font-size: 24px;
    line-height: 22px;

    font-weight: 700;

    margin: 25px 0;

    transition: .5s;
}

.about-widget_phone a {
    color: black;
}

.widget {
    margin-bottom: 40px;
}

h4.widget-title {
    font-size: 22px;
    color: black;
    font-weight: 600;

    position: relative;
    margin-bottom: 20px;
}

.links-widget li {
    margin-bottom: 2px;
}

footer.main-footer {
    background-color: white;
}

/* .widget-content-1>ul>li {
    width: 49%;
    display: inline-block;
} */

.widget-content>ul>li>a {
    color: black;

}

.contact-widget_address-title {
    font-size: 20px;
    font-weight: 700;
}

.contact-widget_mail-title {
    font-size: 20px;
    font-weight: 700;
}



.contact-widget_mail.mb-40 a {
    color: black;

}

.footer-bottom {
    padding: 15px 0;
    background-color: black;
}

.bottom-footer {
    display: flex;
    justify-content: center;
    align-items: center;
}

.copyright {
    color: white;
}

.powerd-by {
    color: white;
}

.powerd-by a {
    color: white;
}

.desk-data>li>a>span {
    font-style: italic;
    font-size: 18px;
}

.desk-data>li>span {
    font-style: italic;
    font-size: 18px;
}

.widget-content ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.widget-content ul li {
    list-style: disc;
}

.socail-media ul {
    display: flex;
    gap: 10px;

}

.socail-media ul li a {
    font-size: 18px;
    color: white;
    background-color: black;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
}

.socail-media ul li a:hover {
    transform: translateY(-8px);
}

.widget-content {
    padding-left: 20px;
}

.contact-widget_mail {
    margin-top: 10px;
}

.contact-widget_address {
    margin-top: 10px;
}

/* responsive-nav-css */

.responsive-nav {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #f3ebdf;
    z-index: 9;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    padding-bottom: 20px;
    overflow-y: auto;
    z-index: 99999;
}

div#header-menu {
    width: 100%;
    display: flex;
    padding: 10px 0;
    position: relative;
    background-color: transparent;
    box-shadow: none;
}

.responsive-menu {
    width: 100%;
    max-width: 80%;
    margin: auto;
    padding: 10px;
    display: flex;
    justify-content: space-between;
}

.responsive-navbar {
    display: flex;
    flex-direction: column;
}

.responsive-content {
    display: flex;
    gap: 50px;
}

.responsive-content ul {
    display: flex;
    flex-direction: column;

}

.responsive-content ul li a {
    line-height: 1;
    padding: 10px;
    font-size: 2rem;
    display: inline-block;
    color: transparent;
    -webkit-text-stroke: 1px #000;

}

.responsive-content ul li a span {
    font-size: 1.3rem;
    margin-right: 20px;
    width: 20px;
    display: inline-block;
    color: black;
}

.title-responsive-nav {
    font-size: 0.8rem;
    color: #8f8e8e;
    height: 30px;
}

.mobile-time {
    max-width: 95%;
    width: 100%;
    margin: auto;
}

.media-responsive {
    display: flex;
    gap: 30px;
}

.media-responsive ul li a {
    color: black;
    font-size: 0.9rem;
    padding: 5px;
    display: flex;
}

#nav-mobile {
    opacity: 0;
    visibility: hidden;
}

.befor-nav-animate {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    height: 100%;
    /* z-index: -1; */

}

.before-nav-anim {
    width: 25%;
    background-color: black;
    height: 100%;

}

div#menu-btn-1 {
    display: flex;
    align-items: center;
    gap: 5px;
    display: none;
}

.demo {
    display: flex;

}

.demo a {
    display: flex;
    padding: 10px 24px;
    background: #0511AA;
    background: linear-gradient(25deg, rgba(5, 17, 170, 1) 27%, rgba(2, 37, 253, 1) 100%);
    color: white;
    border-radius: 120px;
    transition: 0.5s;
}

div#close-btn {
    display: flex;
    align-items: center;
    gap: 5px;
}


/* testimonials-css */

section#reviews {
    padding: 60px 0;
    display: flex;
}

.reviws-heading {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.reviws-heading h2 {
    font-size: 48px;
    font-weight: 600;
}

.reviws-heading {
    max-width: 900px;
    margin: auto;
    text-align: center;
    margin-bottom: 40px;

}

.our-reviews {
    column-count: 3;
    column-gap: 20px;

}

.reviewer-img img {
    width: 100%;

}

.review-box {
    break-inside: avoid;
    background-color: #f5f5f5;
    padding: 30px 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.review-name {
    font-size: 20px;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    gap: 5px;

}

.review-name span {
    font-size: 12px;
}

.review-rating i {

    color: transparent;
    background: linear-gradient(25deg, rgba(5, 17, 170, 1) 27%, rgba(2, 37, 253, 1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.review-text p {
    color: hsl(0 0% 27%);
}

.reviewer-img {
    border-radius: 10px;
    overflow: hidden;
}

/* nfc-card-css */

#nfc-card-details {
    padding: 60px 0;
    display: flex;
    overflow-x: hidden;
}

/* .presense-online {
    width: 85%;
} */


.nfc-card-img img {
    width: 100%;
}

.nfc-card {
    display: flex;
    align-items: center;
    justify-content: center;

}

.plus-ripple {
    width: 30px;
    height: 30px;
    text-align: center;
    border-radius: 50%;
    background-color: white;
    color: black;
    display: flex;
    text-align: center;
    font-size: 18px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    position: absolute;
}

.plus-ripple::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 50px;
    line-height: 104px;
    text-align: center;
    border-radius: 100%;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    -webkit-animation: rippleOne 3s infinite;
    animation: rippleOne 3s infinite;
}

.plus-ripple::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 100%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    width: 40px;
    height: 40px;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
    -webkit-animation: rippleOne 3s infinite;
    animation: rippleOne 3s infinite;
}

@keyframes rippleOne {
    70% {
        box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    }
}

.plus-ripple img {
    width: 14px;
}

.nfc-card-img {
    width: 400px;
    position: relative;
}

.nfc-card-img ul {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.nfc-card-img ul li:nth-child(1) {
    position: absolute;
    top: 43%;
    left: 46%;
    transform: translate(50%, 50%);
}



.nfc-card-img ul li:nth-child(2) {
    position: absolute;
    top: 17px;
    right: 80px;
}


.nfc-card-img ul li:nth-child(3) {
    position: absolute;
    right: 80px;
    bottom: 50px;

}

.nfc-card-img ul li:nth-child(4) {
    position: absolute;
    left: 30px;
    bottom: 50px;
}

.nfc-card-img ul li:nth-child(5) {
    position: absolute;
    top: 17px;
    left: 30px;
}

.nfc-card-details {
    position: relative;
    padding: 140px 0;
}

.nfc-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 520px;
    height: 520px;
    background-color: #dce9fc;
    z-index: -1;
    border-radius: 50%;
    animation: animate-border-radius 7s linear infinite running;

}

@keyframes animate-border-radius {
    0% {
        border-radius: 30% 70% 38% 62% / 47% 37% 63% 53%;
    }

    20% {
        border-radius: 42% 58% 58% 42% / 34% 41% 59% 66%;
    }

    40% {
        border-radius: 56% 44% 62% 38% / 44% 22% 78% 56%;
    }

    60% {
        border-radius: 60% 40% 38% 62% / 52% 35% 65% 48%;
    }

    80% {
        border-radius: 60% 40% 49% 51% / 52% 61% 39% 48%;
    }

    100% {
        border-radius: 30% 70% 38% 62% / 47% 37% 63% 53%;
    }
}

.nfc-hover-info {
    width: 180px;
    display: flex;
    background-color: white;
    position: absolute;
    top: -100px;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    padding: 10px;
    max-height: 60px;
    opacity: 0;
    transition: 0.3s;
}

.nfc-card-img ul li:hover .nfc-hover-info {
    top: -80px;
    opacity: 1;
}

.nfc-hover-img img {
    width: 50px;
    height: 50px;
}

.nfc-hover-text h5 {
    font-size: 14px;
}

.nfc-hover-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: start;
    text-align: left;
}

.nfc-hover-text p {
    font-size: 12px;
}

#typin-effect {
    display: block;
}

.copyright {
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

section#step-mobile-view {
    display: none;
}

.swiper-3d .swiper-slide-shadow {
    background: none;
}

.refund-you {
    overflow-x: hidden;
}


/* responsive-css */

@media screen and (max-width: 1200px) {
    .nav-bar ul {
        gap: 25px;
    }

    .logo {
        width: 140px;
    }

    .left-navs {
        gap: 20px;
    }
}


@media screen and (max-width:992px) {
    .responsive-content ul li a {
        font-size: 1.8rem;
    }

    .responsive-menu {
        max-width: 95%;
    }

    #header-menu .demo {
        display: block;
    }

    #header-menu .language-select {
        display: block;
    }


    .demo {
        display: none;
    }

    .language-select {
        display: none;
    }

    div#menu-btn-1 {
        display: flex;
    }

    .banner-main {
        flex-direction: column;
    }

    .banner-left {
        width: 100%;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .banner-right {
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .banner-left {
        text-align: center;
    }

    .banner-left h1 br {
        display: none;
    }

    .banner-left .tegline {
        font-size: 18px;
        font-weight: 400;
    }

    .banner-left h1 {
        font-size: 48px;
    }

    .typing-text li span {
        padding-right: 50px;
        padding-left: 50px;

    }


    .nav-bar {
        display: none;
    }

    .typing-text {
        height: 45px;
    }

    .sub-heading {
        text-align: center;
        gap: 10px;
    }

    .sub-heading p {
        max-width: 100%;
        text-align: center;
    }

    .presence-title {
        text-align: center;
    }

    .presece-box {
        width: 48%;
        padding: 40px 26px;
    }

    .presence-boxes {
        flex-wrap: wrap;
        row-gap: 20px;

    }

    .does-work-heading {
        width: 100%;
    }

    .counter-number h4 {
        font-size: 60px;
    }

    .counter-box {
        padding: 22px 16px;

    }

    .features-grid {
        flex-direction: column;
    }

    .swiper {
        width: 230px;
        height: 345px;
    }

    .features-grid {
        flex-direction: column;
    }

    .column-left,
    .column-right {
        width: 100%;
    }

    .feature-content.feature-content-sl {
        padding-right: 30px;
    }

    .product-heading h2 {
        font-size: 48px;
    }

    .neelteck-products {
        flex-direction: column;
    }

    .neelteck-product-left {
        width: 100%;
    }

    .neelteck-product-details {
        width: 100%;
    }

    .neelteck-products:nth-child(odd) {
        flex-direction: column-reverse;
    }

    .pepar-card {
        width: 100%;
    }

    .nfc-card-neel {
        width: 100%;
    }


    .pepar-card img {
        bottom: -10px;
        right: -40px;
        left: auto;
    }

    .compare-card {
        flex-direction: column;
        gap: 30px;
        max-width: 100%;

    }

    .does-work-heading h2 {
        font-size: 32px;

    }

    div#neeleck-products {
        padding-top: 0px;
    }

    .product-heading h2 {
        font-size: 42px;
    }

    .eco-system .does-work-heading h2 {
        font-size: 42px;
    }

    .reviws-heading h2 {
        font-size: 36px;
    }

    .nfc-card-details {
        padding: 100px 0;
    }

    .our-reviews {
        column-count: 2;
        column-gap: 20px;
    }

    .faqs-acco {
        max-width: 95%;
        margin: auto;
    }

    .location-time .demo {
        display: block;
    }

    .location-time .demo a {
        display: flex;

        justify-content: center;
    }
}

@media screen and (max-width:768px) {

    .container {
        max-width: 100%;
    }

    #step-mobile-view .step-first-mb4:nth-child(4) .first-step-mobile {
        background-color: #005ff7;
        border-radius: 60px 60px 0 0;
    }

    .step-first-mb4 {
        background: #1d24ca;
    }

    .responsive-content ul li a span {
        font-size: 1.2rem;
        margin-right: 15px;

    }

    .responsive-content {
        display: flex;
        gap: 30px;
    }

    .logo-track img {
        height: 35px;
        margin: 0 15px;
    }

    #online-presence {
        overflow: hidden;
    }

    .sub-heading h2 {
        font-size: 32px;
    }

    .presence-title h3 {
        font-size: 36px;
    }

    .sub-heading {
        margin-bottom: 25px;
    }

    .presence-title {
        margin-top: 30px;
    }

    section.how-it-does {
        display: none;
    }

    .counter-number p {
        font-size: 14px;
    }

    .counter-number h4 {
        font-size: 46px;
    }

    .does-work-heading h2 {
        font-size: 28px;
    }

    .feature-heading h2 {
        font-size: 46px;
    }

    .product-heading h2 {
        font-size: 36px;
        max-width: 100%;
    }

    .papercardul-img {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 20px;
    }

    .pepar-card img {
        position: inherit;
    }

    .nfc-card-neel img {
        position: inherit;
    }

    .counter-number {
        gap: 12px;
    }

    .reviws-heading h2 {
        font-size: 32px;
    }

    .info-left h3 {
        font-size: 28px;
    }

    .np-info-details {
        overflow-x: hidden;
    }

    .eco-system .does-work-heading h2 {
        font-size: 36px;
    }

    .responsive-content ul li a {
        font-size: 1.6rem;
    }

    /* steps-css */

    .step-mobile-res {
        display: flex;
        flex-direction: column;
    }

    .step-mobile-res {
        display: flex;
        flex-direction: column;

    }



    .step-mobile-text {
        display: flex;
        flex-direction: column;
        gap: 30px;
        align-items: start;
        color: white;
    }



    .step-mobile-img img {
        width: 100%;
    }

    #step-mobile-view {
        width: 100%;
        overflow-x: hidden;
    }

    .first-step-mobile {
        padding: 60px 10px;
        background: #000000;
    }

    #step-mobile-view .step-first-mb2:nth-child(2) .first-step-mobile {
        background-color: #1a1f5b;
        border-radius: 60px 60px 0 0;
    }

    #step-mobile-view .step-first-mb3:nth-child(3) .first-step-mobile {
        background-color: #1D24CA;
        border-radius: 60px 60px 0 0;
    }

    .step-first-mb2 {
        background-color: #000000;
    }

    .step-first-mb3 {
        background: #1a1f5b;
    }

    section#step-mobile-view {
        display: block;
    }
}

@media screen and (max-width:576px) {
    .presece-box {
        width: 100%;
    }

    .counter-box {
        width: 100%;
    }

    .counter-boxes {
        flex-wrap: wrap;
        gap: 20px;
    }

    .counter-number h4 {
        font-size: 60px;
    }

    .left-bottom {

        flex-wrap: wrap;
    }

    .left-bottom .feature {
        width: 100%;
    }

    .share {

        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        gap: 50px;


    }

    .signature {

        gap: 50px;
        justify-content: center;
        flex-direction: column;
    }

    .eco-system {

        background-position: 80% 0, 0 0;

    }

    .our-reviews {
        column-count: 1;
        column-gap: 20px;
    }

    .header-up li {
        font-size: 12px;
        gap: 12px;
    }

    .header-up li button img {
        width: 16px;
    }

    .responsive-content {
        display: flex;
        gap: 0;
        flex-direction: column;
    }

    .responsive-content ul li a {
        padding: 6px 10px;
    }

    .media-responsive {
        gap: 0px;
        flex-direction: column;
    }

    .media-responsive ul li a {
        padding: 0 5px;
    }

    .media-responsive ul li a {
        font-size: 1rem;
        margin-bottom: 4px;
    }

    .presense-online {
        width: 95%;
    }

    .logo {
        width: 120px;
    }

    .login-signup a img {
        width: 18px;
        transform: rotate(180deg);
    }

    .login-signup {
        width: 35px;
        height: 35px;

    }

    .span-menu {
        font-size: 14px;
    }

    .menu-btn svg {
        width: 30px;
    }

    .sub-heading h2 {
        font-size: 28px;
    }

    .online-profile {
        margin-top: 30px;
    }

    .presence-title {
        margin-top: 10px;
    }

    .presence-title h3 {
        font-size: 27px;
    }

    .feature-heading h2 {
        font-size: 42px;
    }

    .sub-images-products {

        overflow-x: auto;
    }

    .btn-1 {
        gap: 10px;
    }

    .btn-1 a {
        padding: 12px 24px;

    }

    .eco-system .does-work-heading h2 {
        font-size: 32px;
    }

    .nfc-card-img {
        width: 300px;
        position: relative;
    }

    .info-left {
        padding: 60px 20px;
    }

    .faqs-acco {
        max-width: 100%;
    }

    section#reviews {
        padding-bottom: 0px;
    }

    .reel-container {
        width: 110px;
        height: 164px;
    }

    .reel-close-btn img {
        width: 12px;
    }

    .reel-close-btn {

        width: 25px;
        height: 25px;

    }

    .whats-app {
        bottom: 20px;
        right: 10px;
    }

    .btn-popup-text {
        font-size: 10px;
    }

    .whatsapp-btn {
        gap: 6px;
    }

    .whatsapp-icon::before {
        background-size: 22px auto;

    }

    .whatsapp-icon {
        width: 45px;
        height: 45px;
    }

    .whatsapp-body {
        width: 330px;
        right: 15px;
        bottom: 50px;
    }

    .whatsapp-toggle .whatsapp-body {
        bottom: 80px;
    }

    .product-heading h2 {
        font-size: 32px;

    }

    .neelteck-products {
        margin-bottom: 70px;
    }

    #header-menu .demo a {
        padding: 6px 10px;
        white-space: nowrap;
        font-size: 12px;
    }

    #header-menu .left-navs {
        gap: 10px;
    }

    #header-menu .language-select {
        font-size: 14px;
    }

    .responsive-content ul li a {
        font-size: 1.3rem;
    }

    .responsive-content ul li a {
        font-size: 1.4rem;
    }


}


@media screen and (max-width:468px) {
    .header-up li {
        font-size: 12px;
        gap: 8px;
    }

    .header-up li button img {
        width: 12px;
    }

    .banner-left h1 {
        font-size: 36px;
    }
   


}

@media screen and (max-width:390px) {
   
    .banner-left h1 {
        font-size: 32px;
    }


}


/* 

.image-frame {
    width: 50%;
    position: relative;
    z-index: 9;
}

.tabcontent.active-1
 {
    display: flex
;
    justify-content: end;
}

.image-screen {
    width: 95%;
    position: absolute;
    top: 10px;
    left: 6px;
    z-index: -1;
}

.image-screen img{
    border-radius: 10px;
}
img.image-screen1 {
    position: absolute;
}

.sub-main-img{
    padding: 50px;
}

.digital-frame {
    position: absolute;
    top: 0;
    width: 220px;
   
}

.digital-frame {
    position: absolute;
    top: 0;
    width: 220px;
    left: -60%;
}

.image-screen1:nth-child(1) {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-screen1:nth-child(2) {
  opacity: 1;

  transition: opacity 0.3s ease;
}

.image-frame::after{
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 100%;
    
    width: 30px;
    height: 30px;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
    -webkit-animation: rippleOne 3s infinite;
    animation: rippleOne 3s infinite;
}

.image-frame::before{
    position: absolute;
    content: "";
    width: 40px;
    height: 40px;
    line-height: 104px;
    text-align: center;
    border-radius: 100%;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
   
    -webkit-animation: rippleOne 3s infinite;
    animation: rippleOne 3s infinite;
} */