@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

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

:root {
    --first-color: #be15ed;
    --first-color-rgb: 191, 23, 238;
    --second-color: #622ec7;
    --second-color-rgb: 97, 47, 198;
    --banner-bg: #FCF6FD;
    --white-color: #fff;
    --all-white: #fff;
    --dark-color: #252525;
    --all-dark: #252525;
    --text-gray: #515151;
    --all-gray: #515151;
    --lg-text-gray: #888888;
    --all-lg-gray: #888888;
    --light-color: #c3c3c3;
    --light-color-rgba: 195, 195, 195;
    --all-light: #c3c3c3;
    --font-first: 'Raleway', sans-serif;
    --font-second: 'Roboto', sans-serif;
    --font-third: 'Rubik', sans-serif;
    --modal-body-bg: #f4f4f6;
    --header-foot-bg: #7200d6;
}

body {
    background-image: url(../images/home-bg-one.png);
    background-repeat: repeat;
    background-position: center;
    background-attachment: fixed;
    animation: tb_100 20s linear infinite;
}

@keyframes tb_100 {
    0% {
        /* background-position: top    ; */
        background-position: left;
    }

    50% {
        background-position: center;
    }

    100% {
        /* background-position: bottom ; */
        background-position: right;
    }
}

.cursor-pointer {
    cursor: pointer;
}

.pointer-event-none {
    pointer-events: none;
}

.word-break-all {
    word-break: break-all;
}

.white-space-nowrap {
    white-space: nowrap;
}

.text-overflow-ellipsis {
    text-overflow: ellipsis;
}

.text-transparent {
    color: transparent !important;
}

.offcanvas-backdrop.show {
    opacity: 0;
}

.w-unset {
    width: unset !important;
}

.lh-normal {
    line-height: normal !important;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
    padding: 0;
    margin: 0;
}

.bg-purple {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--first-color-rgb), var(--bs-bg-opacity)) !important;
}

.bg-pink {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--second-color-rgb), var(--bs-bg-opacity)) !important;
}

.bg-primary {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--first-color-rgb), var(--bs-bg-opacity)) !important;
}

.bg-secondary {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--second-color-rgb), var(--bs-bg-opacity)) !important;
}

.text-primary {
    color: var(--first-color) !important;
}

.text-secondary {
    color: var(--second-color) !important;
}

.text-lg-gray {
    color: var(--all-lg-gray) !important;
}

.text-gray {
    color: var(--all-gray) !important;
}

.fs-14 {
    font-size: 14px !important;
}

.fs-12 {
    font-size: 12px !important;
}

.fs-10 {
    font-size: 10px !important;
}

.ff-first {
    font-family: var(--font-first);
}

.ff-second {
    font-family: var(--font-second);
}

.ff-third {
    font-family: var(--font-third);
}

.after-none::after {
    display: none !important;
}

.before-none::before {
    display: none !important;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-thumb {
    background-color: #ababab;
    border-radius: 10px;
}

::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 10px;
}

.scroll-none::-webkit-scrollbar,
.scroll-none::-webkit-scrollbar-track,
.scroll-none::-webkit-scrollbar-thumb,
.scroll-none::-webkit-scrollbar-thumb:hover {
    width: 0px !important;
    background-color: transparent;
    height: 0 !important;
}

.py-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.py-75 {
    padding-top: 75px;
    padding-bottom: 75px;
}

/* bootstrap */
.btn-primary {
    background-color: var(--first-color);
    border-radius: 20px 2px 20px 20px;
    border-color: var(--all-white);
}

/* top-bar */
.topbar {
    background-color: var(--first-color);
}

.landing-h-btn {
    display: none !important;
}

/* header */
.offcanvas-header {
    background-color: var(--header-foot-bg);
}

.header_nav_li.active {
    border-bottom: 1px solid var(--all-white);
}

