@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior : smooth;
}

:root {
    --theme-font: "Inter", sans-serif;
    --title-font: "Inter", sans-serif;
    --nav-color: rgba(26, 26, 26, 1);
    --title-color: #1A1A1A;
    --hearer-bg-btn1: #ffff;
    --hearer-bg-text: #1A1A1A;
    --hearer-bg-btn2: #1A1A1A;
    --hearer-bg-text2: #fff;
    --banner-btn: rgba(0, 106, 255, 0.829);
    --desh-color: rgba(145, 145, 145, 1);
    --desh-link-color: rgba(202, 202, 204, 1);
}


.main-container {
    max-width: 100%;
    height: auto;
    margin: 0px auto;
    overflow: hidden !important;
}

.container {
    height: auto;
    max-width: 1440px !important;
    margin: 0px auto;
    overflow: hidden;
}

.main-header-box {
    /* height: 100vh; */
    position: relative;
  /*  background: linear-gradient(180deg, rgba(57, 116, 186, 0.16) 0%, rgba(57, 116, 186, 0) 100%);*/
}


header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 11;
    background: #ffffff;
}

    header nav {
        height : 75px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

        header nav .logo {
            width: 40%;
        }

            header nav .logo img {
                width: 100px;
            }


        header nav .nav-list-items {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 50px;
        }


            header nav .nav-list-items ul {
                list-style: none;
                display: flex;
                gap: 20px
            }


                header nav .nav-list-items ul li a {
                    text-decoration: none;
                    display: flex;
                    gap: 15px;
                    font-family: var(--theme-font);
                    color: var(--nav-color);
                    font-weight: 600;
                    position: relative;
                }


            header nav .nav-list-items .nav-list ul li a {
                display: flex;
                align-items: center;
                gap: 10px;
                font-size: 15px;
                font-weight: 500;
                font-size: 15px;
                position: relative;
                transition: 350ms linear;
                padding-bottom : 6px;
            }

                header nav .nav-list-items .nav-list ul li a:hover {
                    color: #265df5;
                }

                header nav .nav-list-items .nav-list ul li a::after {
                    content: '';
                    width: 0%;
                    height: 2px;
                    position: absolute;
                    bottom: -2.5px;
                    left: 0;
                    background-color: #265DF5;
                    transition: 350ms linear;
                }

.isActive {
    color: #265df5 !important;
    border-bottom: 3px solid #265df5;
}

                header nav .nav-list-items .nav-list ul li a:hover:after {
                    width: 100%;
                }


                header nav .nav-list-items .nav-list ul li a i {
                    font-size: 14px;
                }

            header nav .nav-list-items .nav-btn ul li {
                display: flex;
                align-items: center;
            }

            header nav .nav-list-items .nav-btn a {
                letter-spacing: 0.5px;
                /* font-size: 15px; */
                font-weight: 500;
            }

.btn-log {
    background-color: var(--hearer-bg-btn1);
    border: 2px solid black;
    padding: 8px 20px;
    border-radius: 6px;
    transition: 250ms linear;
    font-size: 14px;
}

.themeColorBtn {
    display: block;
    width: fit-content;
    background: rgb(42 130 254);
    color: #ffffff !important;
    border: 2px solid rgb(42 130 254);
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 14px;
    transition: 250ms linear;
}

    .themeColorBtn:hover {
        background: black;
        border: 2px solid black;
    }

    .btn-sing {
    background: rgb(42 130 254);
    color: #ffffff !important;
    border: 2px solid black;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 14px;
    transition: 250ms linear;
}

.btn-log:hover {
    background-color: var(--hearer-bg-btn2) !important;
    color: var(--hearer-bg-text2) !important;
    border: 2px solid black;
}

.btn-sing:hover {
    color: var(--hearer-bg-text) !important;
    border: 2px solid black;
    background-color: var(--hearer-bg-btn1) !important;
}


/* banner section -------------------- */

.banner {
    width: 100%;
    height: calc(100vh - 95px);
    margin: 0px auto;
    position: relative;
  /*  background-image : url(../image/home-bg.png);
    background-position : center;
    background-size : 100%;
    background-repeat : no-repeat;*/
     background: linear-gradient(180deg, rgba(57, 116, 186, 0.16) 0%, rgba(57, 116, 186, 0) 100%); 
}

    .banner .container {
        height: 100%;
        display: flex;
        align-items: center;
    }

        .banner .container .banner-left {
            width: 500px;
            position: relative;
            z-index: 2;
        }

            .banner .container .banner-left h1 {
                font-size: 45px;
                font-family: var(--title-font);
            }

            .banner .container .banner-left p {
                font-family: var(--theme-font);
                font-size: 19px;
                margin: 14px 0px 20px;
                line-height: 1.6;
                font-weight: 300;
            }

            .banner .container .banner-left .reatingStar {
                margin: 3px 0px !important;
                display: flex;
                gap: 13px;
                align-items: center;
                font-size: 16px;
                font-weight: 400;
            }

                .banner .container .banner-left p:last-child span {
                    font-size : 14px !important;
                    color : black;
                }
                    .banner-btn {
    display: flex;
    gap: 10px;
}

.b-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    background-color: var(--hearer-bg-btn2);
    color: var(--hearer-bg-text2);
    border-radius: 50%;
    text-decoration: none;
    rotate: 45deg;
    transition: 200ms linear !important;
}

