/* -----------------------------------------
  Variable CSS
----------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
:root {
    --bs-primary: #0099ff;
    --bs-primary-rgb: 0, 153, 255;

    --bs-primary: #00F7FF;
    --bs-primary-rgb: 0, 247, 255;

    --bs-body-bg: #151515;
    --bs-body-bg-rgb: 21, 21, 21;
    --bs-body-color: #9a9a9a;
    --bs-body-color-rgb: 154, 154, 154;
    --bs-heading-color: #ffffff;
    --bs-heading-color-rgb: 255, 255, 255;
    --bs-border-color: #252525;
    --bs-secondary: #eff6ff;
    --bs-secondary-rgb: 239, 246, 255;
    --bs-dark: #000;
    --bs-dark-rgb: 0, 0, 0;
    --bs-body-font-family: "Inter", sans-serif;
    --bs-body-font-weight: 500;
    --bs-heading-font-family: "Sora", serif;
    --font-awesome: "Font Awesome 6 Pro";
    --font-playfair: "Playfair Display", serif;
    --bs-radius-sm: 6px;
    --bs-radius-md: 8px;
    --bs-radius-lg: 12px;
    --bg-1: #212121;
    --bg-2: #f8f8f8;
    --bg-3: #ebebeb;
    --bs-success: green;
    --bs-red: #eb4c4c;
    --bs-red-rgb: 235, 76, 76;
    --bs-light: #f5f5f5;
    --color-medium: #757575;
    --bs-blue: #0061df;
    --bs-blue-rgb: 0, 97, 223;
    --font-lg: 18px;
    --font-sm: 14px;
    --font-xsm: 12px;
    --font-medium: 500;
    --bs-green: #00b67a;
    --bs-green-rgb: 0, 182, 122;
    --bs-yellow: #ffc107;
    --bs-yellow-rgb: 255, 193, 7;
    --shadow-md: 0px 4px 80px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 5px 30px -5px rgba(8, 0, 42, 0.1);
    --shadow-sm: 0px 10px 40px rgb(0, 0, 0, 0.06);
    --swiper-theme-color: var(--bs-primary);
    --color-gradiant: radial-gradient(
        106.42% 117.56% at 0% 91.35%,
        #09f 0%,
        #a033ff 60%,
        #ff5280 90%,
        #ff7061 100%
    );
    --color-linear-gradient: linear-gradient(
        135deg,
        #09f 0%,
        #a033ff 40%,
        #ff5280 80%,
        #ff7061 100%
    );
}

:root {
    --font-size-base: 1rem;
    --h1-font-size: 4rem;
    --h2-font-size: 3rem;
    --h3-font-size: 2rem;
    --h4-font-size: 1.5rem;
    --h5-font-size: 1.125rem;
    --h6-font-size: 1rem;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--bs-heading-font-family);
}

h1,
.h1 {
    font-size: calc(2.2rem + 1.8vw);
}

h2,
.h2 {
    font-size: calc(1.4rem + 1.8vw);
}

h3,
.h3 {
    font-size: calc(1.325rem + 0.9vw);
}

h4,
.h4 {
    font-size: calc(1.275rem + 0.3vw);
}

h5,
.h5 {
    font-size: 1.125rem;
}

@media (min-width: 1200px) {
    h1,
    .h1 {
        font-size: var(--h1-font-size);
    }
    h2,
    .h2 {
        font-size: var(--h2-font-size);
    }
    h3,
    .h3 {
        font-size: var(--h3-font-size);
    }
    h4,
    .h4 {
        font-size: var(--h4-font-size);
    }
}
h1,
.h1 {
    line-height: 1.3;
    font-weight: 600;
}

h2,
.h2 {
    line-height: 1.228;
    font-weight: 600;
}

h3,
.h3 {
    line-height: 1.4;
    font-weight: 600;
}

h4 {
    line-height: 1.4;
    font-weight: 600;
}

h5 {
    line-height: 1.4;
    font-weight: 600;
}

h6 {
    line-height: 1.4;
    font-weight: 500;
}

body {
    font-family: var(--bs-body-font-family);
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    scroll-behavior: smooth;
    box-sizing: border-box;
    overflow-x: hidden;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1440px;
    }
}
/*====================== */
/*====== preloader ======*/
/*====================== */
.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--bs-white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