.mobail-menu {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    border: 2px solid var(--all-white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.line-1 {
    width: 80%;
    height: 5px;
    border-radius: 4px;
    background-color: var(--all-white);
    margin-top: 2px;
}

.offcanvas-start {
    width: auto;
}

.offcanvas {
    max-width: 80%;
}

.header {
    width: 100%;
    position: fixed;
    z-index: 1050;
    background-color: var(--header-foot-bg);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    /* backdrop-filter: blur(1px); */
    /* background: rgba(255, 255, 255, .05); */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(1px);
    /* border-radius: 20px; */
    top: 0;
    left: 0;
}

.bg-bn-transparent1 {
    background: rgba(0, 0, 0, 0.9) !important;
    box-shadow: 0px 0px 10px 0px rgba(255, 255, 255, 0.1);
}

.he-logo {
    width: 134px;
}

.btn {
    background-color: #724ebf;
    background-image: linear-gradient(90deg, #4f328f90, #870de8);
    color: var(--white-color) !important;
}

.dtp-content .btn {
    margin: 0 3px;
}

.bn-logo {
    width: 200px;
}

/* features */
.fe-icon {
    width: 100px;
    height: 100px;
}

.vision-content {
    background: linear-gradient(64deg, #b059c3, #8f1ef3);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(1px);
    border-radius: 20px;
    border: 4px solid #fff;
}

/* revuew */
.swiper-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 392.667px !important;
}

/* about */
.wrapper .outer {
    margin-top: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrapper .bs-card {
    display: flex;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    justify-content: space-between;
    animation: animate 12.5s linear infinite;
    animation-delay: calc(2.5s * var(--delay));
}

@keyframes animate {
    0% {
        opacity: 0;
        transform: translateY(50%) scale(0.5);
        z-index: -2;
    }

    5%,
    20% {
        opacity: 0.2;
        transform: translateY(50%) scale(0.7);
        z-index: 0;
    }

    25%,
    40% {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0%) scale(1);
        z-index: 1;
    }

    45%,
    60% {
        opacity: 0.2;
        transform: translateY(-50%) scale(0.7);
        z-index: 0;
    }

    65%,
    100% {
        opacity: 0;
        transform: translateY(-50%) scale(0.5);
        z-index: -2;
    }
}

.card a:hover {
    transform: scale(0.94);
}

/* CALLENGES */
.ch-card {
    padding: 60px 40px;
    border-radius: 30px;
}

.challenge {
    margin-top: 274px;
}

/* lead-management-section */
.tsk-card {
    border-radius: 30px;
    padding-top: 74px;
    padding-bottom: 80px;
    animation: jump;
    animation-duration: 5s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.lead-svg {
    width: 100%;
    height: 100%;
}

/* contect-section */
.fr-content {
    padding: 50px !important;
    border-radius: 20px;
}

.mini-head::after {
    position: absolute;
    content: '';
    width: 30px;
    height: 5px;
    border-radius: 10px;
    top: 50%;
    left: -9%;
    transform: translateY(-50%);
    background-color: var(--first-color);
}

.mini-head::before {
    position: absolute;
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    top: 50%;
    left: -2%;
    transform: translateY(-50%);
    background-color: var(--first-color);
}

.form-last {
    border-radius: 20px;
}

.form-last textarea {
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

/* footer */
footer {
    border: 3px solid var(--header-foot-bg);
    border-radius: 30px 30px 0px 0px;

}

.foot-icons {
    width: 40px;
    height: 40px;
}

.foot-head::after {
    position: absolute;
    content: '';
    width: 50%;
    height: 3px;
    background-color: #7200d6;
    border-radius: 5px;
    bottom: -10px;
}

.foot-head3::after {
    position: absolute;
    content: '';
    width: 60%;
    height: 3px;
    background-color: #7200d6;
    border-radius: 5px;
    bottom: -10px;
}

.foot-icon {
    width: 35px;
    height: 35px;
    border: 1px solid var(--all-dark);
    transition: all 0.5s;
}

.foot-icon:hover {
    background-color: var(--white-color);
}

.foot-icon:hover .icon2 {
    color: var(--text-color);
}

.foot-border {
    border-bottom: 1px solid var(--white-color);
}

.foot-icon:hover a .icon1 {
    background: var(--grediunt-color);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -o-background-clip: text;
    transition: all 0.5s;
}

.foots-link a {
    transition: all 0.5s;
}

.foot-main-icon {
    width: 40px;
    height: 40px;
}

/* contact us */
.contact-us .contact-details i {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.contact-us .form-control {
    padding: 8px 16px;
    box-shadow: none !important;
    border: 0;
    border-bottom: 2px solid var(--second-color);
    border-radius: 0px;
}

.btn-web-secondary {
    color: var(--second-color);
    font-weight: 400;
    padding: 6px 12px;
    background-color: transparent;
    border: 2px solid var(--second-color);
    overflow: hidden;
    transition: all 0.2s;
    position: relative;
}

.btn-web-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    right: 100%;
    background-color: var(--second-color);
    width: 100%;
    height: 100%;
    transition: all 0.2s;
}

.btn-web-secondary:hover {
    color: var(--all-white);
    font-weight: 400;
}

.btn-web-secondary:hover::after {
    right: 0;
    z-index: -1;
}

.cnt-form {
    border-radius: 30px;
}

/* featurs */
.f-box-title-number p {
    font-size: 140px;
    background: linear-gradient(168deg, rgb(174 132 255) 35%, rgb(59 0 255 / 51%) 58%, rgb(255 255 255 / 0%) 100%);
    text-transform: uppercase;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* =================================prising================== */
.pr-list::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(190, 21, 237, 0.2497373949579832) 0%, rgb(255, 255, 255) 35%, rgba(190, 21, 237, 0.2497373949579832) 100%);
    border-radius: 10px;
    bottom: -2px;
    left: 0;
}

.pr-list {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 18px;
}

.oofer-popular-div {
    background-color: #fff;
    position: absolute;
    top: 9px;
    right: -32px;
    color: #7200d6;
    transform: rotate(43deg);
    font-weight: 600;
    padding: 8px 35px;
}


.offer_footer {
    background: url(/images/img_offer.png);
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;

}



.ld-manage-img {
    transform: translateX(-1%);

}

.ld-manage-header {
    color: white;
    width: 100px;
}

.ld-manage-header:hover {
    overflow: visible;
}

.ld-manage-header:hover h6 {
    overflow: visible;
    color: black;
    width: 200px;
    text-align: left !important;
}


.ws ul li {
    position: relative;
    z-index: 1;
}

.ws ul li::before {
    content: '';
    position: absolute;
    top: 0;
    left: -3px;
    width: 100%;
    height: 100%;
    border-radius: 100px 100px;
    z-index: -2;
}

.ws ul li::before {
    background: #c7c7c780;
}

.ws ul li.active::before {
    background: rgb(204, 14, 255);
    background: linear-gradient(36deg, rgba(204, 14, 255, 1) 6%, rgba(85, 46, 168, 1) 44%, rgba(104, 34, 173, 1) 73%);
}