/*.boxBtnmain {
    width : fit-content;
    margin : 0px auto;
}*/

.boxBtnmain a {
    text-decoration: none;
    font-family: var(--theme-font);
}

.boxBtnmain p {
    margin-top: 4px !important;
    font-size: 10px !important;
    text-align: center;
    font-family: var(--theme-font);
}

    .btn-3 {
    text-decoration: none;
    padding: 8px 20px;
    background-color: var(--hearer-bg-btn2);
    color: #ffff !important;
    font-family: var(--theme-font);
}

.btn-4 {
    text-decoration: none;
    padding: 10px 20px;
    background: var(--banner-btn);
    color: #ffff;
    border-radius: 30px !important;
    font-family: var(--theme-font);
}

.animi-btn {
    position: relative;
    /*left: 45px;*/
    z-index: 1;
    transition: 0.2s linear !important;
    overflow: hidden;
}


 /*   .animi-btn:hover {
        left: 2px;
        border: 2px solid #2a83fe;
        color: #ffff !important;
        background-color: #2a83fe !important;
    }*/

.up-arrow {
    position: relative;
    left: -165px;
    transition: 0.2s linear !important;
}

.animi-btn:hover + .up-arrow {
    left: -8px;
    pointer-events: none;
    background-color: var(--banner-btn);
}

/* banner-left-side ---------- */

.banner-right {
    position: absolute;
    height: 580px;
    right: 0;
    top: 50%;
    width: 50%;
    transform: translate(0%, -50%);
    overflow: hidden;
}

    .banner-right .desh-board .desh-nav {
        box-shadow: 0px 0px 5px 3px #CACACC;
        padding: 10px 10px;
        border-radius: 10px 0px 0px 10px;
    }

    .banner-right .desh-board {
        height: 100%;
        display: grid;
        gap: 10px;
        grid-template-columns: 40px auto;
        position: relative;
    }


        .banner-right .desh-board .desh-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 16px;
            border-bottom: 1px solid var(--desh-color);
            padding-bottom: 16px;
            margin-bottom: 12px;
        }

            .banner-right .desh-board .desh-nav ul li a {
                /* background-color: blue; */
                text-decoration: none;
                color: var(--desh-color);
            }

        .banner-right .desh-board .link {
            display: flex;
            justify-content: space-evenly;
            padding: 15px 0px;
        }


            .banner-right .desh-board .link a {
                text-decoration: none;
                font-family: var(--theme-font);
                font-size: 15px;
                display: flex;
                gap: 5px;
                color: var(--desh-link-color);
                padding-bottom: 8px;
                font-weight: 600;
            }

.activeLink {
    color: rgba(38, 93, 245, 1) !important;
    border-bottom: 2px solid rgba(38, 93, 245, 1) !important;
}

.banner-right .desh-board table {
    box-shadow: 0px 0px 3px 2px #e5e5e5;
    /* width: 1000px; */
    width: 100%;
    margin: 0px 0px 0px 10px;
    border-radius: 7px;
    border-collapse: collapse;
}

    .banner-right .desh-board table tr th,
    td {
        border-bottom: 1px solid #e9e9e9;
        text-align: start;
        padding: 22px 10px;
        font-family: var(--theme-font);
    }

        .banner-right .desh-board table tr th,
        td:nth-child(3) {
            width: 0%;
        }


    .banner-right .desh-board table tr td .pro {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .banner-right .desh-board table tr td .pro img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .banner-right .desh-board table tr td p {
        font-size: 15px;
        font-family: var(--theme-font);
        font-weight: 600;
        color: rgba(71, 71, 71, 1);
    }

    .banner-right .desh-board table tr td span {
        font-size: 11px;
        font-family: var(--theme-font);
        color: #474747;
        font-weight: 400;
    }



.box_2 {
    position: absolute;
    top: 45%;
    background-color: #fff;
    width: 410px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 25px;
    right: 28%;
    border-radius: 10px;
    box-shadow: 0px 0px 18px 0px #adadad;
    animation: SlideRight 0.4s linear 1.5s forwards;
    transform: scale(0);
    opacity: 0;
    transition: 300ms linear;
    overflow : hidden;
}

@keyframes SlideRight {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}



.box_2 .bodal-detil-box {
    height: 50px;
    width: 300px;
    border: 1px solid #e5e5e5;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 10px;
    border-radius: 8px;
    overflow: hidden;
    margin-left: -110%;
}

.bodal-detil-box:first-child {
    animation: slide1_left 0.6s linear 1.7s forwards;
}

.box_2 .bodal-detil-box:nth-child(2) {
    animation: slide2_left 0.6s linear 1.9s forwards;
}

.bodal-detil-box:last-child {
    animation: slide3_left 0.6s linear 2s forwards;
}

@keyframes slide1_left {
    from {
        margin-left: 100%;
    }

    to {
        margin-left: 0%;
    }
}

@keyframes slide2_left {
    from {
        margin-left: 100%;
    }

    to {
        margin-left: 35px;
    }
}

@keyframes slide3_left {
    from {
        margin-left: 100%;
    }

    to {
        margin-left: 70px;
    }
}




.box_2 .bodal-detil-box .icon-boxes {
    width: 50px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #C8FDE2;
}

.box_2 .bodal-detil-box p {
    font-size: 16px;
    font-weight: 600;
    color: var(--banner-btn);
    font-family: var(--theme-font);
}

.box_2 .bodal-detil-box span {
    color: #919191;
    font-size: 14px;
    font-family: var(--theme-font);
}

.box_2 .bodal-detil-box button {
    font-family: var(--theme-font);
    font-size: 12px;
    padding: 6px 10px;
    background-color: var(--banner-btn);
    border: none;
    color: #ffff;
    border-radius: 4px;
}

.desh-ereen {
    width: 1040px;
}



#screen1,
#screen2,
#screen3 {
    position: absolute;
    display: none;
}