/*----------------------------------------*/
/*  00. PRELOADER CSS START
/*----------------------------------------*/
@-webkit-keyframes wcLoading {
    0% {
        -webkit-transform: scaleY(0.1);
        transform: scaleY(0.1);
        background: var(--bs-white);
    }
    50% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
        background: var(--bs-primary);
    }
    100% {
        -webkit-transform: scaleY(0.1);
        transform: scaleY(0.1);
        background: transparent;
    }
}
@keyframes wcLoading {
    0% {
        -webkit-transform: scaleY(0.1);
        transform: scaleY(0.1);
        background: var(--bs-white);
    }
    50% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
        background: var(--bs-primary);
    }
    100% {
        -webkit-transform: scaleY(0.1);
        transform: scaleY(0.1);
        background: transparent;
    }
}
.preloader {
    width: 100%;
    height: 100vh;
    background-color: var(--bs-body-bg);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 99999;
}

.loading {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 2;
}

.loading .bar {
    width: 6px;
    height: 60px;
    background: var(--bs-white);
    display: inline-block;
    -webkit-transform-origin: bottom center;
    transform-origin: bottom center;
    -webkit-animation: wcLoading 1.5s ease-in-out infinite;
    animation: wcLoading 1.5s ease-in-out infinite;
}

.loading .bar1 {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

.loading .bar2 {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.loading .bar3 {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.loading .bar4 {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.loading .bar5 {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.loading .bar6 {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.loading .bar7 {
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s;
}

.loading .bar8 {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

/*-----------------------------------
  Button 
-----------------------------------*/
.thm-btn {
    padding: 13px 24px;
    border-radius: 82px;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    background: var(--color-gradiant);
    background-size: 300% 300%;
    box-shadow: 0 9px 12px 0 rgba(14, 18, 27, 0.02);
    color: #fff !important;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.5s ease;
    overflow: hidden;
    border: 0;
    animation: river-flow 6s linear infinite;
}
.thm-btn i {
    margin-inline-end: 7px;
}
.thm-btn:hover {
    color: #fff;
}
.thm-btn:active {
    color: #fff;
}
.thm-btn:focus-visible {
    color: #fff;
}
.thm-btn:focus {
    outline: none;
    box-shadow: none;
}

@keyframes river-flow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
/* -----------------------------------------
Back to Top CSS
----------------------------------------- */
.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 90px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    box-shadow: rgba(var(--bs-primary-rgb), 0.4) 2px 3px 30px 0px;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap::after {
    position: absolute;
    font-family: var(--font-awesome);
    content: "\f062";
    text-align: center;
    line-height: 46px;
    font-size: 24px;
    color: var(--bs-primary);
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: var(--bs-primary);
    stroke-width: 4;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

/*****************************/
/*** Magic Cursor CSS *******/
/**************************/
.magic-cursor,
.magic-cursor-inner {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease, width 0.2s, height 0.2s;
}

.magic-cursor {
    width: 30px;
    height: 30px;
    background: transparent;
    border: 1px solid var(--bs-primary);
}

.magic-cursor-inner {
    width: 8px;
    height: 8px;
    background: var(--bs-primary);
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
        margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

/* When hovering on <a>, make the cursor larger */
.magic-cursor.cursor-hover {
    background: rgba(var(--bs-primary-rgb), 0.4);
    border: transparent;
    height: 60px;
    width: 60px;
}
@media (max-width: 768px) {
    .magic-cursor.cursor-hover {
        height: 50px;
        width: 50px;
    }
}

.magic-cursor-inner.cursor-inner-hover {
    background: transparent;
}

/*-----------------------------------
  Hero css 
-----------------------------------*/
.hero-area {
    position: relative;
    z-index: 1;
    padding-top: 130px;
    overflow: hidden;
}
.hero-area .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
}
.hero-area .bg-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.hero-area .angle-area .angle-1 {
    position: absolute;
    bottom: 0;
    left: 0;
    height: auto;
    z-index: -1;
}
.hero-area .angle-area .angle-1 path {
    fill: #ff5280;
    animation: fill-color-change 5s infinite alternate;
}
.hero-area .angle-area .angle-sm-1 {
    position: absolute;
    top: 0;
    left: 0;
    height: auto;
    z-index: 0;
}
.hero-area .angle-area .angle-sm-1 path {
    stroke: #ff5280;
    animation: stroke-color-change 5s infinite alternate;
}
.hero-area .angle-area .angle-sm-2 {
    position: absolute;
    top: 0;
    right: -20px;
    height: auto;
    z-index: 0;
}
.hero-area .angle-area .angle-sm-2 path {
    stroke: #ff5280;
    animation: stroke-color-change 5s infinite alternate;
}
.hero-area .angle-area .angle-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    height: auto;
    z-index: -1;
}
.hero-area .angle-area .angle-2 path {
    fill: #ff5280;
    animation: fill-color-change 5s infinite alternate;
}
.hero-area .light-area .light-1 {
    position: absolute;
    top: 0;
    left: 0;
    height: auto;
    z-index: -1;
    animation: light-floow 4s linear infinite;
}
.hero-area .light-area .light-2 {
    position: absolute;
    top: 0;
    right: 0;
    height: auto;
    z-index: -1;
    animation: light-floow 4s linear infinite;
}
.hero-area .hero-inner .content .subtitle {
    position: relative;
    display: inline-block;
    padding: 0 25px;
}
.hero-area .hero-inner .content .subtitle .left {
    position: absolute;
    left: 0;
    top: -7px;
}
.hero-area .hero-inner .content .subtitle .right {
    position: absolute;
    right: 0;
    top: -7px;
}
.hero-area .hero-inner .content .title {
    max-width: 950px;
    margin-inline: auto;
    text-align: center;
}
.hero-area .hero-inner .content .title span {
    font-family: var(--font-playfair);
    background: var(--color-linear-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
    background-size: 200% 200%;
    animation: gradient-flow 2.5s ease infinite alternate;
}
.hero-area .hero-inner .content .desc {
    max-width: 600px;
    margin-inline: auto;
}
.hero-area .hero-inner .hero-image {
    width: 100%;
}
.hero-area .hero-inner .hero-image img {
    max-width: 100%;
}

@keyframes gradient-flow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
@keyframes light-floow {
    0% {
        opacity: 0.7;
        transform: rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: rotate(7deg);
    }
    100% {
        opacity: 0.8;
        transform: rotate(0deg);
    }
}
@media (max-width: 1199.98px) {
    .hero-area .angle-area {
        display: none;
    }
}


/*-----------------------------------
  brand css 
-----------------------------------*/
.brand-area .subtitle {
    border-radius: 30px;
    background: #191919;
    color: #f1f1f1;
    display: inline-block;
    padding: 8px 20px;
    z-index: 1;
    position: relative;
}
.brand-area .subtitle::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 1px;
    background: var(--color-gradiant);
    -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: -1;
}
.brand-area .brand-slider {
    position: relative;
    height: 100px;
}
.brand-area .brand-slider::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 8%;
    border-radius: 0 0 0 30px;
    opacity: 0.91;
    background: linear-gradient(
        270deg,
        rgba(21, 21, 21, 0) 0%,
        rgba(21, 21, 21, 0.97) 58.9%
    );
    z-index: 2;
}
.brand-area .brand-slider::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 8%;
    border-radius: 0 0 30px 0;
    opacity: 0.91;
    background: linear-gradient(
        -270deg,
        rgba(21, 21, 21, 0) 0%,
        rgba(21, 21, 21, 0.97) 58.9%
    );
    z-index: 2;
}
.brand-area .brand-slider .item {
    text-align: center;
    padding: 25px 0;
}
.brand-area .brand-slider .item img {
    max-width: 100%;
    height: auto;
}
.brand-area .brand-slider .swiper-wrapper {
    transition-timing-function: linear !important;
}
.brand-area .brand-slider .swiper-slide {
    height: auto !important;
}

/*-----------------------------------
    step-area css 
-----------------------------------*/
.step-area {
    overflow-x: hidden;
}
.step-area .step-card {
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    z-index: 0;
    border: 1px solid #2d2d2d;
    transition: all 0.3s ease;
}
.step-area .step-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: var(--color-gradiant);
    -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: 1;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}
.step-area .step-card .blur-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
}
.step-area .step-card .blur-bg img {
    height: 100%;
    width: 100%;
}
.step-area .step-card .step-card-image img {
    width: 100%;
}
.step-area .step-card .content {
    padding: 20px 15px 24px 15px;
}
.step-area .step-card:hover::after {
    visibility: visible;
    opacity: 1;
}

/*-----------------------------------
  About css 
-----------------------------------*/
.about-area {
    position: relative;
    overflow-x: hidden;
}
.about-area .about-image {
    height: 100%;
}
.about-area .about-image img {
    width: 100%;
    border-radius: 12px;
    height: 100%;
    object-fit: cover;
}
.about-area .about-row {
    --bs-gutter-x: 5rem;
}
.about-area .about-accordion .accordion-item {
    margin-bottom: 20px;
    border: 1px solid #252525;
    border-radius: 12px;
    position: relative;
}
.about-area .about-accordion .accordion-item::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 1px;
    background: var(--color-gradiant);
    -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: 1;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}
.about-area .about-accordion .accordion-button {
    background: transparent;
    color: #fff;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    font-size: inherit;
}
.about-area .about-accordion .accordion-button .icon {
    margin-inline-end: 20px;
    --size: 56px;
    height: var(--size);
    max-width: var(--size);
    width: 100%;
    text-align: center;
    line-height: var(--size);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    border-radius: 12px;
    border: 1.5px solid #363232;
    background: #1b1b1b;
    box-shadow: 0 32px 64px -12px rgba(0, 0, 0, 0.08),
        0 2.15px 0.5px -2px rgba(0, 0, 0, 0.25),
        0 24px 24px -16px rgba(8, 8, 8, 0.04), 0 6px 13px 0 rgba(8, 8, 8, 0.03),
        0 6px 4px -4px rgba(8, 8, 8, 0.05), 0 5px 1.5px -4px rgba(8, 8, 8, 0.05);
}
.about-area .about-accordion .accordion-button::after {
    content: "+";
    font-family: var(--font-awesome);
    background-image: inherit;
    font-size: 24px;
    height: inherit;
    width: auto;
}
.about-area .about-accordion .accordion-button:not(.collapsed)::after {
    content: "\f068";
    width: auto;
}
.about-area .about-accordion .accordion-button:not(.collapsed) .icon {
    background: var(--color-gradiant);
}
.about-area .about-accordion .accordion-body {
    padding-top: 0;
}
.about-area .about-accordion .accordion-item.active::after {
    visibility: visible;
    opacity: 1;
}

@media (min-width: 992px) {
    .about-area .container {
        max-width: 100%;
        padding-inline: 0;
    }
}
@media (max-width: 992px) {
    .about-area .fluid-right {
        padding-inline-end: inherit;
    }
}
/*-----------------------------------
    feature css 
-----------------------------------*/
.feature-area {
    overflow-x: hidden;
}
.feature-area .feature-card {
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    z-index: 0;
    border: 1px solid #2d2d2d;
    transition: all 0.3s ease;
}
.feature-area .feature-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: var(--color-gradiant);
    -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: 1;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}
.feature-area .feature-card .blur-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
}
.feature-area .feature-card .blur-bg img {
    height: 100%;
    width: 100%;
}
.feature-area .feature-card .feature-card-image {
    padding: 15px;
}
.feature-area .feature-card .feature-card-image img {
    width: 100%;
}
.feature-area .feature-card .content {
    padding: 20px 15px 24px 15px;
}
.feature-area .feature-card .light-img-left {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    animation: light-anim 5s linear infinite;
    transform-origin: center center;
}
.feature-area .feature-card .light-img-right {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    animation: light-anim 5s linear infinite;
}
.feature-area .feature-card:hover::after {
    visibility: visible;
    opacity: 1;
}
.feature-area .ratio.ratio-5-2::before {
    padding-bottom: 55%;
}
.feature-area .ratio.ratio-5-3::before {
    padding-bottom: 85%;
}

