/********************************************************
1. body start
 *******************************************************/
:root {
    --text-color: #4A5674;
    --primary-color: #217BFF;
    --secondary-color: #A457F1;
    --white-color: #ffffff;
    --green-color: #8cdf5f;
    --dark-color: #2D3958;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    font-family: "Afacad", serif;
    background-color: var(--white-color);
}

html {
    scroll-behavior: smooth;
}

*,
*:before,
*:after {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

a,
a:hover,
a:focus {
    text-decoration: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    word-break: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    margin: 0;
    padding: 0;
    word-break: break-word;
    font-family: "Afacad", serif;
}

img {
    max-width: 100%;
}

input,
textarea,
select,
button,
label,
svg,
svg path,
svg rect,
svg polygon,
img,
a,
:after,
:before,
:hover,
:focus,
.form-control:focus {
    outline: none !important;
    box-shadow: none;
}

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

p {
    margin: 0px;
    word-break: break-word;
}

/* width */

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

/* Track */
::-webkit-scrollbar-track {
    background: #dddddd;
}

/* Handle */

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    width: 4px;
}

.container {
    max-width: 1170px;
}

/* loader-css */
.vl-loader {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff
}

.vl-loader .spinner img {
    width: 100px;
}

/* loader css end */
/* botton css start*/
.wf_btn {
    position: relative;
}

.wf_btn>span {
    min-width: 127px;
    min-height: 50px;
    border-radius: 60px;
    background-color: var(--primary-color);
    font-size: 18px;
    color: var(--white-color);
    font-weight: 400;
    display: inline-flex;
    border: none;
    justify-content: center;
    align-items: center;
    text-transform: capitalize;
    position: relative;
    transition: 0.3s;
    overflow: hidden;
    z-index: 1;
    padding: 0 30px;
}

.wf_btn>span::before {
    content: "";
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #121C42;
    height: 100%;
    position: absolute;
    width: 100%;
    left: 50%;
    top: 50%;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    z-index: -1;
}

.wf_btn:hover span::before {
    -webkit-transform: scale(3);
    -moz-transform: scale(3);
    -ms-transform: scale(3);
    -o-transform: scale(3);
    transform: scale(3);
}

.wf_btn>span:hover {
    color: var(--white-color);
    transform: translate(0px, -3px);
    transition: all 0.3s;
}

/* motion */
@-moz-keyframes gradient {
    0% {
        background-position: 14% 0%;
    }

    50% {
        background-position: 87% 100%;
    }

    100% {
        background-position: 14% 0%;
    }
}

@-webkit-keyframes gradient {
    0% {
        background-position: 14% 0%;
    }

    50% {
        background-position: 87% 100%;
    }

    100% {
        background-position: 14% 0%;
    }
}

@keyframes gradient {
    0% {
        background-position: 14% 0%;
    }

    50% {
        background-position: 87% 100%;
    }

    100% {
        background-position: 14% 0%;
    }
}

/* botton css end */

/* header section css start */
.wf-header-wrapper {
    padding: 15px 0;
    background-color: #ffffff;
}

.wf-header-wrapper .container {
    max-width: 1694px;
}

.wf-navbar-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: space-between;
}

.wf-brand-logo a img {
    max-width: 285px;
    max-height: 50px;
    object-fit: contain;
}


.wf-navbar-menu ul li {
    display: inline-block;
    margin-right: 40px;
}

.wf-navbar-menu ul li:last-child {
    margin-right: 0;
}

.wf-navbar-menu ul li a {
    color: #192E3F;
    font-size: 18px;
    font-weight: 300;
    position: relative;
    display: inline-block;
}

.wf-navbar-menu ul li a::after {
    position: absolute;
    content: "";
    bottom: -5px;
    left: 0;
    right: 0;
    width: 0%;
    height: 3px;
    margin: auto;
    background: #9129fe;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
}

.wf-navbar-menu ul li a:hover::after {
    opacity: 1;
    visibility: visible;
    width: 100%;
}

.wf-navbar-menu ul li a:hover {
    color: var(--primary-color);
}

/* header section css end */
/********************************************************
1. body end
 *******************************************************/
.wf_main_heading {
    text-align: center;
    margin-bottom: 45px;
}

.wf_main_heading h1 {
    font-size: 80px;
    font-weight: 700;
    color: #EB7F1C;
    line-height: 0.9;
}

.wf_main_heading h5 {
    color: #485583;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.4;
    text-transform: capitalize;
}

.wf_main_heading h2 {
    font-size: 32px;
    color: #121C42;
    margin-bottom: 0;
    font-weight: 700;
    line-height: 1.6;
    text-transform: capitalize;
}

.wf_main_heading h3 {
    font-size: 34px;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.wf_main_heading p {
    color: #4A5674;
    font-size: 24px;
    font-weight: 500;
    margin: 0px 0 25px;
}

.wf_main_heading.el_counter h1 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wf_main_heading.el_counter h1 span.odometer-value {
    position: relative;
    top: 2px;
}

/* Index Page Css Start */
.img-background-horizontal {
    background-image: url("https://cdn.pixabay.com/photo/2020/12/18/15/29/mountains-5842346_1280.jpg");
    background-size: 105vw auto;
    background-position: 0% 0%;
    height: 100vh;
    width: 100vw;
    animation: horizontalMove 50s infinite;
    animation-timing-function: ease;
}

@keyframes horizontalMove {
    0% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 100% 20%;
    }

    100% {
        background-position: 0% 0%;
    }
}

.wf_waves {
    position: absolute;
    top: 220px;
    right: 300px;
}