#screen1 {
    display: block;
    overflow: hidden;
}

.cartScreen1 {
    transition: 300ms linear !important;
}


.screen-1 {
    position: relative;
    background-image: url(../image/screen_1.png);
    background-repeat : no-repeat;
    /*background-size : 100%;*/
    height : 578px;
}

#screen2 {
    position: relative;
    background-image: url(../image/screen-2.png);
    background-repeat: no-repeat;
    /*background-size : 100%;*/
    height: 578px;
}

.baner-card {
    position: absolute;
    overflow: hidden;
    left: 23%;
    top: 12%;
    height: 171px;
    box-shadow: 0px 0px 18px 0px #adadad;
    border-radius: 5px;
    background: #fff;
    width: 350px;
    transform :scale(0);
    opacity : 0;
    transition : 300ms linear;
    animation: slide_down 0.4s linear 1s forwards;

}

@keyframes slide_down {
    from {
        opacity: 0;
        transform: scale(0);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media screen and (max-width : 1500px) {
    .box_2 {
        padding: 12px;
        gap: 10px;
    }

    .baner-card {
        position: absolute;
        overflow: hidden;
        left: 15%;
    }

    @keyframes slide_down {
        from {
            top: -50%;
        }

        to {
            top: 8%;
        }
    }

    @keyframes SlideRight {
        from {
            right: -50%;
        }

        to {
            right: 46%;
        }
    }
}

@media screen and (max-width : 1140px) {
    .box_2 {
        padding: 12px;
        left: 8%;
        gap: 8px;
    }

        .box_2 .bodal-detil-box span {
            font-size: 12px;
        }

        .box_2 .bodal-detil-box p {
            font-size: 12px;
            margin-bottom: 3px;
        }

    .baner-card {
        position: absolute;
        overflow: hidden;
        left: 10%;
    }

    @keyframes SlideRight {
        from {
            right: -50%;
        }

        to {
            right: 46%;
        }
    }

    .box_2 {
        top: 38%;
    }

    .baner-card {
        position: absolute;
        overflow: hidden;
        left: 6%;
    }

    @keyframes slide_down {
        from {
            top: -50%;
        }

        to {
            top: 8%;
        }
    }
}


.baner-card img {
    width: 358px;
    position: absolute;
    left: 50%;
    top: 51%;
    transform: translate(-50%, -50%);
}

.thred-screen {
    width: 575px;
    height: 575px;
    border: 55px solid var(--banner-btn);
    border-radius: 50%;
    margin-left: 39px;
    background-color: #000;
    position: relative;
    margin: 0px auto;
    left: 50%;
    transform: translateX(-50%);
}

    .thred-screen::after {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        border-radius: 50%;
        border: 35px solid transparent;
        background: linear-gradient(to right, #3a4fd5 0%, red) linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: destination-out;
        mask-composite: exclude;
    }

    .thred-screen .main_image {
        width: 100%;
        /*animation: popupImage 0.05s linear 1.2s forwards;*/
        position: relative;
        transition : 200ms linear;
    }

@keyframes popupImage {
    0% {
        width: 100%;
    }

    90% {
        width: 115%;
        margin-bottom: -51px;
        bottom: 42px;
        left: -23px;
    }

    100% {
        width: 110%;
        margin-bottom: -51px;
        bottom: 42px;
        left: -23px;
    }
}

.popup-box_virw {
    position: absolute;
    width: 250px;
    min-height: 170px;
    padding: 10px;
    background: #ffff;
    border-radius: 10px;
    box-shadow: 0px 0px 7px 0px #e0e0e0;
}

.popup-box_virw_1 {
    position: absolute;
    top: 18%;
    left: -150%;
    animation: popupBoxLeft 0.4s linear 1.9s forwards;
}


.popup-box_virw_2 {
    top: 9%;
    right: -150%;
    animation: popupBoxRight 0.4s linear 1.9s forwards;
}

.popup-box_virw_3 {
    top: 71%;
    left: -150%;
    animation: popupBoxLeft 0.4s linear 1.9s forwards;
}

.popup-box_virw_4 {
    top: 62%;
    right: -150%;
    animation: popupBoxRight 0.4s linear 1.9s forwards;
    transition : 300ms linear; 
}

@keyframes popupBoxLeft {
    0% {
        left: -100%;
    }

    80% {
        left: -15%;
    }

    100% {
        left: -21%;
    }
}

@keyframes popupBoxRight {
    0% {
        right: -100%;
    }

    80% {
        right: -15%;
    }

    100% {
        right: -21%;
    }
}

@media screen and (max-width : 1280px) {
    .thred-screen {
        width: 480px !important;
        height: 480px !important;
        border: 32px solid var(--banner-btn) !important;
    }

    .popup-box_virw {
        width: 207px;
    }

    .popup-box_virw_1 {
        top: 23%;
    }

    .popup-box_virw_2 {
        top: 45%;
    }

    .popup-box_virw_4 {
        top: 90%;
    }

    .popup-box_virw_3 {
        top: 67%;
    }

    @keyframes popupBoxLeft {
        0% {
            left: -100%;
        }

        80% {
            left: -15%;
        }

        100% {
            left: -6%;
        }
    }

    @keyframes popupBoxRight {
        0% {
            right: -100%;
        }

        80% {
            right: -15%;
        }

        100% {
            right: -4%;
        }
    }
}


.popup-box_virw .head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--theme-font);
}

    .popup-box_virw .head p {
        font-size: 18px;
        font-weight: 700;
        color: var(--banner-btn);
    }

.popup-box_virw .text-content {
    font-size: 12px;
    font-family: var(--theme-font);
    color: #757B8A;
    line-height: 1.6;
    margin-top: 10px;
}

.popup-box_virw img {
    width: auto !important;
    height: 35px;
}

.btn-box {
    font-family: var(--theme-font);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    font-size: 12px;
}

    .btn-box a {
        text-decoration: none;
        color: #1A1A1A;
    }


    .btn-box .explore {
        background: #1A1A1A;
        border-radius: 4px;
        color: #fff;
        font-size: 12px;
        padding: 5px 16px;
        border: 1px solid black;
        transition: 0.4s linear !important;
    }

        .btn-box .explore:hover {
            background-color: #fff;
            color: black;
        }

/* ------------- this is banner bottom transparent words ------------ */

.epic-box {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background-color: rgba(38, 93, 245, 0.05);
    z-index: -1;
}


.epic-1 {
    position: absolute;
    bottom: 0;
    left: 30px;
}

.epic-2 {
    position: absolute;
    bottom: 0;
    left: 200px;
}

.epic-3 {
    position: absolute;
    bottom: 0;
    left: 400px;
}


/* company logo section   ------------------ */
.com-logo {
    background-color: rgba(16, 24, 40, 1);
    /* height: 150px; */
    padding: 30px;
    text-align: center;
    font-family: var(--theme-font);
    color: #ffff;
    position: relative;
    /* top: -50px; */
}

    .com-logo .c-logo {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
    }

    .com-logo p {
        padding-bottom: 20px;
        letter-spacing: 0.4px;
    }

    .com-logo .c-logo img {
        margin : 0px auto;
    }

    .com-logo .c-logo img:first-child {
        width: 141px;
    }

    .com-logo .c-logo img:nth-child(2) {
        width: 114px;
    }

    .com-logo .c-logo img:nth-child(3) {
        width: 160px;
    }

    .com-logo .c-logo img:last-child {
        width: 70px;
    }

    /* soluction section --------------  */
    .soluction-section {
        width: 100%;
        height: auto;
        margin: 50px auto;
    }

    .soluction-section h2 {
        text-align: center;
        font-size: 70px;
        font-family: var(--theme-font);
        line-height: 1.4;
    }

    .soluction-section .main-slu {
        display: grid;
        grid-template-columns: 250px auto;
        gap: 20px;
        margin-top: 50px;
    }

        .soluction-section .main-slu .col-slu-left .com-dash-title {
            font-family: var(--theme-font);
            font-weight: 600;
            font-size: 15px;
            color: #265DF5;
        }

        .soluction-section .main-slu .col-slu-left .desh-seach-box {
            width: 99%;
            height: 30px;
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            border: 2px solid #265DF5;
            background-color: #F2F6FF;
            margin-top: 15px;
            margin-bottom: 22px;
        }

            .soluction-section .main-slu .col-slu-left .desh-seach-box input {
                width: 100%;
                height: 100%;
                border: none;
                background-color: transparent;
                padding-left: 33px;
                padding-right: 5px;
                font-weight: 500;
                font-family: var(--theme-font);
                color: #000000;
            }

                .soluction-section .main-slu .col-slu-left .desh-seach-box input::placeholder {
                    color: #000000;
                    font-size: 12px;
                    font-weight: 600;
                }

                .soluction-section .main-slu .col-slu-left .desh-seach-box input:focus {
                    outline: none;
                }

            .soluction-section .main-slu .col-slu-left .desh-seach-box button {
                position: absolute;
                top: 50%;
                left: 0;
                height: 90%;
                width: 30px;
                color: #265DF5;
                background-color: transparent !important;
                border: none;
                transform: translate(0%, -50%);
            }

.desh-link ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

    .desh-link ul li a {
        font-family: var(--theme-font);
        font-weight: 500;
        font-size: 15px;
        text-decoration: none;
        color: #5F5F5F;
        display: flex;
        align-items: center;
        gap: 10px;
    }


.col-slu-right .clu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .col-slu-right .clu-header .desh-seach-box {
        width: 40%;
        position: relative;
        height: 40px;
    }

        .col-slu-right .clu-header .desh-seach-box input {
            width: 100%;
            height: 100%;
            background-color: transparent;
            border: none;
            padding: 0px 8px 0px 30px;
        }

        .col-slu-right .clu-header .desh-seach-box button {
            position: absolute;
            left: 10px;
            top: 50%;
            transform: translate(0%, -50%);
            background-color: transparent;
            border: none;
        }

.col-slu-right .clu-header {
    font-family: var(--theme-font);
    font-size: 14px;
    font-weight: 500;
    background-color: #F2F6FF;
    padding: 10px;
    border-radius: 10px 10px 0px 0px;
}

    .col-slu-right .clu-header a {
        font-family: var(--theme-font);
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        color: #265DF5;
    }


.col-slu-right img {
    width: 100%;
    background-color: #265df5;
    /* object-fit: cover; */
}

/* explore section ------------------------ */

.explore_section {
    margin: 90px auto;
}

.section-title {
    width: 826px;
    margin: 0px auto;
    text-align: center;
}

.piplineCardbox {
    display : flex;
    align-items : center;
    gap : 15px;
    flex-wrap : wrap;

}

.piplineCardboxImg {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content : center;
    overflow: hidden
}

.section-title h2 {
    text-align: center;
    font-size: 50px;
    font-family: var(--theme-font);
    line-height: 1.4;
}

    .section-title p {
        text-align: center;
        font-weight: 500;
        font-family: var(--theme-font);
        color: #101828;
        line-height: 1.6;
        font-size: 14px;
        margin-bottom: 20px;
    }

    .section-title a {
        text-decoration: none;
        font-family: var(--theme-font);
        font-weight: 500;
        color: var(--hearer-bg-text1);
    }

.cart-explore-row {
    display: flex;
    gap: 20px;
    background-color: #F7F7F7;
    margin-top: 50px;
    padding: 20px;
}

    .cart-explore-row .cart-explore {
        width: 20%;
        border-radius: 10px;
        min-height: 250px;
        display: flex;
        gap: 10px;
        flex-direction: column;
        justify-content: center;
        padding: 10px;
        border: 2px solid black;
        position: relative;
    }

.border-box {
    position: absolute;
    top: 0;
    right: 0;
    rotate: 90deg;
    width: 50px;
    height: 20px;
    background-color: black;
    display: none;
}


.cart-explore-row .cart-explore img {
    width: 24px;
}

.cart-explore-row .cart-explore:nth-child(4) img {
    width: 50px !important;
}

.cart-explore-row .cart-explore h3 {
    font-family: var(--theme-font);
    font-size: 32px;
    color: #101828;
}

.cart-explore-row .cart-explore p {
    font-family: var(--theme-font);
    font-weight: 500;
    letter-spacing: 1px;
    word-spacing: 16px;
    line-height: 1.5;
}


/* our goals section -----------------  */
.section-titles h2 {
    text-align: start;
    font-size: 60px;
    font-family: var(--theme-font);
    line-height: 1.4;
}

.our-goals .row-btn {
    display: flex;
    gap: 15px;
}

    .our-goals .row-btn button {
        font-family: var(--theme-font);
        padding: 10px 20px;
        border: 2px solid #000000;
        border-radius: 6px;
        font-weight: 500;
        background: #ffff;
        margin: 30px 0px;
    }

.btnisActive {
    color: #ffff;
    background: #265DF5 !important;
    border: 2px solid #265df5 !important;
}

.our-goals h3 {
    font-family: var(--theme-font);
    font-size: 21px;
    font-weight: 600;
    line-height: 1.6;
}

.our-goals p {
    font-family: var(--theme-font);
    font-weight: 400;
    font-size: 15px;
    margin-top: 9px;
}

.inner-row-goals {
    display: flex;
    justify-content: space-between;
}

.inner-col-goals a {
    display: flex;
    gap: 20px;
    font-family: var(--theme-font);
    text-decoration: none;
    padding: 8px 20px;
    border: 2px solid #000;
    width: fit-content;
    border-radius: 6px;
    margin: 31px 0px;
    color: #000;
    font-weight: 500;
    font-size: 15px;
    align-items: center;
}

.inner-row-goals .images-right {
    width: 50%;
    display: flex;
    gap: 15px;
    justify-content: end;
}

    .inner-row-goals .images-right div {
        width: 40%;
        overflow: hidden;
        border-radius: 30px;
    }

    .inner-row-goals .images-right img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 300ms linear;
    }

        .inner-row-goals .images-right img:hover {
            transform: scale(1.1);
        }