@keyframes light-anim {
    0% {
        opacity: 0.3;
        transform: rotate(0deg) scale(1);
    }
    50% {
        opacity: 1;
        transform: rotate(5deg) scale(1.05);
    }
    100% {
        opacity: 0.2;
        transform: rotate(0deg) scale(1);
    }
}
/*-----------------------------------
  pricing css 
-----------------------------------*/
.pricing-area .pricing-card {
    border-radius: 20px;
    border: 1.5px solid #2d2d2d;
    padding: 30px 20px 30px 20px;
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 4px 0 rgba(20, 20, 20, 0.25);
}
.pricing-area .pricing-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: var(--color-gradiant);
    -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: 1;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}
.pricing-area .pricing-card .blur-shape {
    position: absolute;
    top: -120px;
    left: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
}
.pricing-area .pricing-card .blur-shape img {
    height: 100%;
    width: 100%;
}
.pricing-area .pricing-card .list-item-area .item-list li {
    position: relative;
    padding-bottom: 14px;
    margin-bottom: 14px;
}
.pricing-area .pricing-card .list-item-area .item-list li::after {
    content: "";
    position: absolute;
    left: -20px;
    right: -20px;
    bottom: 0;
    height: 1px;
    background: #2d2d2d;
}
.pricing-area .pricing-card .list-item-area .item-list li:last-child::after {
    display: none;
}
.pricing-area .pricing-card .list-item-area .item-list li:last-child {
    padding-bottom: 0;
}
.pricing-area .pricing-card .list-item-area .item-list i {
    --size: 24px;
    height: var(--size);
    width: var(--size);
    line-height: var(--size);
    border-radius: 50%;
    text-align: center;
    font-size: 14px;
    color: #9a9a9a;
    background-color: #2d2d2d;
    -webkit-margin-end: 10px;
    margin-inline-end: 10px;
}
.pricing-area .pricing-card .list-item-area .item-list i.fa-xmark {
    color: var(--bs-white);
    background-color: var(--bs-red);
}
.pricing-area .pricing-card .pricing-btn {
    padding: 11px 20px;
    width: 100%;
    color: var(--bs-body-color);
    background: #2d2d2d;
    border: 1px solid #3c3c3c;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.pricing-area .pricing-card .pricing-btn:hover {
    color: #fff;
    background: var(--Messenger, var(--color-gradiant));
}
.pricing-area .pricing-card .show-more {
    cursor: pointer;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--bs-body-color);
}
.pricing-area .pricing-card:hover::after {
    visibility: visible;
    opacity: 1;
}
.pricing-area .pricing-card-wrap {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}
.pricing-area .pricing-card-wrap .suggest_package {
    border-radius: 0 0 20px 20px;
    background: var(--color-gradiant);
    width: 100%;
    padding: 30px 20px 12px 20px;
    text-align: center;
    color: #fff;
    margin-top: -20px;
}
.pricing-area .pricing-tab-navigation {
    background: #202020;
    max-width: fit-content;
    border: 1px solid #363636;
    padding: 12px 16px;
    border-radius: 8px;
    position: relative;
    z-index: 3;
}
.pricing-area .pricing-tab-navigation .nav-tabs .nav-item {
    border-radius: 8px;
    overflow: hidden;
}
.pricing-area .pricing-tab-navigation .nav-tabs .nav-link {
    border-radius: 8px;
    padding: 10px 30px;
    background: transparent;
    color: var(--bs-body-color);
    overflow: hidden;
    border: 0 !important;
}
.pricing-area
    .pricing-tab-navigation.tabs-navigation
    .nav[data-hover="fancyHover"]
    .nav-link:is(.active, :hover) {
    border-radius: 8px;
    background: transparent;
    color: var(--bs-body-color);
    overflow: hidden;
    border: 0;
}
.pricing-area
    .pricing-tab-navigation.tabs-navigation
    .nav[data-hover="fancyHover"]
    .nav-item:is(.active)
    .nav-link {
    color: var(--bs-white);
    background: var(--Messenger, var(--color-gradiant)) !important;
    border: 0 !important;
}
.pricing-area
    .pricing-tab-navigation.tabs-navigation
    .nav[data-hover="fancyHover"]
    .nav-item:is(.active)
    .nav-link:is(:hover) {
    background: var(--bs-white);
    border: 1px solid var(--bs-primary);
    border-radius: 8px;
}
.pricing-area .pricing-tab-navigation.tabs-navigation .target {
    position: absolute;
    background: var(--Messenger, var(--color-gradiant)) !important;
    z-index: -1;
    border: 0 !important;
    transform: translateX(-50%);
    transition: all 0.3s ease-in-out;
    border-radius: 8px !important;
}
.pricing-area .pricing-accordion .accordion-item {
    margin-bottom: 20px;
    border: 1px solid #252525;
    border-radius: 12px;
    position: relative;
    z-index: 1;
}
.pricing-area .pricing-accordion .accordion-item::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url("../../images/pricing/blur-shape-2.png") no-repeat top right;
    background-size: contain;
    z-index: -1;
    visibility: hidden;
    opacity: 1;
}
.pricing-area .pricing-accordion .accordion-button {
    background: transparent;
    color: #fff;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    font-size: inherit;
}
.pricing-area .pricing-accordion .accordion-button .icon {
    margin-inline-end: 20px;
    --size: 56px;
    height: var(--size);
    max-width: var(--size);
    width: 100%;
    text-align: center;
    line-height: var(--size);
    font-size: 24px;
    border-radius: 12px;
    border: 1.5px solid #363232;
    background: #1b1b1b;
    box-shadow: 0 32px 64px -12px rgba(0, 0, 0, 0.08),
        0 2.15px 0.5px -2px rgba(0, 0, 0, 0.25),
        0 24px 24px -16px rgba(8, 8, 8, 0.04), 0 6px 13px 0 rgba(8, 8, 8, 0.03),
        0 6px 4px -4px rgba(8, 8, 8, 0.05), 0 5px 1.5px -4px rgba(8, 8, 8, 0.05);
}
.pricing-area .pricing-accordion .accordion-button::after {
    content: "\f105";
    font-family: var(--font-awesome);
    color: var(--bs-primary);
    background-image: inherit;
    font-size: 24px;
    height: inherit;
    width: auto;
}
.pricing-area .pricing-accordion .accordion-button:not(.collapsed)::after {
    content: "\f105";
    width: auto;
    transform: rotate(90deg);
}
.pricing-area .pricing-accordion .accordion-button:not(.collapsed) .icon {
    background: var(--color-gradiant);
}
.pricing-area .pricing-accordion .accordion-body {
    padding-top: 0;
}
.pricing-area .pricing-accordion .accordion-item.active::after {
    visibility: visible;
    opacity: 1;
}