.wf_wave {
    width: 610px;
    height: 610px;
    border: 1px solid rgb(255 255 255 / 15%);
    border-radius: 50%;
    margin-left: 50%;
    left: -350px;
    position: absolute;
    bottom: -350px;
    z-index: -1;
    -webkit-transform: scale(0.1, 0.1);
    -moz-transform: scale(0.1, 0.1);
    -ms-transform: scale(0.1, 0.1);
    -o-transform: scale(0.1, 0.1);
    transform: scale(0.1, 0.1);
    opacity: 0;
    -webkit-animation: wf_pulse 6000ms ease-out infinite;
    -moz-animation: wf_pulse 6000ms ease-out infinite;
    -ms-animation: wf_pulse 6000ms ease-out infinite;
    -o-animation: wf_pulse 6000ms ease-out infinite;
    animation: wf_pulse 6000ms ease-out infinite;
}

.wf_wave:nth-of-type(2) {
    -webkit-animation-delay: 1200ms;
    -moz-animation-delay: 1200ms;
    -ms-animation-delay: 1200ms;
    -o-animation-delay: 1200ms;
    animation-delay: 1200ms;
}

.wf_wave:nth-of-type(3) {
    -webkit-animation-delay: 2400ms;
    -moz-animation-delay: 2400ms;
    -ms-animation-delay: 2400ms;
    -o-animation-delay: 2400ms;
    animation-delay: 2400ms;
}

.wf_wave:nth-of-type(4) {
    -webkit-animation-delay: 3400ms;
    -moz-animation-delay: 3400ms;
    -ms-animation-delay: 3400ms;
    -o-animation-delay: 3400ms;
    animation-delay: 3400ms;
}

.wf_wave:nth-of-type(5) {
    -webkit-animation-delay: 4400ms;
    -moz-animation-delay: 4400ms;
    -ms-animation-delay: 4400ms;
    -o-animation-delay: 4400ms;
    animation-delay: 4400ms;
}

@-webkit-keyframes wf_pulse {
    0% {
        -webkit-transform: scale(0.1, 0.1);
        -moz-transform: scale(0.1, 0.1);
        -ms-transform: scale(0.1, 0.1);
        -o-transform: scale(0.1, 0.1);
        transform: scale(0.1, 0.1);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1.2, 1.2);
        -moz-transform: scale(1.2, 1.2);
        -ms-transform: scale(1.2, 1.2);
        -o-transform: scale(1.2, 1.2);
        transform: scale(1.2, 1.2);
        opacity: 0;
    }
}

@keyframes wf_pulse {
    0% {
        -webkit-transform: scale(0.1, 0.1);
        -moz-transform: scale(0.1, 0.1);
        -ms-transform: scale(0.1, 0.1);
        -o-transform: scale(0.1, 0.1);
        transform: scale(0.1, 0.1);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1.2, 1.2);
        -moz-transform: scale(1.2, 1.2);
        -ms-transform: scale(1.2, 1.2);
        -o-transform: scale(1.2, 1.2);
        transform: scale(1.2, 1.2);
        opacity: 0;
    }
}

.wf_banner_section {
    padding: 30px 0 0;
    background-color: #FBF8FF;
    background-image: url(../images/banner.jpg);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    position: relative;
    z-index: 1;
}

img.banner_img1 {
    position: absolute;
    top: 80px;
    left: 160px;
    animation: 5s installation infinite alternate;
    z-index: -1;
}

img.banner_img2 {
    position: absolute;
    left: 100px;
    bottom: 100px;
    animation: 3s installation infinite alternate;
    z-index: -1;
}

img.banner_img3 {
    position: absolute;
    top: 100px;
    left: 200px;
    animation: MoveUpDownFive 4s linear infinite;
    z-index: -1;
}

img.banner_img4 {
    position: absolute;
    bottom: 0;
    left: 160px;
    animation: MoveUpDownSix 5s linear infinite;
    z-index: -1;
}

img.banner_img5 {
    position: absolute;
    top: 80px;
    right: 300px;
    animation: 2s installation infinite alternate;
    z-index: -1;
}

img.banner_img6 {
    position: absolute;
    right: 80px;
    bottom: 80px;
    animation: 4s installation infinite alternate;
    z-index: -1;
}

img.banner_img7 {
    position: absolute;
    top: 110px;
    right: 200px;
    animation: MoveUpDownNine 5s linear infinite;
    z-index: -1;
}

img.banner_img8 {
    position: absolute;
    bottom: 300px;
    right: 70px;
    animation: MoveUpDownTen 6s linear infinite;
    z-index: -1;
}

@keyframes a-one {
    from {
        top: 0;
        left: 0;
    }

    to {
        top: 100px;
        left: 100px;
    }
}

@keyframes MoveUpDown {

    0%,
    100% {
        bottom: 0;
    }

    50% {
        bottom: 20px;
    }
}

@keyframes MoveUpDownTwo {

    0%,
    100% {
        left: 0;
    }

    50% {
        bottom: 30px;
    }
}

@keyframes MoveUpDownThree {

    0%,
    100% {
        bottom: 0;
    }

    50% {
        bottom: 30px;
    }
}

@keyframes MoveUpDownFour {

    0%,
    100% {
        bottom: 0;
    }

    50% {
        bottom: 50px;
    }
}

@keyframes MoveUpDownFive {

    0%,
    100% {
        bottom: 0;
    }

    50% {
        bottom: 100px;
    }
}

@keyframes MoveUpDownSix {

    0%,
    100% {
        bottom: 0;
    }

    50% {
        bottom: 80px;
    }
}

@keyframes MoveUpDownSeven {

    0%,
    100% {
        bottom: 0;
    }

    50% {
        bottom: 100px;
    }
}

@keyframes MoveUpDownEight {

    0%,
    100% {
        bottom: 0;
    }

    50% {
        bottom: 90px;
    }
}

@keyframes MoveUpDownNine {

    0%,
    100% {
        bottom: 0;
    }

    50% {
        bottom: 100px;
    }
}