.our-goals ul {
    list-style: none;
    font-family: var(--theme-font);
    font-weight: 400;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .our-goals ul li span {
        font-family: var(--theme-font);
        color: #000;
        font-size: 15px;
    }


.our-goals .inner-box-round {
    min-height: 200px;
    padding: 30px 8px;
    background-color: #061428;
    color: #ffff;
    text-align: center;
    border-radius: 25px;
    margin-top: 80px;
}

    .our-goals .inner-box-round h2 {
        font-family: var(--theme-font);
        font-size: 50px;
        line-height: 1.5;
        font-style: normal;
    }

    .our-goals .inner-box-round span {
        font-family: var(--theme-font);
        font-size: 13px;
        font-weight: 300;
    }

    .our-goals .inner-box-round .comp-logo-img {
        display: flex;
        row-gap: 8px;
        column-gap: 64px;
        justify-content: center;
        margin: 42px 0px;
    }


.comp-logo-img img {
    width: 152px;
    height: 60px;
    object-fit: contain;
    margin : 0px auto;
}

    .comp-logo-img img:nth-child(2) {
       width: 106px;
}
    .comp-logo-img img:nth-child(3) {
        height: 53px;
    }

    .logo_3 {
    height : 52px !important;
}

.our-goals .inner-box-round a {
    font-family: var(--theme-font);
    text-decoration: none;
    color: #ffff;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0px auto;
    width: fit-content;
}

    .our-goals .inner-box-round a i {
        animation: slideLeftRight 0.4s ease-in-out infinite 2s alternate;
        position: relative;
    }


@keyframes slideLeftRight {
    0% {
        left: 0;
    }

    20% {
        left: 0;
    }

    100% {
        left: 20px;
    }
}

.bg-line-animi {
    height: 63px;
    width: 100%;
    background-image: url(../image/line-1.png);
    background-size: 100%;
    background-repeat: no-repeat;
    animation: changeBgImeg 1.5s linear infinite alternate;
}

@keyframes changeBgImeg {
    0% {
        background-image: url(../image/line-1.png);
    }

    50% {
        background-image: url(../image/line-2.png);
    }

    100% {
        background-image: url(../image/line-3.png);
    }
}

/* animi-slider section  -----------------  */

.animi-slider {
    width: 100%;
    height: auto;
    margin: 80px auto 20px;
    overflow: hidden;
}

.tag-list {
    width: 100%;
    max-width: 100vw;
    display: flex;
    flex-shrink: 0;
    flex-direction: column;
    gap: 1rem 0;
    position: relative;
    padding: 1.5rem 0;
    overflow: hidden;
}

.loop-slider .inner {
    display: flex;
    width: fit-content;
    animation-name: loop;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: var(--direction);
    animation-duration: var(--duration);
}

.reverse .inner {
    display: flex;
    width: fit-content;
    animation-name: reverse-slide;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: var(--direction);
    animation-duration: var(--duration);
}

.loop-slider:hover .inner {
    animation-play-state: paused;
}

.reverse:hover .inner {
    animation-play-state: paused;
}

.tag {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 0 0.2rem;
    color: #e2e8f0;
    font-size: 0.9rem;
    font-family: var(--theme-font);
    border-radius: 0.4rem;
    padding: 0.7rem 1rem;
    margin-right: 1rem;
    width: 350px !important;
}

    .tag p {
        line-height: 1.6;
        margin: 10px 0px;
    }

    .tag div img {
        width: 45px !important;
        height: 45px !important;
        object-fit: cover;
    }

    .tag .pro-img {
        display: flex;
        align-items: center;
        gap: 20px;
        width: 100%;
        margin-top: 40px;
    }


span {
    font-size: 1.2rem;
    color: #64748b;
}

.tag .pro-img span {
    display: block;
    color: #ffff;
}




@keyframes loop {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes reverse-slide {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-33%);
    }
}