.pricing-area .tab-content{
    outline: 0;
}

/*-----------------------------------
  testimonial css 
-----------------------------------*/
.testimonial-area {
    padding: 80px 50px 50px 50px;
    position: relative;
}
.testimonial-slider {
    height: 460px;
}
.testimonial-slider .testimonial-row {
    display: flex;
    gap: 20px;
}
.testimonial-area .testimonial-card {
    background: #202020;
    padding: 30px;
    border-radius: 8px;
}
@media (min-width:992.98px) and (max-width: 1200px) {
    .testimonial-area .testimonial-card {
        padding: 15px;
    }
}
.testimonial-area .testimonial-card .quote_arrow {
    padding-top: 15px;
}
.testimonial-area .testimonial-card .quote_arrow:before {
    top: -3px;
    left: 1px;
}

.testimonial-area .testimonial-card .quote_arrow:after {
    content: "\201D";
    right: 20px;
    bottom: -18px;
}

.testimonial-area .testimonial-card .desc {
    color: var(--bs-body-color-2);
}

.testimonial-area .testimonial-card .testimonial-card-footer .author-image {
    height: 48px;
    max-width: 48px;
    width: 100%;
    border-radius: 50%;
    overflow: hidden;
}
.testimonial-area .testimonial-card .testimonial-card-footer .author-name {
    color: var(--bs-white);
    transition: all 0.3s ease;
}
.testimonial-area
    .testimonial-card
    .testimonial-card-footer
    .author-name:hover {
    color: var(--bs-primary);
}
.testimonial-area .testimonial-card .testimonial-card-footer .author-name a {
    text-decoration: none;
}
.testimonial-area .testimonial-card .testimonial-card-footer .rateing {
    display: flex;
    align-items: center;
}
.testimonial-area .testimonial-card .testimonial-card-footer .rateing i {
    color: #ffdf6c;
}
.testimonial-area .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
}
.testimonial-area::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    height: 45%;
    width: 100%;
    background: linear-gradient(0deg, #151515 37.38%, rgba(21, 21, 21, 0) 100%);
    z-index: 1;
}
.testimonial-slider .testimonial-row .testimonial-card {
    flex: 1;
}
.testimonial-slider .swiper-slide {
    height: auto !important;
}
@media (max-width: 1399px) {
    .testimonial-slider {
        height: 540px;
    }
}
@media (max-width: 992.98px) {
    .testimonial-row {
        flex-direction: column;
    }
    .testimonial-slider {
        height: 640px;
    }
}
/* -----------------------------------------
    Cookie alert CSS
----------------------------------------- */
.cookie-consent {
    position: fixed;
    background-color: var(--bs-dark);
    bottom: 0px;
    width: 100%;
    padding: 15px 0px 5px;
    z-index: 10000000000;
    color: var(--bs-white);
}

.cookie-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

button.cookie-consent__agree {
    padding: 13px 24px;
    border-radius: 82px;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    background: var(--color-gradiant);
    background-size: 300% 300%;
    box-shadow: 0 9px 12px 0 rgba(14, 18, 27, 0.02);
    color: #fff !important;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.5s ease;
    overflow: hidden;
    border: 0;
    animation: river-flow 6s linear infinite;
}

.cookie-consent__message {
    background-color: transparent !important;
    color: var(--color-light);
    font-size: 14px;
}
.cookie-consent__message p {
    margin-bottom: 0px;
}
@media only screen and (max-width: 991px) {
    .cookie-container {
        display: block;
        text-align: center;
    }

    button.cookie-consent__agree {
        margin-top: 15px;
    }

    span.cookie-consent__message {
        line-height: 20px;
        display: block;
    }
}
