/* -----------------------------------------
  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");
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");

:root {
    --bs-primary: #25D366;
    --bs-primary-rgb: 37, 211, 102;
    --bs-body-bg: #0F0F0F;
    --bs-body-bg-rgb: 15, 15, 15;
    --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: #3C3C3C;
    --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: "Plus Jakarta Sans", sans-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, .1);
    --shadow-sm: 0px 10px 40px rgb(0, 0, 0, .06);
    --swiper-theme-color: var(--bs-primary);
}

: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
-----------------------------------*/
.anim-btn {
    color: var(--bs-white);
    position: relative;
    display: inline-block;
    padding: 11px 22px;
    overflow: hidden;
    text-align: center;
    text-decoration: none;
    border: 1px solid var(--bs-primary);
    transition: 0.7s ease;
    background: var(--bs-primary);
    z-index: 1;
}

.anim-btn span {
    position: absolute;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: var(--bs-white);
    transition: width 0.7s ease, height 0.7s ease;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.anim-btn:hover {
    color: var(--bs-primary);
}

.anim-btn:hover span {
    width: 225%;
    height: 562.5px;
}

.anim-btn.light {
    color: var(--bs-heading-color);
    border: 1px solid var(--bs-border-color);
    background: var(--bs-white);
}

.anim-btn.light span {
    background-color: var(--bs-primary);
}

.anim-btn.light:hover {
    color: var(--bs-white);
    border: 1px solid var(--bs-primary);
}

.anim-btn.dark {
    color: var(--bs-heading-color);
    border: 1px solid var(--bs-border-color);
    background: #0D0D0D;
}

.anim-btn.dark span {
    background-color: var(--bs-primary);
}

.anim-btn.dark:hover {
    color: var(--bs-white);
    border: 1px solid var(--bs-primary);
}

/* -----------------------------------------
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: 60px;
    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 .shapes .shape-1 {
    position: absolute;
    top: 15%;
    left: 0;
}

.hero-area .shapes .shape-2 {
    position: absolute;
    top: 15%;
    right: 0;
}

.hero-area .hero-inner .content .title {
    max-width: 820px;
    margin-inline: auto;
    text-align: center;
}

.hero-area .hero-inner .content .title span {
    font-family: var(--font-playfair);
    color: var(--bs-primary);
    font-style: italic;
}

.hero-area .hero-inner .content .desc {
    max-width: 600px;
    margin-inline: auto;
}

.hero-area .hero-inner .hero-image {
    max-width: 1000px;
    width: 100%;
    border: 8px solid rgba(119, 119, 119, 0.38);
    border-radius: 16px;
    margin-inline: auto;
    position: relative;
    overflow: hidden;
}

.hero-area .hero-inner .hero-image::after {
    position: absolute;
    content: "";
    top: 100%;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 8px;
    transition: all 0.3s ease;
    visibility: hidden;
    opacity: 0;
    background: linear-gradient(to bottom, rgba(var(--bs-primary-rgb), 0), rgba(var(--bs-primary-rgb), 0.4));
}

.hero-area .hero-inner .hero-image:hover::after {
    top: 0%;
    visibility: visible;
    opacity: 1;
}

.hero-area .hero-inner .hero-image img {
    max-width: 100%;
}

@media (max-width: 1199.98px) {
    .hero-area .shapes {
        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;
    border: 1px solid #3C3C3C;
}

.brand-area .brand-slider {
    position: relative;
}

.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(15, 15, 15, 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(15, 15, 15, 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;
}

/*-----------------------------------
    step-area css
-----------------------------------*/
.step-area {
    overflow-x: hidden;
}

.step-area .step-card {
    background: #161616;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 0;
    border: 1px solid var(--bs-border-color);
    transition: all 0.3s ease;
}

.step-area .step-card .light-bg {
    position: absolute;
    top: 0;
    left: 0;
}

.step-area .step-card .serial {
    --size: 70px;
    height: var(--size);
    width: var(--size);
    display: inline-block;
    border: 1px solid var(--bs-border-color);
    border-radius: 50%;
    text-align: center;
    line-height: var(--size);
    font-size: 32px;
    position: absolute;
    top: -35px;
    left: 20px;
    background: #222222;
    transition: all 0.3s ease;
}

.step-area .step-card .step-card-image {
    padding-inline: 24px;
    margin-bottom: 1px;
    position: relative;
}

.step-area .step-card .step-card-image .lighting-anim-img .light-1 {
    position: absolute;
    top: 0;
    left: 0;
}

.step-area .step-card .step-card-image img {
    height: 100%;
    width: 100%;
}

.step-area .step-card .content {
    padding: 50px 24px 18px 24px;
}

.step-area .step-card:hover {
    border-color: var(--bs-primary);
}

.step-area .step-card:hover .serial {
    background: var(--bs-primary);
    color: #fff;
}

.step-area .step-card-row .step-card-col:nth-child(1) .step-card {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.step-area .step-card-row .step-card-col:nth-child(3) .step-card {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

@media (max-width: 991.98px) {
    .step-area .step-card-row .step-card-col:nth-child(1) .step-card {
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
        border-bottom-left-radius: 0px;
    }

    .step-area .step-card-row .step-card-col:nth-child(3) .step-card {
        border-top-right-radius: 0px;
        border-bottom-right-radius: 12px;
        border-bottom-left-radius: 12px;
    }
}

@media (max-width: 768.98px) {
    .step-area .step-card .serial {
        --size: 55px;
        font-size: 24px;
    }
}

/*-----------------------------------
    feature css
-----------------------------------*/
.feature-section {
    overflow-x: hidden;
}

.feature-section .feature-area {
    border-radius: 20px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.feature-section .feature-area .feature-area-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 80%;
    width: 100%;
    z-index: -1;
}

.feature-section .feature-area .feature-area-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(45deg, rgb(13, 18, 14), rgba(0, 0, 0, 0));
    z-index: 1;
}

.feature-section .feature-area .feature-area-top {
    padding: 40px;
    position: relative;
}

.feature-section .feature-area .feature-area-top .title {
    max-width: 660px;
}

.feature-section .feature-area .feature-area-top .desc {
    max-width: 530px;
}

.feature-section .feature-area .video-btn {
    background: rgba(255, 255, 255, 0.31);
    border: 1px solid rgba(255, 255, 255, 0.85);
    color: var(--bs-white);
    box-shadow: 0px 10px 20px rgba(255, 255, 255, 0.29);
}

.feature-section .feature-area .video-btn::after {
    background-color: rgba(255, 255, 255, 0.2);
}

.feature-section .feature-area .video-btn::before {
    background-color: rgba(255, 255, 255, 0.2);
}

.feature-section .feature-card {
    border-radius: 20px;
    padding: 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;
    transition: all 0.3s ease;
    backdrop-filter: blur(25px);
}

.feature-section .feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 20px;
    background: linear-gradient(to bottom, rgba(148, 148, 148, 0.5) 0%, rgba(148, 148, 148, 0.5) 0%, rgba(47, 47, 47, 0.8) 50%, rgba(148, 148, 148, 0.1) 100%);
    -webkit-mask: linear-gradient(#949494 0 0) content-box, linear-gradient(#949494 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.feature-section .feature-card .feature-card-header {
    display: flex;
    gap: 15px;
}

.feature-section .feature-card .feature-card-header .icon {
    border-radius: 8px;
    background: linear-gradient(to bottom, rgba(33, 41, 53, 0), rgb(1, 83, 203));
    --size: 60px;
    height: var(--size);
    max-width: var(--size);
    min-width: var(--size);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 10px 24px rgba(1, 106, 203, 0.37);
}

.feature-section .feature-card .feature-card-header .icon img {
    transition: all 0.4s ease;
}

.feature-section .feature-card .feature-card-header .color-2 {
    background: linear-gradient(to bottom, rgba(33, 41, 53, 0), rgb(1, 203, 81));
    box-shadow: 0px 10px 24px rgba(1, 203, 81, 0.37);
}

.feature-section .feature-card .feature-card-header .color-3 {
    background: linear-gradient(to bottom, rgba(33, 41, 53, 0), rgb(1, 203, 202));
    box-shadow: 0px 10px 24px rgba(1, 203, 202, 0.37);
}

.feature-section .feature-card .feature-card-image-wrap {
    background: #1A1D24;
    padding: 30px 10px 0 10px;
    border-radius: 14px;
}

.feature-section .feature-card .feature-card-image-wrap .feature-card-image {
    border: 1px solid #3C3C3C;
    border-radius: 14px 14px 0 0px;
    overflow: hidden;
}

.feature-section .feature-card .feature-card-image-wrap .feature-card-image img {
    width: 100%;
}

.feature-section .feature-card:hover .feature-card-header .icon img {
    transform: rotateY(180deg);
}

.feature-section .feature-card:hover {
    border-color: var(--bs-primary);
    box-shadow: 0 6px 20px 0 rgba(var(--bs-primary-rgb), 0.4);
}

.feature-section .ratio.ratio-5-2::before {
    padding-bottom: 85%;
}

@media (max-width: 460px) {
    .feature-section .feature-card .feature-card-header {
        flex-direction: column;
    }
}

/*-----------------------------------
  pricing css
-----------------------------------*/
.pricing-area .pricing-card {
    border-radius: 20px;
    border: 1.5px solid #2D2D2D;
    padding: 30px 20px 30px 20px;
    position: relative;
    overflow: hidden;
    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);
    transition: all 0.4s ease;
}

.pricing-area .pricing-card .blur-shape {
    position: absolute;
    top: 0px;
    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 {
    margin-bottom: 0;
    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;
    border-color: var(--bs-primary);
    background: var(--bs-primary);
}

.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 {
    border-color: var(--bs-primary);
}

.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(--bs-primary);
    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(--bs-primary) !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(--bs-primary) !important;
    z-index: -1;
    border: 0 !important;
    transform: translateX(-50%);
    transition: all 0.3s ease-in-out;
    border-radius: 8px !important;
}

.pricing-accordion-area .pricing-accordion .accordion-item {
    margin-bottom: 20px;
    border: 1px solid #252525;
    border-radius: 12px;
    position: relative;
    z-index: 1;
}

.pricing-accordion-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-accordion-area .pricing-accordion .accordion-button {
    background: transparent;
    color: #fff;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    font-size: inherit;
}

.pricing-accordion-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-accordion-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-accordion-area .pricing-accordion .accordion-button:not(.collapsed)::after {
    content: "\f105";
    width: auto;
    transform: rotate(90deg);
}

.pricing-accordion-area .pricing-accordion .accordion-button:not(.collapsed) .icon {
    background: var(--color-gradiant);
}

.pricing-accordion-area .pricing-accordion .accordion-body {
    padding-top: 0;
}

.pricing-accordion-area .pricing-accordion .accordion-item.active::after {
    visibility: visible;
    opacity: 1;
}

/*-----------------------------------
  testimonial css
-----------------------------------*/
.section-testimonial {
    overflow: hidden;
}

.testimonial-slider {
    height: 550px;
}

.testimonial-slider .testimonial-row {
    display: flex;
    gap: 20px;
}

.testimonial-slider .testimonial-row .testimonial-card {
    flex: 1;
}

.testimonial-slider .swiper-slide {
    height: auto !important;
}

.testimonial-area {
    padding: 50px 50px 50px 50px;
    position: relative;
}

.testimonial-area .testimonial-card {
    background: #202020;
    padding: 30px;
    border-radius: 8px;
}

.testimonial-area .testimonial-card .desc {
    color: var(--bs-body-color);
}

.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;
}

@media (max-width: 991.98px) {
    .testimonial-row {
        flex-direction: column;
    }

    .testimonial-area {
        padding: 50px 30px 50px 30px;
    }
}

@media (max-width: 575px) {
    .testimonial-area {
        padding: 40px 20px 30px 20px;
    }

    .testimonial-area::after {
        height: 20%;
    }
}

/*# sourceMappingURL=home-page.css.map */
/* -----------------------------------------
    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;
    }
}