.sales {
    width: 100%;
    height: auto;
    margin: 80px auto;
}

    .sales .sal-row {
        width: 100%;
        display : flex;
        gap : 10px;
        font-family: var(--theme-font);
    }

        .sales .sal-row .sales-col {
            width : 50%;
        }

        .sales .sal-row .sales-col img {
            width: 100%;
        } 

    .sales .sal-row h3 {
            text-align: start;
            font-size: 49px;
            font-family: var(--theme-font);
            line-height: 1.4;
        }

        .sales .sal-row p {
            font-family: var(--theme-font);
            font-weight: 400;
            font-size: 15px;
            margin-top: 9px;
            line-height: 1.5;
            margin-bottom: 14px;
        }

        .sales .sal-row .rat {
            color: #FF7D1F;
            font-size: 15px;
            display: flex;
            gap: 6px;
            margin-bottom: 10px;
        }

        .sales .sal-row span {
            font-family: var(--theme-font);
            font-weight: 600;
            font-size: 15px;
            margin-top: 9px;
            line-height: 1.5;
            margin-bottom: 14px;
            color: #000;
        }

.demo-box {
    border-radius: 6px;
    margin: 50px auto 30px;
    padding: 20px 20px;
    background-color: #265DF5;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .demo-box .border-img-left {
        position: absolute;
        top: 0;
        left: 0;
        width: 150px;
        height: 95%;
        border: 2px solid #d9d9d97d;
        transform: rotate(9deg);
        border-radius: 0px 50px 50px;
        left: -8%;
        top: 1px;
    }

        .demo-box .border-img-left::before {
            content: '';
            width: 87%;
            height: 76%;
            border: 2px solid #d9d9d97d;
            position: absolute;
            left: -11px;
            top: 15px;
            border-radius: 0px 50px 50px;
        }


    .demo-box .border-img-right {
        position: absolute;
        width: 150px;
        height: 95%;
        border: 2px solid #d9d9d97d;
        transform: rotate(9deg);
        border-radius: 30px 30px 30px;
        right: -8%;
        top: 1px;
    }

        .demo-box .border-img-right::before {
            content: '';
            width: 87%;
            height: 76%;
            border: 2px solid #d9d9d97d;
            position: absolute;
            right: -11px;
            top: 15px;
            border-radius: 30px 30px 50px;
        }


    .demo-box h3 {
        font-size: 40px;
        font-family: var(--theme-font);
        color: #ffff;
        margin-bottom: 25px;
    }

    .demo-box a {
        font-family: var(--theme-font);
        padding: 10px 20px;
        border: 2px solid #fff;
        text-decoration: none;
        border-radius: 6px;
        color: #fff;
        transition: 350ms linear;
    }