@keyframes MoveUpDownTen {

    0%,
    100% {
        bottom: 0;
    }

    50% {
        bottom: 60px;
    }
}

@-webkit-keyframes animateBackground {
    0% {
        background-size: 100% auto;
    }

    50% {
        background-size: 110% auto;
    }

    100% {
        background-size: 100% auto;
    }
}

.wf_banner_image {
    text-align: center;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.wf_banner_image::after {
    position: absolute;
    content: "";
    z-index: -1;
    top: -120px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background: rgb(248 157 50 / 50%);
    width: 602px;
    height: 374px;
    opacity: 0.5;
    background-image: linear-gradient(to right, #f02369, #00a7cf, #F89D32, #9129fe, #5d1cff);
    backdrop-filter: blur(176.1999969482422px);
    filter: blur(55px);
    border-radius: 50%;
    animation-duration: 20s;
    animation-iteration-count: infinite;
    animation-name: gradientss;
    background-size: 600%;
    background-position: 0 0;
}

@keyframes gradientss {
    0% {
        background-position: 0 0;
    }

    25% {
        background-position: 50% 0;
    }

    50% {
        background-position: 90% 0;
    }

    60% {
        background-position: 60%;
    }

    75% {
        background-position: 40%;
    }

    100% {
        background-position: 0 0;
    }
}

.animated-gradient {
    animation: animateBg 14s linear infinite;
    background-image: linear-gradient(90deg, #71c66c, #ff8000, #db5779, #71c66c, #ff8000);
    background-size: 400% 100%;
}

@keyframes animateBg {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 100% 0%;
    }
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes installation {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.wf_brand_logo a img {
    max-width: 270px;
    max-height: 50px;
    object-fit: contain;
}

.wf_banner_content {
    text-align: center;
}

.wf_banner_text h5 {
    color: #121C42;
    font-size: 18px;
    font-weight: 500;
    background: linear-gradient(58.57deg, rgba(94, 28, 255, 0.1) -4.45%, rgba(109, 32, 254, 0.1) 23.08%, rgba(149, 42, 254, 0.1) 74.7%, rgba(180, 51, 254, 0.1) 110.26%);
    width: fit-content;
    margin: auto;
    padding: 3px 15px;
    line-height: normal;
    text-transform: uppercase;
}

.wf_banner_text>h1 {
    font-size: 44px;
    font-weight: 600;
    color: #121C42;
    line-height: 1.4;
    margin-top: 30px;
}

.wf_banner_text>h1>img {
    position: relative;
    left: 5px;
}

.wf_banner_text>h1 span.font_websites {
    color: #217bff;
    background-color: rgb(33 123 255 / 10%);
    padding: 0 15px;
    margin-right: 6px;
}

.wf_banner_text>p {
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    margin: 15px auto;
    line-height: normal;
    background-color: var(--primary-color);
    width: fit-content;
    border-radius: 60px;
    padding: 8px 26px;
    text-transform: capitalize;
}

.wf_banner_text>p.ban_para {
    background-color: transparent;
    color: #485583;
    font-size: 18px;
    max-width: 850px;
}

.wf_header_btn {
    text-align: center;
}

span.csTypeEffect {
    display: none;
}

/* Three Box css */
.wf_features_section {
    padding: 210px 0;
    background-image: url(../images/website_bg.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    margin-bottom: -100px;
}

.wf_features_section .row {
    justify-content: center;
}

.wf_features_flex {
    transition: all 0.3s;
    margin: 0 0 25px;
    text-align: center;
    position: relative;
}

.wf_features_icon {
    box-shadow: 0px 0px 40px 0px rgb(0 0 0 / 6%);
    border: 1px solid transparent;
    transition: all 0.3s;
}

.wf_features_icon:hover {
    border: 1px solid #9b9b9b;
}

.wf_features_flex:hover {
    transform: translate(0px, 3px) !important;
    transition: all 0.3s !important;
}

.wf_new {
    position: absolute;
    top: -14px;
    left: -8px;
    width: 60px;
    height: 60px;
    background: linear-gradient(142.57deg, #F40000 14.84%, #F85555 88.19%);
    box-shadow: 3px 1px 0px 0px #D70000;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: mirrorflip 10s 0s linear infinite;
    z-index: 1;
}

@keyframes mirrorflip {
    0% {
        transform: scale(1, 1);
        -webkit-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        -ms-transform: scale(1, 1);

    }

    50% {
        transform: scale(-1, 1);
        -webkit-transform: scale(-1, 1);
        -moz-transform: scale(-1, 1);
        -o-transform: scale(-1, 1);
        -ms-transform: scale(-1, 1);
    }

    100% {
        transform: scale(1, 1);
        -webkit-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
    }
}

.wf_new span {
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    text-shadow: 1px 2px 4px rgb(0 0 0 / 25%);
}

.list {
    white-space: nowrap;
}

.scroller {
    overflow: hidden;
    -webkit-mask: linear-gradient(90deg,
            transparent 0%,
            #fff 20%,
            #fff 80%,
            transparent 100%);
    mask: linear-gradient(90deg,
            transparent 0%,
            #fff 20%,
            #fff 80%,
            transparent 100%);

    &[data-direction="left"] {
        --scrolling-direction: forwards;
    }

    &[data-direction="right"] {
        --scrolling-direction: reverse;
    }
}

.inner-scroller {
    animation: scrolling 10s var(--scrolling-direction, forwards) linear infinite;
}

@keyframes scrolling {
    to {
        transform: translateX(calc(-50% - 0.5rem));
    }
}

.wf_features_icon.wf_features_default {
    margin-top: -7px;
}

.wf_features_flex h5 {
    margin-top: 24px;
    color: #2D3958;
    font-size: 22px;
    font-weight: 600;
}

.wf_features_flex:hover h5 {
    color: orange;
}

/* Three Box css */
.wf_awesomefeatures_section {
    background-image: url(../images/features_bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 70px 0 56px;
    position: relative;
    z-index: 1;
}

span.wf_orange_color {
    color: #FF8A00;
}

.wf_work_box {
    text-align: center;
}

.wf_work_content,
.vi_work_step {
    text-align: center;
    padding: 30px 15px 30px;
    margin-bottom: 30px;
    background-color: var(--white-color);
    border-radius: 10px;
}

.wf_work_content.wf_work_content_dark {
    background: linear-gradient(180deg, #331253 0%, #030027 100%);
    border-image-slice: 1;
    border-width: 5px;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    border-image-source: linear-gradient(to left, #b433fe, #6d20fe);
}

.wf_work_content h5,
.vi_work_step h5 {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 10px;
}

.wf_work_content p,
.vi_work_step p {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.3;
    text-transform: capitalize;
}

.vi_work_step h4 {
    font-size: 20px;
    font-weight: 500;
    background-color: var(--primary-color);
    color: var(--white-color);
    text-align: center;
    border-radius: 10px;
    padding: 5px 10px;
    max-width: 100px;
    margin: 0 auto 17px;
}

/* Customizable css */
.wf_customizable_section {
    padding: 80px 0 0;
    position: relative;
    z-index: 1;
}

.wf_customizable_section::before {
    position: absolute;
    content: "";
    background-image: url(../images/video_bg.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: auto;
    z-index: -1;
    width: 100%;
    height: 120%;
    left: 0;
    right: 0;
    top: 0;
}

.wf_customizable_section .container {
    position: relative;
}

img.wf_icon1 {
    position: absolute;
    top: 0;
    left: 0;
    animation: 4s installation infinite alternate;
}

@keyframes installation {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

img.wf_icon2 {
    position: absolute;
    top: 0;
    left: 140px;
    bottom: 0;
    margin: auto;
    animation: installation 6s infinite linear;
}

@keyframes rotate-animation {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

img.wf_icon3 {
    position: absolute;
    left: -50px;
    bottom: -25px;
    animation: 7s installation infinite alternate;
}

img.wf_icon4 {
    position: absolute;
    top: 0;
    right: 0;
    animation: 8s installation infinite alternate;
}

img.wf_icon5 {
    position: absolute;
    top: 0;
    right: 140px;
    bottom: 0;
    margin: auto;
    animation: installation 3s infinite alternate;
}

@keyframes RightLeft3 {
    0% {
        -webkit-transform: translateX(15px);
        -moz-transform: translateX(15px);
        -ms-transform: translateX(15px);
        -o-transform: translateX(15px);
        transform: translateX(15px);
    }

    100% {
        -webkit-transform: translateX(0px);
        -moz-transform: translateX(0px);
        -ms-transform: translateX(0px);
        -o-transform: translateX(0px);
        transform: translateX(0px);
    }
}

img.wf_icon6 {
    position: absolute;
    bottom: 10px;
    right: -80px;
    animation: installation 9s infinite alternate;
}

.wf_tutorial_video {
    text-align: center;
}

.wf_features_customizable {
    padding: 20px 14px;
    text-align: center;
    border: 1px solid #ffffff;
    background-color: rgb(255 255 255 / 40%);
    transition: all 0.3s;
    border-radius: 20px;
}

.wf_features_customizable:hover {
    transition: all 0.3s;
    transform: translate(0px, 3px);
}

.wf_features_customizable:hover .wf_features_icon img {
    filter: brightness(5);
}

.wf_features_customizable:hover .wf_features_icon {
    background-color: #FA37DD;
    transition: all 0.3s;
}

.wf_text_customizable {
    text-align: center;
}

.wf_features_customizable .wf_features_icon {
    margin: auto;
    transition: all 0.3s;
    background-color: #ffffff;
    box-shadow: 4px 4px 14px 0px rgb(0 0 0 / 6%);
}

.wf_text_customizable h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin: 15px 0 5px;
}

.wf_text_customizable p {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 300;
    margin: 0;
}

/* Customizable css */

/* How It Work css */
.wf_howwork_section {
    padding: 70px 0 54px;
    position: relative;
    z-index: 1;
}

.wf_howwork_section::after {
    position: absolute;
    content: "";
    background-image: url(../images/adwance_bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.swiper-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.wf_slider_wrapper .swiper-slide {
    max-width: 470px;
    width: 100%;
    flex: 0 0 33.33%;
}

.wf_mobile_img img {
    width: 470px;
    height: 280px;
    object-fit: cover;
    border-radius: 6px;
}

.swiper-wrapper {
    position: relative;
    -webkit-transition-timing-function: linear !important;
    -o-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

/* How It Work css */

/* Price css */
.wf_pricing_section {
    padding: 0px 0 86px;
}

.row.wf_row_wrapper {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 12px 0;
    height: 915px;
}

.row.wf_row_wrapper .col-lg-4.col-md-6.col-sm-6 {
    padding: 0 0 0 11px;
}

.wf_plans_wrapper {
    background: linear-gradient(180deg, #F6F0FF 0%, #FFFFFF 87.79%);
    border-radius: 18px;
    padding: 32px 40px;
}

.wf_plan_content h4 {
    color: #121C42;
    font-size: 24px;
    font-weight: 700;
}

.wf_plan_content p {
    color: #9199B6;
    font-size: 16px;
    font-weight: 300;
    margin: 6px 0 14px;
    text-transform: capitalize;
}

.wf_plan_content h2 {
    width: fit-content;
    background: linear-gradient(58.57deg, rgba(94, 28, 255, 0.1) -4.45%, rgba(109, 32, 254, 0.1) 23.08%, rgba(149, 42, 254, 0.1) 74.7%, rgba(180, 51, 254, 0.1) 110.26%);
    padding: 8px 24px;
    border-radius: 60px;
    font-size: 30px;
    font-weight: 700;
    text-transform: capitalize;
}

.wf_plan_content h2 span {
    color: #9129fe;
}

.wf_plan_content h2 span.wf_span_box {
    font-size: 20px;
}

.wf_plan_list {
    margin-top: 0;
}

.wf_plan_list ul li {
    color: #34394B;
    font-size: 18px;
    font-weight: 500;
    margin-top: 25px;
    line-height: normal;
}

.wf_plan_list ul li img {
    position: relative;
    top: -2px;
    margin-right: 15px;
}

.wf_plan_list ul li span {
    color: #BBBFCD;
}

.wf_btn_plan {
    margin-top: 48px;
}

.wf_btn_plan .wf_btn>span {
    min-width: 255px;
}

.wf_plans_wrapper.wf_plans_dark {
    background: linear-gradient(0deg, #25155F, #25155F);
    min-height: 942px;
    position: relative;
    top: -20px;
    padding: 51px 40px 40px;
}

.wf_plans_dark .wf_plan_content h4 {
    color: #ffffff;
}

.wf_plans_dark .wf_plan_content p {
    color: #ffffff;
}

.wf_plans_dark .wf_plan_list ul li {
    color: #ffffff;
}

.wf_plans_dark .wf_plan_content h2 {
    background: rgb(255 255 255 / 10%);
}

.wf_plans_dark .wf_plan_content h2 span {
    color: #ffffff;
}

.wf_plans_dark .wf_plan_list ul li span {
    color: #524094;
}

.wf_plans_wrapper.wf_plans_dark.wf_plans_primary {
    background: linear-gradient(50.9deg, #5E1CFF -0.41%, #6D20FE 26.35%, #952AFE 76.52%, #B433FE 111.08%);
    min-height: 962px;
    position: relative;
    top: -30px;
    padding: 61px 40px 40px;
}

.wf_btn_plan.active .wf_btn>span {
    background: #ffffff;
    color: #9129fe;
}

.wf_money_wrapper {
    background-color: #ffffff;
    border-radius: 20px;
    margin: 80px 0 45px;
    padding: 50px 70px;
    display: flex;
    align-items: center;
    gap: 40px;
    border: solid 2px transparent;
    background: linear-gradient(90deg, #601CFE 0%, #9C2CFE 100%);
    background-origin: border-box;
    background-clip: content-box, border-box;
    box-shadow: 2px 1000px 1px #ffffff inset;
    background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(90deg, #601cfe, #9c2cfe);
}

.wf_money_content h2 {
    color: #121C42;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 13px;
    text-transform: capitalize;
}

.wf_money_content p {
    color: #485583;
    font-size: 18px;
    font-weight: 300;
    text-transform: capitalize;
}

.wf_closing_wrapper {
    max-width: 1000px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 50px;
    justify-content: space-between;
    background: linear-gradient(58.57deg, #5E1CFF -4.45%, #6D20FE 23.08%, #952AFE 74.7%, #B433FE 110.26%);
    border-radius: 30px;
    padding: 50px;
}

.wf_closing_wrapper .wf_money_content h2 {
    color: #ffffff;
}

.wf_closing_wrapper .wf_money_content p {
    color: #ffffff;
}

.wf_moneyimg .wf_btn>span {
    background: rgb(255 255 255 / 10%);
}

/* Price css */

/* testimonial css */
.wf_testimonial_section {
    background-color: #ffffff;
    position: relative;
    z-index: 1;
    padding: 80px 0;
    background-image: url(../images/testimonial_bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
}

.wf_testimonial_section .wf_main_heading {
    margin-bottom: 25px;
}

span.csTypeEffect {
    display: none;
}

.wf_testimonial_section .container-fluid {
    padding: 0 0 0;
    max-width: 100%;
    position: relative;
    overflow: hidden;
}

.wf_slider_wrapper .swiper-container {
    padding: 15px 0;
}

.wf_slider_testimonials .wf_slider_wrapper .swiper-container {
    padding: 20px 0;
}

.el_testimonials_box {
    background-color: #ffffff;
    border: 1px solid #F6DBFF;
    border-radius: 20px;
    padding: 50px 40px;
    text-align: left;
    min-height: 340px;
    box-shadow: 0px 0px 30px 0px rgb(45 72 170 / 10%);
}

.wf_slider_testimonials .swiper-slide {
    max-width: 675px;
    width: 100%;
    flex: 0 0 33.33%;
}

.el_testimonials_box h4 {
    color: #121C42;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.el_testimonials_box p {
    font-size: 20px;
    color: #485583;
    font-weight: 300;
    margin-top: 10px;
}

.el_testimonials_box p span {
    font-weight: 600;
}

.aif-chatbot-tesmnl-leftslide {
    animation: scrollLeft 70s forwards linear infinite;
}

.aif-chatbot-tesmnl-rightslide {
    animation: scrollRight 70s linear infinite;
}

.aif-chatbot-tesmnl-slider:hover {
    animation-play-state: paused;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100%);
    }
}

/* testimonial css */

/* More Features css */
.wf_morefeatures_section {
    padding: 70px 0 55px;
    position: relative;
    background-image: url(../images/feature_after.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.wf_more_features {
    border-radius: 10px;
    background-color: #FFF8F8;
    padding: 20px 15px 30px;
    position: relative;
    text-align: center;
    transition: all 0.3s;
    z-index: 1;
    border: 1px solid #FFD4D4;
    min-height: 410px;
    margin-bottom: 30px;
}

.wf_more_features::after {
    position: absolute;
    content: "";
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-bottom: 1px solid rgb(145 41 254 / 30%);
    border-right: 1px solid rgb(145 41 254 / 30%);
    -webkit-transition: 0.4s;
    transition: 0.4s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    z-index: -1;
}

.wf_more_features::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-top: 1px solid rgb(145 41 254 / 30%);
    border-left: 1px solid rgb(145 41 254 / 30%);
    -webkit-transition: 0.4s;
    transition: 0.4s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    z-index: -1;
}

.wf_more_features:hover::before {
    width: 100%;
    height: 100%;
    visibility: visible;
    opacity: 1;
}

.wf_more_features:hover::after {
    width: 100%;
    height: 100%;
    visibility: visible;
    opacity: 1;
}

.wf_more_features:hover {
    transform: translate(0px, -3px);
}

.wf_more_content {
    position: relative;
    top: 10px;
}

.wf_more_content h5 {
    font-size: 26px;
    color: #FF6737;
    font-weight: 700;
    line-height: 1.2;
}

.wf_more_content p {
    color: #515B83;
    font-size: 18px;
    font-weight: 300;
    margin-top: 5px;
    text-transform: capitalize;
}

.wf_more_features.wf_choose2 {
    background: #fff3fc;
    border: 1px solid #d2419e;
}

.wf_choose2 .wf_more_content h5 {
    color: #d2419e;
}

.wf_more_features.wf_choose3 {
    background: #FCF6FF;
    border: 1px solid #E3C3F3
}

.wf_choose3 .wf_more_content h5 {
    color: #C146FF;
}

.wf_more_features.wf_choose4 {
    background: #F8F8FF;
    border: 1px solid #B5B5F9
}

.wf_choose4 .wf_more_content h5 {
    color: #6C6CFF;
}

.wf_more_features.wf_choose5 {
    background: #F3F9FF;
    border: 1px solid #7DB8F3
}

.wf_choose5 .wf_more_content h5 {
    color: #0B85FF;
}

.wf_more_features.wf_choose6 {
    background: #FFFCF5;
    border: 1px solid #F2DAA1
}

.wf_choose6 .wf_more_content h5 {
    color: #FFC907;
}

.wf_more_features.wf_choose7 {
    background: #F9FDE9;
    border: 1px solid #C9DC7F
}

.wf_choose7 .wf_more_content h5 {
    color: #C2C600;
}

.wf_more_features.wf_choose7.wf_more_content2 {
    padding-top: 64px;
}

.wf_more_content2 .wf_more_content {
    top: 20px;
}

/* More Features css */

/* IP Solution css */
.wf_solutions_section {
    background-image: url(../images/solutions_bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 80px 0;
    position: relative;
    z-index: 2;
    background: #030027;
}

.wf_solutions_box {
    padding: 30px 20px;
    text-align: center;
    border: 1px solid #ECEDFF;
    background-color: #ffffff;
    transition: all 0.3s;
    border-radius: 10px;
    margin-bottom: 24px;
    min-height: 280px;
    max-width: 1280px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.wf_solutions_box.wf_advance_flex {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 40px;
    padding: 39px 15px;
}

.wf_solutions_box::after {
    position: absolute;
    content: "";
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-bottom: 1px solid rgb(145 41 254 / 70%);
    border-right: 1px solid rgb(145 41 254 / 70%);
    -webkit-transition: 0.4s;
    transition: 0.4s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    z-index: -1;
}

.wf_solutions_box::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-top: 1px solid rgb(145 41 254 / 70%);
    border-left: 1px solid rgb(145 41 254 / 70%);
    -webkit-transition: 0.4s;
    transition: 0.4s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    z-index: -1;
}

.wf_solutions_box:hover::before {
    width: 100%;
    height: 100%;
    visibility: visible;
    opacity: 1;
}

.wf_solutions_box:hover::after {
    width: 100%;
    height: 100%;
    visibility: visible;
    opacity: 1;
}

.wf_solutions_box:hover {
    transform: translate(0px, -3px);
}

.wf_fetureflex {
    text-align: left;
}

.wf_solutions_box h4 {
    font-size: 22px;
    font-weight: 600;
    color: #000000;
    margin: 20px 0 10px;
    text-transform: capitalize;
}

.wf_solutions_box p {
    font-size: 18px;
    font-weight: 300;
    color: #000000;
    text-transform: capitalize;
}

.wf_fetureflex ul li {
    display: flex;
    align-items: center;
    margin: 0 0 10px;
    gap: 8px;
}

.wf_fetureflex ul li img {
    width: 25px;
    height: 25px;
    object-fit: cover;
}

.wf_solutions_box.wf_sol1 {
    background: linear-gradient(0deg, #FDF2EC 0%, #F3F4F6 100%);
}

.wf_solutions_box.wf_sol1::before {
    border-top: 1px solid rgb(208 66 163 / 70%);
    border-left: 1px solid rgb(208 66 163 / 70%);
}

.wf_solutions_box.wf_sol1::after {
    border-bottom: 1px solid rgb(208 66 163 / 70%);
    border-right: 1px solid rgb(208 66 163 / 70%);
}

.wf_solutions_box.wf_sol2 {
    background: linear-gradient(0deg, #FDEFEC -26.98%, #EFECFE 100%);
}

.wf_solutions_box.wf_sol2::before {
    border-top: 1px solid rgb(81 97 217 / 70%);
    border-left: 1px solid rgb(81 97 217 / 70%);
}

.wf_solutions_box.wf_sol2::after {
    border-bottom: 1px solid rgb(81 97 217 / 70%);
    border-right: 1px solid rgb(81 97 217 / 70%);
}

.wf_solutions_box.wf_sol3 {
    background: linear-gradient(0deg, #EBFBF9 -26.98%, #E9F3FD 100%);
}

.wf_solutions_box.wf_sol3::before {
    border-top: 1px solid rgb(36 182 182 / 70%);
    border-left: 1px solid rgb(36 182 182 / 70%);
}

.wf_solutions_box.wf_sol3::after {
    border-bottom: 1px solid rgb(36 182 182 / 70%);
    border-right: 1px solid rgb(36 182 182 / 70%);
}

.wf_solutions_box.wf_sol4 {
    background: linear-gradient(0deg, #FDF2EC 0%, #F3F4F6 100%);
    ;
}

.wf_solutions_box.wf_sol4::before {
    border-top: 1px solid rgb(208 66 163 / 70%);
    border-left: 1px solid rgb(208 66 163 / 70%);
}

.wf_solutions_box.wf_sol4::after {
    border-bottom: 1px solid rgb(208 66 163 / 70%);
    border-right: 1px solid rgb(208 66 163 / 70%);
}

.wf_solutions_box.wf_sol5 {
    background: linear-gradient(0deg, #F1ECFD 0%, #EDFBFF 100%);
}

.wf_solutions_box.wf_sol5::before {
    border-top: 1px solid rgb(36 182 182 / 70%);
    border-left: 1px solid rgb(36 182 182 / 70%);
}

.wf_solutions_box.wf_sol5::after {
    border-bottom: 1px solid rgb(36 182 182 / 70%);
    border-right: 1px solid rgb(36 182 182 / 70%);
}

.wf_solutions_box.wf_sol2 .wf_fetureflex,
.wf_solutions_box.wf_sol4 .wf_fetureflex {
    padding-left: 20px;
}

/* IP Solution css */

/* Footer css */
.wf_footer_section {
    background-image: url(../images/footer_bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 1;
    background-color: #030027;
    padding: 100px 0 0;
}

.wf_footer_section .wf_main_heading {
    margin-bottom: 0;
}

.wf_footer_logo {
    margin-bottom: 25px;
}

.wf_footer_logo a img {
    max-width: 229px;
    max-height: 50px;
    object-fit: cover;
}

.wf_footer_section .wf_main_heading h2 {
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.4;
    text-transform: capitalize;
}

.wf_footer_wrapper {
    padding: 19px 0;
    border-top: 1px solid rgb(255 255 255 / 10%);
    margin-top: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wf_footer_copy p {
    font-size: 18px;
    font-weight: 300;
    color: #ffffff;
    text-transform: capitalize;
}

.wf_footer_links ul {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.wf_footer_links ul li {
    color: #ffffff;
    font-size: 18px;
    font-weight: 300;
}

.wf_footer_links ul li a {
    color: #ffffff;
}

.wf_footer_links ul li a:hover {
    color: var(--primary-color);
}

/* Index Page Css Start */


/***** loader ******/
.loader {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
}

/* .loader img {
	width: 80px;
} */

body {
    min-height: 100vh;
    /* & .spinner {
      position: relative;
      height: 100px;
      width: 100px;
      border-radius: 50%;
      background: linear-gradient(45deg, transparent, transparent 40%, #e5f303);
      animation: animate 1s linear infinite;
      &:before {
        content: '';
        display: block;
        position: absolute;
        top: 2px;
        bottom: 2px;
        left: 2px;
        right: 2px;
        background: #000;
        border-radius: 50%;
        z-index: 99999;
      }
      &:after {
        content: '';
        display: block;
        position: absolute;
        top: 0px;
        bottom: 0px;
        left: 0px;
        right: 0px;
        background: linear-gradient(45deg, transparent, transparent 40%, #e5f303);
        border-radius: 50%;
        filter: blur(30px);
        z-index: 1;
      }
    } */
}

@keyframes animate {
    0% {
        transform: rotate(0deg);
        filter: hue-rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
        filter: hue-rotate(180deg);
    }
}

/***** loader ******/

/***** Privacy-policy & Terms css ******/
.vm_privacy_policy_wrapper {
    position: relative;
    background-image: url('../images/privacy-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.vm_privacy_policy_inner {
    position: relative;
    background-color: var(--white-color);
    padding: 40px;
    border-radius: 10px;
    line-height: 26px;
    margin: 25px auto 25px;
}

.vm_privacy_policy_section1 h3 {
    font-size: 28px;
    font-weight: 400;
    color: #121C42;
}

.vm_privacy_policy_inner p {
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
}

p.vm_para_color {
    font-weight: 500;
    color: var(--primary-color);
}

p+p {
    margin-top: 10px;
}

.top30 {
    padding-top: 30px;
}

.vm_privacy_policy_inner h2 {
    font-size: 25px;
    font-weight: 500;
    color: #121C42;
    margin-bottom: 12px;
}

.vm_privacy_policy_inner ul {
    padding-left: 15px;
}

.vm_privacy_policy_inner ul li {
    list-style-type: decimal;
    padding: 0 0px 7px 7px;
}

.vm_privacy_policy_section4 p span,
.vm_privacy_policy_section11 p span {
    font-weight: 700;
}

p.vm_position_p {
    padding: 0 0 10px 20px;
}

.vm_para_list span {
    margin-right: 5px;
}


.go-top {
    position: fixed;
    bottom: 5%;
    right: 2%;
    display: none;
    cursor: pointer;
    -webkit-font-smoothing: antialiased;
    height: 50px;
    width: 50px;
    padding: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    transition: all 0.5s ease-in-out;
    z-index: 99;
}

.go-top svg {
    position: absolute;
    top: 17px;
    left: 20px;
    transform: rotate(90deg);
    transition: all 0.5s ease-in-out;
}

.go-top svg path {
    fill: var(--white-color);
}

/***** Privacy-policy & Terms css ******/
/* responsive css */
@media(max-width: 1499px) {
    .wf_new {
        top: -10px;
        left: 10px;
    }

    img.wf_icon6 {
        bottom: 0;
        right: 0;
    }

    img.wf_icon5 {
        right: 0;
    }

    img.wf_icon3 {
        left: 0;
        bottom: 0;
    }

    img.wf_icon2 {
        left: 10px;
    }

    .el_monitor_flex {
        justify-content: center;
    }

    .wf_word_box {
        text-align: center;
        max-width: 100%;
        margin: 20px auto 0;
    }

    .wf_demo_click {
        text-align: center;
        width: 100%;
        margin: auto;
        display: flex;
        flex-direction: column;
    }

    .wf_demo_click.wf_demo_create {
        width: 100%;
    }

    img.banner_img1 {
        top: 60px;
        left: 20px;
    }

    img.banner_img5 {
        top: 60px;
        right: 20px;
    }

    img.banner_img2 {
        left: 20px;
        bottom: 80px;
    }

    img.banner_img6 {
        right: 20px;
        bottom: 80px;
    }
}


@media(max-width: 1199px) {
    .wf_slider_wrapper .swiper-slide {
        max-width: 100%;
        flex: 0 0 40%;
    }

    .wf_slider_testimonials .swiper-slide {
        max-width: 100%;
        flex: 0 0 40%;
    }

    .row.wf_row_wrapper {
        height: auto;
    }

    .wf_money_wrapper {
        padding: 30px;
        gap: 30px;
    }

    .wf_solutions_box.wf_advance_flex {
        gap: 20px;
        padding: 35px 15px;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

}


@media(max-width: 991px) {
    .wf_banner_text>h1 {
        font-size: 34px;
    }

    .wf_features_section {
        padding: 70px 0;
        background-color: #f2f4f2;
    }

    .wf_about_text {
        margin: 30px 0 0;
        text-align: center;
    }

    .wf_about_box {
        text-align: center;
    }

    .wf_about_text .wf_main_heading {
        text-align: center;
    }

    .wf_morefeatures_section {
        padding: 70px 0;
    }

    .wf_banner_image {
        margin-top: 30px;
    }

    .wf_awesomefeatures_section {
        padding: 70px 0 40px;
    }

    .wf_solutions_section {
        padding: 70px 0;
        background-color: #0a151b;
        margin: 0;
    }

    .wf_testimonial_section {
        padding: 70px 0;
    }

    .wf_footer_section {
        padding-top: 70px;
    }

    .wf_footer_wrapper {
        margin-top: 40px;
    }

    img.wf_icon1 {
        display: none;
    }

    img.wf_icon2 {
        display: none;
    }

    img.wf_icon3 {
        display: none;
    }

    img.wf_icon4 {
        display: none;
    }

    img.wf_icon5 {
        display: none;
    }

    img.wf_icon6 {
        display: none;
    }

    .wf_slider_testimonials .swiper-slide {
        flex: 0 0 50%;
    }

    .el_testimonials_box {
        padding: 30px;
    }

    .swiper-wrapper {
        gap: 30px;
    }

    .wf_plans_wrapper {
        padding: 30px;
    }

    .wf_plans_wrapper.wf_plans_dark {
        top: 0;
        padding: 30px;
    }

    .row.wf_row_wrapper .col-lg-4.col-md-6.col-sm-6 {
        padding: 0 10px 0 10px;
    }

    .wf_plans_wrapper.wf_plans_dark.wf_plans_primary {
        min-height: auto;
        top: 0px;
        padding: 30px;
    }
}

@media(max-width: 840px) {
    .wf_solutions_box {
        flex-wrap: wrap;
        justify-content: center;
    }

    .wf_closing_wrapper {
        gap: 11px;
        padding: 50px 30px;
    }
}

@media(max-width: 767px) {
    .wf_slider_wrapper .swiper-slide {
        flex: 0 0 50%;
    }

    .wf_slider_testimonials .swiper-slide {
        flex: 0 0 70%;
    }

    .wf_banner_text>h1 {
        font-size: 30px;
    }

    .el_monitor_flex {
        gap: 0px;
        flex-direction: column;
    }

    .wf_demo_icon.wf_wordpress_icon {
        width: 250px;
        height: 190px;
        padding: 20px;
    }

    .wf_money_wrapper {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .wf_closing_wrapper {
        gap: 20px;
        padding: 30px;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .wf_plans_wrapper.wf_plans_dark.wf_plans_primary {
        margin-top: 25px;
    }

    .wf-navbar-menu ul li {
        margin-right: 20px;
    }
}

@media(max-width: 675px) {
    .wf_banner_image::after {
        max-width: 100%;
    }
}

@media(max-width: 575px) {
    .wf-navbar-wrapper {
        justify-content: space-between;
        flex-direction: column;
        gap: 10px;
    }

    .wf_brand_logo a img {
        max-width: 220px;
    }

    .wf_btn>span {
        padding: 0 20px;
    }

    .wf_main_heading h3 {
        font-size: 30px;
    }

    .wf_layout_heading h1 {
        font-size: 30px;
    }

    .wf_slider_testimonials .swiper-slide {
        width: fit-content;
    }

    .aif-chatbot-tesmnl-leftslide {
        animation: scrollLeft 20s forwards linear infinite;
    }

    .aif-chatbot-tesmnl-rightslide {
        animation: scrollRight 20s linear infinite;
    }

    .wf_slider_wrapper .swiper-slide {
        flex: 0 0 100%;
    }

    .wf_slider_testimonials .swiper-slide {
        flex: 0 0 100%;
    }

    .el_testimonials_box {
        padding: 30px;
    }

    img.banner_img1,
    img.banner_img2,
    img.banner_img5,
    img.banner_img6 {
        display: none;
    }

    .wf_more_features {
        min-height: auto;
    }

    .wf_more_features.wf_choose7.wf_more_content2 {
        padding: 40px 0;
    }

    .wf_footer_wrapper {
        flex-direction: column;
    }
}

@media(max-width: 375px) {

    .wf_solutions_box.wf_sol2 .wf_fetureflex,
    .wf_solutions_box.wf_sol4 .wf_fetureflex {
        padding-left: 0px;
    }
}

/* responsive css */