.dark-btn:hover {
    background-color: #ffff !important;
    color: #265DF5;
    border: 2px solid #265DF5;
}

/* this is footer secion start  ---------- */

footer {
    width: 100%;
    height: auto;
    color: #ffff;
}

.bg-video {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    padding: 80px 0px;
}

    .bg-video::before {
        content: '';
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background-color: rgba(24, 24, 24, 0.9);
        z-index: 1;
    }

    .bg-video video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        bottom: 0;
    }

.socialMediaLink ul {
    list-style: none;
    display: flex;
    row-gap: 25px !important;
    column-gap: 25px !important;
    flex-direction: row !important;
}

    .socialMediaLink ul a {
        font-size: 22px !important;
        color: #ffffff !important;
        line-height: 1.5;
        transition: 200ms linear;
    }

        .socialMediaLink ul a:hover {
            color: #265df5 !important;
        }
.discribe_neebify h3 {
    margin-top: 15px;
    font-size: 28px !important;
    line-height: 1.3;
}
.discribe_neebify p{
    width: 293px;
    color: #929292 !important;
    font-size: 15px !important;
    letter-spacing: 1px;
}

footer p {
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 15px;
    margin-top: 9px;
    line-height: 1.5;
    margin-bottom: 14px;
    color: #686B70;
    margin-bottom: 25px;
}

footer .list-1 ul {
    display: flex;
    gap: 10px;
    list-style: none;
    justify-content: space-between;
}

    footer .list-1 ul li a {
        display: flex;
        text-decoration: none;
        gap: 4px;
        color: #686B70;
        font-family: "Manrope", sans-serif;
    }

        footer .list-1 ul li a i {
            font-size: 18px;
        }

        footer .list-1 ul li a .tel {
            font-size: 13px;
            color: #ffff;
        }

        footer .list-1 ul li a span {
            font-size: 13px;
            color: #686B70;
        }

footer .news-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    footer .news-box h4 {
        font-family: "Manrope", sans-serif;
        font-weight: 500;
        margin-top: 20px;
        font-size: 16px;
    }

footer .news-box {
    padding: 5px 10px;
    background-color: #222222;
    ;
    margin: 40px auto;
}

    footer .news-box p {
        color: #ffff;
        font-weight: 100 !important;
    }

    footer .news-box .suscribe-box {
        width: 400px;
        height: 40px;
        border-radius: 6px;
        position: relative;
        background-color: #000 !important;
    }

        footer .news-box .suscribe-box input {
            width: 100%;
            height: 100%;
            background: transparent !important;
            border: none;
            padding: 0px 20px;
            color: #ffff;
            border-radius: 6px;
            font-family: "Manrope", sans-serif;
        }

            footer .news-box .suscribe-box input::placeholder {
                color: #fff;
                font-family: "Manrope", sans-serif;
            }

        footer .news-box .suscribe-box button {
            position: absolute;
            top: 50%;
            transform: translate(0%, -50%);
            right: 5px;
            padding: 10px 23px;
            height: 85%;
            font-family: "Manrope", sans-serif;
            display: flex;
            align-items: center;
            font-weight: 500;
            border-radius: 6px;
            transition: 350ms linear;
            border: 1px solid #fff;
        }

            footer .news-box .suscribe-box button:hover {
                background-color: #265df5;
                color: #ffff;
                border: 1px solid #265df5;
            }

footer .f-link {
    width: 100%;
    display: flex;
    justify-content: space-between;
}


    footer .f-link h3 {
        font-size: 18px;
        font-family: "Manrope", sans-serif;
        font-weight: 500;
    }



    footer .f-link ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }

        footer .f-link ul li a {
            text-decoration: none;
            font-family: "Manrope", sans-serif;
            font-size: 14px;
            font-weight: 500;
            color: #686B70;
        }

footer .copy-right {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #686B70;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #686B70;
}



    footer .copy-right ul {
        list-style: none;
        display: flex;
        gap: 20px;
    }



        footer .copy-right ul li a {
            color: #686B70;
            font-family: "Manrope", sans-serif;
            text-decoration: none;
            font-size: 14px;
        }

    footer .copy-right p {
        font-size: 13px;
    }

footer .container {
    position: relative;
    z-index: 1;
}





.frame-img {
    width: 1000px;
    margin: 0px auto;
    position: relative;
    padding: 0px 0px 48px;
}

    .frame-img img {
        width: 100%;
    }

    .frame-img .btn-fram-1 {
        position: absolute;
        top: 128px;
        left: 50%;
        transform: translate(-50%);
        padding: 10px 30px;
        font-size: 14px !important;
        font-family: var(--theme-font);
        font-weight: 400;
        background-color: #265DF5;
        border: 9px solid #d2d7e5;
        outline: 9px solid rgba(38, 93, 245, 0.1);
        border-radius: 60px;
        color: #fff;
    }

    .frame-img .btn-fram-2 {
        position: absolute;
        top: 338px;
        left: -8%;
        padding: 10px 13px;
        font-size: 14px !important;
        font-family: var(--theme-font);
        font-weight: 400;
        background-color: #010206;
        border-radius: 60px;
        color: #fff;
        border: none;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .frame-img .btn-fram-2 i {
            color: #64748b !important;
        }

    .frame-img .btn-fram-3 {
        position: absolute;
        top: 338px;
        right: -8%;
        padding: 10px 13px;
        font-size: 14px !important;
        font-family: var(--theme-font);
        font-weight: 400;
        background-color: #010206;
        border-radius: 60px;
        color: #fff;
        border: none;
    }

    .frame-img .btn-fram-4 {
        position: absolute;
        top: 389px;
        left: 20%;
        padding: 10px 13px;
        font-size: 14px !important;
        font-family: var(--theme-font);
        font-weight: 400;
        background-color: #010206;
        border-radius: 60px;
        color: #fff;
        border: none;
    }

    .frame-img .btn-fram-5 {
        position: absolute;
        top: 389px;
        right: 20%;
        padding: 10px 13px;
        font-size: 14px !important;
        font-family: var(--theme-font);
        font-weight: 400;
        background-color: #010206;
        border-radius: 60px;
        color: #fff;
        border: none;
        display: flex;
        gap: 15px;
        align-items: center;
    }

    .frame-img .btn-fram-1 span {
        display: block;
        font-size: 15px;
        font-weight: 600;
        color: #000;
        margin-bottom: 8px;
        color: #fff;
    }


    .frame-img .btn-fram-2 span {
        display: block;
        font-size: 15px;
        font-weight: 600;
        color: #000;
        /* margin-bottom: 8px; */
        color: #fff;
    }

    .frame-img .inner-btn-frame span i {
        background: #fff;
        padding: 8px;
        border-radius: 50%;
    }

/* Affiliate <--------------> */
.aff_banner {
    position: relative;
    width: 100%;
    height: auto;
    margin: 100px auto;
}

.head_title h1 {
    font-size: 45px;
    font-family: var(--theme-font);
    text-align: center;
    width: 47%;
    margin: 0px auto;
    line-height: 1.4;
}

    .head_title h1 span {
        font-size: 40px;
        color: #265df5;
    }

.head_title p {
    font-size: 15px;
    font-family: var(--theme-font);
    text-align: center;
    width: 50%;
    margin: 30px auto;
    line-height: 1.6;
    font-weight: 500;
}

.dark_btn {
    text-align: center;
    text-decoration: none;
    margin: 0px auto;
    display: block;
    font-family: var(--theme-font);
    font-size: 15px;
    background-color: #265DF5;
    width: fit-content;
    padding: 10px 20px;
    color: #ffff;
    border-radius: 6px;
    letter-spacing: 0.5px;
    border: 1px solid #265DF5;
    transition: 200ms linear;
}

    .dark_btn:hover {
        background-color: #fff;
        color: #265DF5;
        border: 1px solid #265DF5;
    }

.head_title h2 {
    color: #1C1C1C;
    text-align: center;
    font-family: var(--theme-font);
    margin-top: 50px;
    font-weight: 600;
    font-size: 22px;
}

.head_title h3 {
    font-family: var(--theme-font);
    color: #101828;
    text-align: center;
    font-size: 24px;
    margin-top: 15px;
}

    .head_title h3 span {
        font-size: 24px;
        color: #265DF5;
    }


i {
    cursor: pointer;
}




/* ------------------- sitemap image style --------------------- */

.sitemap {
    width: 1060px;
    height: auto;
    margin: 100px auto 50px;
    font-size: var(--theme-font);
}

.backBtn {
    display: flex;
    align-items: center;
    gap: 2px;
    font-family: var(--theme-font);
}

    .backBtn a {
        text-decoration: none;
        font-size: 18px;
        color: black;
        font-family: var(--theme-font);
    }

        .backBtn a:last-child {
            color: rgb(10, 103, 241);
            font-weight : 600;
        }

.pageTitle h1 {
    font-size: 36px;
    font-weight: 600;
    font-family: var(--theme-font);
    margin-top: 28px;
}

.pageTitle p {
    font-size: 17px;
    font-weight: 500;
    font-family: var(--theme-font);
    color: #343434;
    margin-top: 8px;
}

.siteMapLink_row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 63px;
}

.siteMapLink ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    list-style: none;
    padding: 0;
}

    .siteMapLink ul li a {
        text-decoration: none;
        text-transform: capitalize;
        font-family: var(--theme-font);
        font-weight: 500;
        font-size: 15px;
    }

.pageLink {
    text-decoration: none;
    text-transform: capitalize;
    font-family: var(--theme-font);
    color: #1674f9;
}

.extpageLink {
    font-size: 15px;
    color: #393939;
    font-size: 15px !important;
    padding-left: 19px
}

.sitemap .innerRow {
    margin-top: 40px;
    border-top: 1px solid #dddddd;
    padding-top: 22px;
}

    .sitemap .innerRow h3 a {
        font-size: 34px;
        text-decoration: none;
        color: #313131;
        font-family: var(--theme-font);
    }

    .sitemap .innerRow .siteMapLink_row {
        margin-top : 18px !important;
            gap : 0 !important;
    }


        .sitemap .innerRow .siteMapLink_row .siteMapLink {
           width : 50% !important;
           padding-right : 10px;

        }