/*
[Master Stylesheet] 
Project:Video Express Upsell Page HTML
-------------------------------------------------------------------*/
/********************************************************
1. body start
 *******************************************************/
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;	  	
	-webkit-font-smoothing: antialiased;
    overflow-x:hidden;    
    font-family: "Figtree", sans-serif;           
}
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-transform: capitalize;
	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;
}
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;           
}
img, video {
	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;  
}
/* Scroll */
::-webkit-scrollbar {
    width: 5px;
} 
::-webkit-scrollbar-track {
    background-color: #fff;
    -webkit-border-radius: 10px;    
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    height: 100px;
    background-image: linear-gradient(90deg, rgba(75,85,213,0.9999999999999999) 0%, rgba(235,101,247,0.996078431372549) 100%);
}
/* Scroll */
/* Bottom To Top CSS Start */
.ve_top_icon a {
    display: flex;
    background-image: linear-gradient(90deg, rgba(75,85,213,0.9999999999999999) 0%, rgba(235,101,247,0.996078431372549) 100%);
    filter: drop-shadow(-13.753px 9.992px 15px rgba(152,75,239,0.3));
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    position: fixed;
    bottom: 30px;
    right: 20px;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    animation: 4s installation infinite alternate;
}
@keyframes installation {
    0% {
        transform: translateY(0px);        
    }
    50% {
        transform: translateY(-20px);        
    }
}
.ve_top_icon a svg {
    fill: #fff;
    transform: rotate(270deg);
}
.ve_top_icon a.show {
    opacity: 1;
    visibility: visible;
}
/* Bottom To Top CSS End */

/* Button CSS End */
.ve_btn{
    background-image: url(../images/btn-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border-radius: 50px;
    max-width: 719px;
    width: 100%;
    height:103px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;    
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;    
    transition: all 0.3s;
    position: relative;
    z-index: 1;
    animation: shadow-pulse-2 2s infinite;
}
.ve_btn::before{
    content: '';
    background: linear-gradient(90deg, rgba(247,54,0,0.9999999999999999) 0%, rgba(249,203,34,0.996078431372549) 100%);
    position: absolute;
    top: 7px;
    right: 7px;
    bottom: 7px;
    left: 7px;
    border-radius: 50px;
    transform: scale(0);
    transition: all 0.5s;
    z-index: -1;
}
.ve_btn:hover:before{
    transform: scale(1);
}
@keyframes shadow-pulse-2 {
    0% {        
        box-shadow: 0 0 0 0 rgba(3, 116, 233, 0.5);        
    }
    100% {
        box-shadow: 0 0 0 30px rgb(255 255 0 / 0%);        
    }
}
/* Botton CSS End */

/* Background Image */
.ve_bg_img_cover{
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
/* Background Image */

/* Banner CSS Start */
.ve_banner_wrapper{
    background-image: url(../images/banner-main-bg.jpg);
    padding-bottom: 65px;
    position: relative;
}
.ve_banner_wrapper > img{
    position: absolute;
    display: block;
}
.ve_banner_wrapper .ve_banner_icon1{
    top: 150px;
    left: 100px;
    animation: 2.5s rotate2 linear infinite;
}
.ve_banner_wrapper .ve_banner_icon2{
    top: 42%;
    right: 100px;
    animation: 2.5s rotate2 linear infinite;
}
.ve_banner_wrapper .ve_banner_icon3 {
    top: 17%;
    right: 150px;
    animation: 4s installation infinite alternate;
}
.ve_banner_wrapper .ve_banner_icon4{
    top: 30%;
    left: 100px;
    animation: 4s installation infinite alternate;
}
@keyframes rotate2 {
	0% {
		transform: rotate(-8deg);
	}
	50% {
		transform: rotate(8deg);
	}			
	75% {
		transform: rotate(0deg);
	}	
	100% {
		transform: rotate(-8deg);
	}	
}
.ve_gurnt_wrapper .container{
    max-width: 1790px;
}
.ve_logo_section {
    max-width: 1000px;
    width: 100%;
    margin: auto;
    background-color: #ffffff;
    border-radius: 0px 0px 20px 20px;
    filter: drop-shadow(0 0 20px rgba(156,108,183,0.3));
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
}
.ve_logo_content h6, .ve_logo_content p{
    font-size: 22px;
    font-weight: 500;
    color: #222222;
}
.ve_logo_content p{
    color: #ff7920;
    text-decoration: underline;
} 
.ve_banner_heading {
    padding-top: 50px;    
}
.ve_banner_main_head {
    background-image: url(../images/banner-main-head-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    max-width: 970px;
    width: 100%;
    height: 180px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
}
.ve_banner_heading h1 {
    font-size: 52px;
    font-weight: 800;
    color: #fff; 
    position: relative;
    text-transform: capitalize;
}
.ve_banner_video_main {
    margin-top: 60px;    
}
.ve_flickr_text_main {
    min-width: 570px;
    height: 60px;
    display: inline-block;
    background-image: linear-gradient(340deg, rgba(255,39,181,0.9999999999999999) 0%, rgba(157,0,255,0.9970601620313378) 100%, rgba(255,39,181,0.996078431372549) 100%);
    border-radius: 0px 0px 40px 40px;
    overflow: hidden;    
    margin-top: 5px;
    padding: 0 15px;
}
.ve_banner_sbhead{
    animation: text 15s ease 0s infinite normal none;
}

@keyframes text {

	0% {
		transform: translateY(0px);
	}
	13% {
		transform: translateY(0px);
	}

	15% {
		transform: translateY(-60px);
	}
	28% {
		transform: translateY(-60px);
	}

	30% {
		transform: translateY(-120px);
	}
	43% {
		transform: translateY(-120px);
	}

	45% {
		transform: translateY(-180px);
	}
	58% {
		transform: translateY(-180px);
	}

	60% {
		transform: translateY(-240px);
	}
	73% {
		transform: translateY(-240px);
	}

	75% {
		transform: translateY(-300px);
	}
	88% {
		transform: translateY(-300px);
	}

	90% {
		transform: translateY(-360px);
	}
	100% {
		transform: translateY(-360px);
	}
}
.ve_banner_sbhead p{
    font-size: 26px;    
    font-weight: 800;
    color: #ffffff;
    text-transform: capitalize;    
    height: 60px;
    line-height: 60px;
}
.ve_banner_video_center{
    position: relative;
    max-width: 870px;
    height: 525px;
    width: 100%;
    margin: auto;
}
.ve_banner_video_center .ve_video {
    position: absolute;
    top: 48px;
    left: 46px;
    max-width: 770px;
    width: 100%;
    min-height: auto;
    height: 433px;
}
.ve_banner_video_center .ve_video iframe{
    min-height: auto;
    width: 100%;
    height: 100%;
}
/* Payment Section */
.ve_pymnt_section_main{
    padding-top: 80px;
}
.ve_pymnt_head > h2 {
    max-width: 900px;
    width: 100%;
    background-image: linear-gradient(0deg, rgba(255,230,193,0.9999999999999999) 0%, rgba(255,255,255,0.996078431372549) 100%);
    border-radius: 60px;
    font-size: 40px;
    font-weight: 800;
    color: #271e42;
    margin: auto;
    padding: 22px 15px;
}
.ve_pymnt_head > h4 {
    background-image: linear-gradient(90deg, rgba(247,54,0,0.9999999999999999) 0%, rgba(249,203,34,0.996078431372549) 100%);
    border-radius: 0 0 40px 40px;
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    padding: 10px 30px;
}
.ve_pymnt_section_main > h2 {
    font-size: 56px;
    color: #271e42;
    font-weight: 900;    
    text-align: center;    
    text-transform: capitalize;
    padding-top: 30px;
}
.ve_pymnt_section_main > h2 span{
    color: #ff2b5d;
}
.ve_pymnt_inner {
    padding-top: 15px;
    position: relative;
    z-index: 1;
}
.ve_pymnt_inner > img{
    display: block;
    margin: 0 auto;
}
.ve_pymnt_inner > p {
    font-size: 16px;
    font-weight: 800;
    color: #271e42;
    padding: 15px;
}
.ve_pymnt_inner > img:nth-child(3){
    filter: drop-shadow(0 0 15px rgba(88,86,168,0.2));
    margin-bottom: 20px;
}
.ve_pymnt_section_main > p {
    max-width: 970px;
    width: 100%;
    margin: 30px auto 0 auto;
    background-color: #f0f4e8;
    font-size: 16px;
    font-weight: 600;
    color: #271e42;
    text-align: left;
    padding: 16px 10px 16px 30px;
}
.ve_pymnt_section_main > p > a{
    color: #fd730b;
    font-weight: 800;
}
/* Payment Section */
/* Banner CSS End */

/* Video Slider CSS Start */
.ve_video_slider_wrapper {
    background-image: url(../images/video-slider-main-bg.png);
    padding: 140px 0 120px 0;
}
.ve_video_slider_wrapper .ve_heading {
    margin-bottom: 60px;
}
.ve_heading h1{
    background-image: url(../images/video-slider-head-bg.png);
    background-repeat: no-repeat;    
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width:970px;
    width: 100%;
    height: 180px;
    margin: auto;
    font-size: 44px;
    font-weight: 900;
    color: #fff;
    text-transform: capitalize;
}
.ve_heading h4{
    display: inline-block;
    background-color: #2183fe;
    border-radius: 0 0 25px 25px;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    padding: 5px 15px;
    margin-top: 5px;
}
.ve_video_slider_tagline {
    margin: 20px 0;
}
.ve_video_slider_tagline > h2 {
    background-image: url(../images/video-slider-tagln-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    max-width: 340px;
    width: 100%;
    height: 54px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    font-weight: 800;
    color: #271e42;
    text-transform: capitalize;
}
.ve_video_slider_parent, .ve_video_slider_thumb{
    position: relative;
    overflow: hidden;
}
.ve_video_slider_parent{
    padding: 80px 0;
}
img.video_slide_bg {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 10px;
}
/* .ve_video_slider_parent .swiper-slide.swiper-slide-active{
    transform: scale(1.2);
} */
.ve_slider_video {
    text-align: center;
}
.ve_slider_video > video {
    border: 4px solid #eee;
}
.ve_video_slider_parent .swiper-slide.swiper-slide-active .ve_slider_video > video{
    border: 0;
}
.swiper-button-next:after, .swiper-button-prev:after{
    display: none;
}
.ve_video_slider_parent .swiper-button-next, .ve_video_slider_parent .swiper-button-prev{
    width: 50px;
    height: 50px;
    background-image:linear-gradient(90deg, rgba(75,85,213,0.9999999999999999) 0%, rgba(235,101,247,0.996078431372549) 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ve_video_slider_main{
    position: relative;
}
.ve_video_slider_main .swiper-pagination {
    bottom: -40px;
}
.ve_video_slider_main .swiper-pagination-bullet {
    opacity: 0.302;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #ce2fda;
}
.ve_video_slider_main .swiper-pagination-bullet-active{
    opacity: 1;
}
.ve_video_slider_thumb .swiper-slide-prev .ve_video_slider_tagline, .ve_video_slider_thumb .swiper-slide-next .ve_video_slider_tagline {
    display: none;
}
/* Video Slider CSS End */


/* Feature Section CSS Start */
.ve_feature_slider_wrapper {
    background-image: url(../images/feat-main-bg.jpg);
    padding: 80px 0 40px 0;
}
.ve_feature_slider_wrapper .container{
    max-width: 1500px;
}
.ve_feature_main_head {
    padding-bottom: 80px;
}
.ve_feature_main_head > h2 {
    background-image: url(../images/feature-head-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    max-width: 970px;
    height: 180px;
    font-size: 44px;
    color: #fff;
    font-weight: 900;
    text-transform: capitalize;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ve_feature_main_head > h4{
    background-color: #2183fe;
    border-radius: 0 0 25px 25px;
    display: inline-block;
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    padding: 10px 30px;
    margin-top: 5px;
}
.ve_feature_slider_box_flex {
    max-width: 1300px;
    width: 100%;
    min-height: 400px;
    margin: auto;
    background: #ffffff;   
    border-width: 2px;     
    border-style: solid;
    border-radius: 10px;
    padding: 50px 30px 50px 35px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 70px;
    margin-bottom: 100px;
}
.ve_feature_slider_inner .ve_feature_slider_box_flex:last-child {
    margin-bottom: 0;
}
.ve_feature_slider_inner .ve_feature_slider_box_flex:nth-of-type(2n+2){
    flex-direction: row-reverse;
}
.ve_feat_box_1{
    filter: drop-shadow(0 0 30px rgba(168,41,233,0.1));
    border-color: #bd10e0;
}
.ve_feat_box_2{
    filter: drop-shadow(0 0 30px rgba(16,172,24,0.1));
    border-color: #0cca15;
}
.ve_feat_box_3{
    filter: drop-shadow(0 0 30px rgba(219,162,40,0.1));
    border-color: #ffb310;
}
.ve_feat_box_4{
    filter: drop-shadow(0 0 30px rgba(252,70,118,0.1));
    border-color: #fd4675;
}
.ve_feat_box_5{
    filter: drop-shadow(0 0 30px rgba(84,145,254,0.1));
    border-color: #5491ff;
}
.ve_feat_box_6{
    filter: drop-shadow(0 0 30px rgba(248,79,164,0.1));
    border-color: #fa4ea6;
}
.ve_feat_box_7{
    filter: drop-shadow(0 0 30px rgba(155,101,255,0.1));
    border-color: #9b65ff;
}
.ve_feat_box_8{
    filter: drop-shadow(0 0 30px rgba(4,164,236,0.1));    
    border-color: #04a4ec;
}
.ve_feat_box_9{
    filter: drop-shadow(0 0 30px rgba(180,195,109,0.1));
    border-color:#b4c36d;    
}
.ve_feat_box_10{
    filter: drop-shadow(0 0 30px rgba(75,113,252,0.1));
    border-color:#4b71fc;
}
.ve_feat_box_11{
    filter: drop-shadow(0 0 30px rgba(61,206,157,0.1));
    border-color:#3dce9d;
}

.ve_feature_slider_video{
    position: relative;
    z-index: 1;
}
.ve_feature_slider_video > video {
    max-width: 650px;
    width: 100%;
    min-height: 300px;
    height: 100%;
    border-radius: 10px;
    border-width: 2px;
    border-style: solid;
}

.ve_feat_box_1 .ve_feature_slider_video > video{
    filter: drop-shadow(0 0 30px rgba(168,41,233,0.1));
    border-color:#bd10e0;
}
.ve_feat_box_2 .ve_feature_slider_video > video{
    filter: drop-shadow(0 0 30px rgba(16,172,24,0.1));
    border-color:#0cca15;
}
.ve_feat_box_3 .ve_feature_slider_video > video{
    filter: drop-shadow(0 0 30px rgba(219,162,40,0.1));
    border-color:#ffb310;
}
.ve_feat_box_4 .ve_feature_slider_video > video{
    filter: drop-shadow(0 0 30px rgba(252,70,118,0.1));
    border-color:#fd4675;
}
.ve_feat_box_5 .ve_feature_slider_video > video{
    filter: drop-shadow(0 0 30px rgba(84,145,254,0.1));
    border-color:#5491ff;
}
.ve_feat_box_6 .ve_feature_slider_video > video{
    filter: drop-shadow(0 0 30px rgba(248,79,164,0.1));
    border-color: #fa4ea6;
}
.ve_feat_box_7 .ve_feature_slider_video > video{
    filter: drop-shadow(0 0 30px rgba(155,101,255,0.1));
    border-color: #9b65ff;
}
.ve_feat_box_8 .ve_feature_slider_video > video {
    filter: drop-shadow(0 0 30px rgba(4,164,236,0.1));
    border-color:#04a4ec;
}
.ve_feat_box_9 .ve_feature_slider_video > video{
    filter: drop-shadow(0 0 30px rgba(180,195,109,0.1));
    border-color:#b4c36d;    
}
.ve_feat_box_10 .ve_feature_slider_video > video{
    filter: drop-shadow(0 0 30px rgba(75,113,252,0.1));
    border-color:#4b71fc;
}
.ve_feat_box_11 .ve_feature_slider_video > video{
    filter: drop-shadow(0 0 30px rgba(61,206,157,0.1));
    border-color:#3dce9d;
}
.ve_feature_slide_content {
    max-width: 500px;
}
.ve_feature_slide_head {
    display: inline-block;    
    border-width: 2px;     
    border-style: solid;
    border-radius: 6px;
    margin-bottom: 20px;
    padding: 8px 20px;
    position: relative;
    z-index: 1;
}

.ve_feat_box_1 .ve_feature_slide_head{
    background-color: #faf0ff;
    border-color: #bd10e0;
}
.ve_feat_box_2 .ve_feature_slide_head{
    background-color: #f6fff7;
    border-color: #0cca15;
}
.ve_feat_box_3 .ve_feature_slide_head{
    background-color: #fffbf3;
    border-color: #ffb310;
}
.ve_feat_box_4 .ve_feature_slide_head{
    background-color: #ffeef2;
    border-color: #fd4675;
}
.ve_feat_box_5 .ve_feature_slide_head{
    background-color: #f7faff;
    border-color: #5491ff;
}
.ve_feat_box_6 .ve_feature_slide_head{
    filter: drop-shadow(0 0 30px rgba(248,79,164,0.1));
    border-color: #fa4ea6;
}
.ve_feat_box_7 .ve_feature_slide_head{
    filter: drop-shadow(0 0 30px rgba(155,101,255,0.1));
    border-color: #9b65ff;
}
.ve_feat_box_8 .ve_feature_slide_head{
    background-color: #eaf8ff;
    border-color: #04a4ec;
}
.ve_feat_box_9 .ve_feature_slide_head{
    filter: drop-shadow(0 0 30px rgba(180,195,109,0.1));
    border-color:#b4c36d;    
}
.ve_feat_box_10 .ve_feature_slide_head{
    filter: drop-shadow(0 0 30px rgba(75,113,252,0.1));
    border-color:#4b71fc;
}
.ve_feat_box_11 .ve_feature_slide_head{
    filter: drop-shadow(0 0 30px rgba(61,206,157,0.1));
    border-color:#3dce9d;
}
.ve_feature_slide_head h4{
    font-size: 28px;
    font-weight: 800;
    text-transform: capitalize;    
}

.ve_feat_box_1 .ve_feature_slide_head h4{
    color: #bd10e0;
}
.ve_feat_box_2 .ve_feature_slide_head h4{
    color: #0cca15;
}
.ve_feat_box_3 .ve_feature_slide_head h4{
    color: #ffb310;
}
.ve_feat_box_4 .ve_feature_slide_head h4{
    color: #fd4675;
}
.ve_feat_box_5 .ve_feature_slide_head h4{
    color: #5491ff;
}
.ve_feat_box_6 .ve_feature_slide_head h4{    
    color: #fa4ea6;
}
.ve_feat_box_7 .ve_feature_slide_head h4{    
    color: #9b65ff;
}
.ve_feat_box_8 .ve_feature_slide_head h4{
    color: #04a4ec;
}
.ve_feat_box_9 .ve_feature_slide_head h4{    
    color:#b4c36d;    
}
.ve_feat_box_10 .ve_feature_slide_head h4{    
    color:#4b71fc;
}
.ve_feat_box_11 .ve_feature_slide_head h4{    
    color:#3dce9d;
}

.ve_feature_slide_content p{
    font-size: 20px;
    font-weight: 400;
    color: #271e42;
    padding-bottom: 10px;
}
.ve_feature_slide_content p:last-child {
    padding-bottom: 0;
}
.ve_feature_slide_video_section{
    position: relative;
}
.ve_feature_slide_video_section > .ve_videoShape{
    position: absolute;
}
.ve_feature_slide_video_section > .ve_videoShape_1 {
    top: -25px;
    right: -20px;
}
.ve_feature_slide_video_section > .ve_videoShape_2{
    bottom: -25px;
    left: -20px;
} 
.ve_feature_slider_box_flex > svg{
    position: absolute;
}
.ve_feature_shape1 {
    top: -15px;
    left: -30px;
}
.ve_feature_shape2 {
    top: -15px;
    right: -30px;
}
.ve_feature_shape3 {
    bottom: -15px;
    left: -30px;
}
.ve_feature_shape4{
    bottom: -15px;
    right: -30px;
}
/* Feature Section CSS End */

/* Demo Section CSS Start */
.ve_demo_wrapper{
    background-color: #fff;
    padding: 80px;
}
.ve_demo_heading h1{
    background-image: url(../images/banner-main-head-bg.png);
    color: #fff;
}
.ve_demo_parent {
    background-image: url(../images/demo-main-bg.png);
    padding: 58px 0;
    margin-top: 50px;
}
.ve_demo_btn {
    padding-top: 20px;
}
.ve_demo_btn .ve_btn{
    max-width: 489px;
    height: 70px;
    font-size: 27px;    
}
/* Demo Section CSS End */

/* Service Section CSS Start */
.ve_service_wrapper {
    background-image: url(../images/service-main-bg.png);
    padding: 160px 0 150px 0;
}
.ve_service_heading h1{
    background-image: url(../images/feature-head-bg.png);
}
.ve_service_img {
    padding: 80px 5px 0px 5px;
    text-align: center;
}
/* Service Section CSS End */

/* Feature Slider CSS Start */
.ve_feature_wrapper{
    background-color: #fff;
    padding: 80px;
}
.ve_feature_parent {
    background-image: url(../images/demo-main-bg.png);
    padding: 90px 120px 125px 120px;
    margin-top: 50px;
}
.ve_feat_slid_box{
    min-height: 450px;
    background-color: #fff;
    border-radius: 20px;
    text-align: center;
    padding: 40px 30px;
}
.ve_feat_box1, .ve_feat_box5, .ve_feat_box9{
    box-shadow: inset 0 0 5px rgba(109,153,213,0.2);    
    border: 2px solid #eda7ff;
}
.ve_feat_box2, .ve_feat_box6{
    box-shadow: inset 0 0 5px rgba(109,153,213,0.2);    
    border: 2px solid #ffd46f;
}
.ve_feat_box3, .ve_feat_box7{
    box-shadow: inset 0 0 5px rgba(109,153,213,0.2);    
    border: 2px solid #83bfff;
}
.ve_feat_box4, .ve_feat_box8{
    box-shadow: inset 0 0 5px rgba(109,153,213,0.2);    
    border: 2px solid #ffa7c2;
}
.ve_feat_slid_box h2 {
    font-size: 23px;
    font-weight: 800;
    color: #1d2333;
    text-transform: capitalize;
    padding: 40px 0 10px 0;
}
.ve_feat_slid_box p{
    font-size: 18px;
    font-weight: 400;
    color: #697081;    
}
.ve_feature_inner, .ve_tstmnl_inner{
    position: relative;
    overflow: hidden;
    padding-top: 40px;
}
.ve_feature_inner .swiper-button-next, .ve_feature_inner .swiper-button-prev {
    width: 60px;
    height: 60px;
    background-color: #282659;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: unset;
}
.ve_slider_arrow {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: end;
    margin-bottom: 40px;
}
/* Feature Slider CSS End */

/* Pricing Section CSS Start */
.ve_pricing_wrapper {
    background-image: url(../images/price-main-bg.png);
    padding: 170px 0 80px 0;
}
.ve_pricing_heading h1{
    background-image: url(../images/price-head-bg.png);
}
.ve_pricing_flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    padding-top: 80px;
}
.ve_price_table{
    background-image: url(../images/price-table-bg.jpg);   
    max-width: 470px;     
    width: 100%;
    filter: drop-shadow(0 0 30px rgba(199,152,100,0.2));
    border-radius: 20px;
}
.ve_price_table_head{
    padding: 20px 0 0 40px;
}
.ve_price_table_head > img{
    display: block;
}
.ve_price_table_head h1 {
    font-size: 60px;
    font-weight: 800;
    color: #f95e29;
    display: inline-block;
    padding-top: 10px;
}
.ve_price_table_head span{
    font-size: 30px;
    font-weight: 600;
    color: #222222;
    text-transform: capitalize;
    padding-left: 10px;
}
.ve_price_table_list{
    padding-top: 100px;
}
.ve_price_table_list p{
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    text-transform: capitalize;
    padding:5px 0 5px 40px;  
    margin-bottom: 25px;  
}
.ve_price_table_list p:nth-of-type(2n+2){
    background-color: rgba(255,255,255,0.102);
    padding: 15px 0 15px 40px;
}
.ve_price_table_list p img{
    display: inline-block;
    margin-right: 5px;
}
.ve_pricing_plans_box {
    max-width: 470px;
    width: 100%;
    background-color: #fff;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    margin-bottom: 20px;
}
.ve_plans_box1{
    box-shadow: inset 0 0 5px rgba(109,153,213,0.2);
    border: 2px solid #eda7ff;
    filter: drop-shadow(-17.239px 22.064px 20px rgba(220,33,250,0.2));
}
.ve_plans_box2{
    box-shadow: inset 0 0 5px rgba(109,153,213,0.2);
    border: 2px solid #ffd46f;
    filter: drop-shadow(-17.239px 22.064px 20px rgba(250,176,33,0.2));
}
.ve_plans_box3{
    box-shadow: inset 0 0 5px rgba(109,153,213,0.2);
    border: 2px solid #83bfff;
    filter: drop-shadow(-17.239px 22.064px 20px rgba(33,125,250,0.2));
}
.ve_plans_box4{
    box-shadow: inset 0 0 5px rgba(109,153,213,0.2);
    border: 2px solid #ffa7c2;
    filter: drop-shadow(-17.239px 22.064px 20px rgba(250,33,84,0.2));
}
.ve_plans_box5{
    box-shadow: inset 0 0 5px rgba(109,153,213,0.2);
    border: 2px solid #a48fee;
    filter: drop-shadow(-17.239px 22.064px 20px rgba(169,58,233,0.2));
}
.ve_plans_box5{
    margin-bottom: 0;
}
.ve_plans_price h4{
    font-size: 26px;
    font-weight: 800;
    color: #1d2333;
}
.ve_plans_price p{
    font-size: 20px;
    font-weight:700;
    color: #1d2333;
}
.ve_pricing_pymnt {
    padding-top: 50px;
}
.ve_pricing_pymnt > p{
    background-color: #ffe7d8;
}
/* Pricing Section CSS End */

/* Guarantee CSS Start */
.ve_gurnt_wrapper {
    background: #fff;
    padding: 80px 0;
}
.ve_grnt_box {
    background-image: url(../images/member-box-bg.png);
    padding: 130px 70px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
}
.ve_grnt_img{
    margin-top: 60px;
}
.ve_grnt_content{
    max-width: 680px;
    width: 100%;
}
.ve_grnt_content > h4{
    font-size: 46px;
    font-weight: 900;    
    color: #ffa800;
}
.ve_grnt_content > p{
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    padding-top: 30px;
}
/* Guarantee CSS End */

/* Bonus CSS Start */
.ve_bonus_box {    
    padding: 116px 70px;
    margin-top: 60px;
}
.ve_bonus_box .ve_grnt_content > h4{
    color: #fff;
}
.ve_bonus_box .ve_grnt_content > h4 > span{
    color: #ffa800;
}
/* Bonus CSS End */

/* Table Section CSS Start */
.ve_table_main_wrapper{
    background-image: url(../images/table-main-bg.jpg);
    padding: 80px 0;
}
.ve_table_heading h1{
    background-image: url(../images/table-head-bg.png);
    max-width: 800px;
}
.ve_table_parent{
    padding-top: 100px;
}
.ve_table_inner {
    background-image: url(../images/tabl-bg.png);
    border-radius: 54px;
    filter: drop-shadow(0 0 60px rgba(119,48,250,0.1));
    max-width: 770px;
    width: 100%;
    margin: auto;
    padding: 40px 10px 10px 10px;
}
.ve_table_header{
    position: relative;
    z-index: 1;
}
.ve_table_header:after{
    content: '';
    max-width: 414px;
    width: 100%;
    height: 30px;
    background-color: #43b237;
    filter: drop-shadow(0 0 60px rgba(119,48,250,0.1));
    border-radius: 30px;
    position: absolute;
    right: 0;
    bottom: -10px;
    left: 0;
    margin: auto;
    z-index: -1;
}
.ve_tble_header_inner{
    background-color: #ffffff;
    filter: drop-shadow(0 0 60px rgba(119,48,250,0.1));
    border-radius: 30px;
    max-width: 564px;
    width: 100%;
    margin: auto;
    padding: 30px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;    
}
.ve_table_header p{
    display: inline-block;
    background-color: rgba(117,59,250,0.10196078431372549);
    border: 1px solid #dac9ff;
    border-radius: 26px;
    padding: 5px 25px;
    font-size: 20px;
    font-weight: 800;
    color: #7539fa;
    text-transform: capitalize;
}
.ve_table_header h2{    
    font-size: 42px;
    font-weight: 900;
    color: #271e42;
    text-transform: capitalize;
    padding-top: 10px;
}
.ve_table_logo {
    padding: 100px 0 0 50px;
}
.ve_table_list{
    padding-top: 50px;
}
.ve_table_list p {
    font-size: 28px;
    font-weight: 600;
    color: #271e42;
    padding: 5px 0 5px 60px;
    margin-bottom: 25px;
}
.ve_table_list p:nth-of-type(2n+2) {
    background-color: #f4efff;
    padding: 14px 0 14px 60px;
}
.ve_table_list p:last-child {
    border-radius: 0 0 40px 40px;
    margin-bottom: 0;
}
.ve_table_list p img{
    display: inline-block;
    margin-right: 10px;
}
/* Table Section CSS End */

/* Testimonial Section CSS Start */
.ve_tesmnl_wrapper { 
    padding-bottom: 0;
}
.ve_tesmnl_wrapper .ve_feature_parent {    
    padding: 83px 120px 125px 120px; 
}
.ve_testmnl_box{
    background-color: #fff;
    border-radius: 20px;    
}
.ve_testmnl_head{
    border-bottom: 2px solid #f3f3f3;
    padding: 25px 10px 25px 40px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.ve_testmnl_head > img{
    width: 90px;
    height: 90px;
    background-color: #c7c7c7;
    border-radius: 50%;
    object-fit: contain;
}
.ve_client_info > h4{
    font-size: 26px;
    font-weight: 800;
    color: #271e42;
    text-transform: capitalize;
    padding-bottom: 10px;
}
.ve_tstmnl_inner .swiper-button-next, .ve_tstmnl_inner .swiper-button-prev {
    width: 60px;
    height: 60px;
    background-color: #282659;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: unset;
}
.ve_tesml_content p{
    font-size: 24px;
    font-weight: 500;
    color: #271e42;
    padding: 25px 15px 25px 40px;
}
.ve_tesml_content p:nth-child(2) {
    padding-top: 0;
}
/* Testimonial Section CSS End */

/* Footer CSS Start */
.ve_footer_wrapper {
    background-image: url(../images/footer-main-bg.jpg);
    padding: 140px 0 60px 0;
    margin-top: 50px;
    background-position: top;
}
.ve_footer_box{
    max-width: 1170px;
    width: 100%;
    margin: auto;
    background-color: rgba(255,255,255,0.7019607843137254);    
    filter: drop-shadow(0 0 30px rgba(32,148,196,0.2));    
    border-radius: 20px;
    padding: 50px 40px 25px 40px;
    position: relative;
    z-index: 1;
}
.ve_footer_box > img{
    position: absolute;
}
.ve_footer_box > img:first-child {
    top: -20px;
    left: -20px;
}
.ve_footer_box > img:nth-child(2){
    top: -20px;
    right: -20px;
}
.ve_footer_content > p {
    max-width: 922px;
    width: 100%;
    font-size: 22px;
    font-weight: 500;
    color: #271e42;
    margin: auto;
    padding: 32px 0 21px 0;
}
.ve_footer_content > h4{
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
    color: #271e42;
    padding: 5px 25px;
    background-color: #f7efff;
    border-radius: 50px;
}
.ve_footer_contact {
    max-width: 370px;
    width: 100%;
    margin: 35px auto;
    background-color: #ffffff;
    filter: drop-shadow(0 0 15px rgba(32,148,196,0.2));
    box-shadow: inset 0 0 15px rgba(19,176,241,0.1);
    border-radius: 26px;
    display: flex;
    align-items: center;
    padding: 15px;
    gap: 10px;
}
.ve_contact_detail {
    text-align: left;
}
.ve_contact_detail > p{
    font-size: 18px;
    font-weight: 600;    
    color: #9c6aff;
}
.ve_contact_detail > a {
    font-size: 22px;
    font-weight: 800;
    color: #271e42;
    text-transform: lowercase;
}
.ve_copyright{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ve_copyright > p, .ve_copyright > ul li, .ve_copyright > ul li a{
    font-size: 18px;
    font-weight: 600;
    color: #271e42;
}
.ve_copyright > ul li{
    display: inline-flex;
    align-items: center;    
}
/* Footer CSS End */

/* section.ve_feature_slider_wrapper.ve_bg_img_cover.ve_v_feature_slider_wrapper .ve_feature_slider_video > video {
    max-width: 100%;
} */

/**/
/* Faq Section CSS Start */
.ve_faq_wrapper {
    background-image: url(../images/faq-main-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 80px 0 30px 0;
    /* margin-top: -140px; */
    position: relative;
    z-index: 1;
}
.ve_faq_head {
    margin-top: 150px;
}
.ve_faq_head .ve_heading{
    background-image: url(../images/faq-head-bg.png);
    max-width:884px;
    height:210px;
    flex-direction: column;
    color: #fff;
    font-size: 30px;
}
.ve_faq_head .ve_heading span {
    background: linear-gradient( 0deg, rgb(30,217,79) 0%, rgb(242,240,71) 100%);
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    font-size: 50px;
}
.ve_faq_main {
    margin-top: 80px;
}
div#accordionExample {
    margin-right: 25px;
}
div#accordionExample2 {
    margin-left: 25px;
}
.accordion-header{
    position: relative;
}
.accordion-header img {
    position: absolute;
    top: -25px;
    left: -17px;
    z-index: 3;
}
.accordion-item {
    background-color: #17092b;
    border: 2px solid #716df2;
    color: #fff;
    border-radius: 10px !important;
    margin-bottom: 50px;
}
.accordion-item:not(:first-of-type) {
    border-top: 2px solid #716df2;
}
.accordion-button {
    border-radius: 10px;
    background-color: #17092b;
    border: none;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    border-radius: 10px !important;
    line-height: 1.5;
    padding: 24px 15px 24px 25px;
}
.accordion-body{
    background-color: #291744;
    border-radius: 8px;
    padding: 15px;
    margin: 10px;
    font-size: 20px;
    font-weight: 400;
    color:#fff;
}
.accordion-button::after{    
    background-image: url(../images/faq-arrow.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 36px;
    height: 36px;
    margin-left: auto;
}
.accordion-button:not(.collapsed)::after{
    background-image: url(../images/faq-arrow.png);    
}
.accordion-button .collapsed::after{
    background-image: url(../images/faq-arrow.png);    
    transform: rotate(180deg);
}
.accordion-button:focus {   
    border: none;    
    box-shadow: none;
}
.accordion-button:not(.collapsed) {
    background-color: #17092b;
    color: #fff;
    border: none;
    box-shadow: none;
}
.ve_faq_pymnt_main h2{
    color: #fff;
}
.ve_faq_pymnt_main {
    padding-top: 20px;
}
.ve_faq_pymnt_main .ve_pymnt_inner p{
    color: #fff;
}
.ve_faq_wrapper .ve_arrow_down {
    position: absolute;
    top: 160px;
    right: 0;
    left: 0;
}
/* Faq Section CSS End */

/**/
/* .ve_video_slider_wrapper.ve_bg_img_cover.ve_video_list_slider_main .ve_video_slider_main {
    width: 96%;
    margin: 0 auto;
} */


/*============= Responsive CSS Start =============*/
@media(min-width:1850px){
    .ve_video_list_slider_main .swiper-slide.swiper-slide-active{
        transform-origin: left;
    }
}
@media(max-width:1850px){
    .ve_video_list_slider_main .swiper-slide.swiper-slide-active{
        transform-origin: center !important; 
    }
    img.video_slide_bg {
        max-width: 720px;
    }
    .ve_demo_wrapper, .ve_feature_wrapper {     
        padding: 80px 15px;
    }
    section.ve_feature_wrapper.ve_tesmnl_wrapper {
        padding-bottom: 0;
    }
}
@media(max-width:1800px){
    img.video_slide_bg {
        max-width: 670px;
        top: 15px;
    }
}
@media(max-width:1750px){
    .ve_slider_video {
        max-width: 450px;
        margin: auto;
    }
    img.video_slide_bg {
        max-width: 600px;
        top: 23px;
    }
    .ve_feature_parent {        
        padding: 50px 80px 50px 100px;        
    }
    .ve_feat_slid_box {
        padding: 40px 15px;
    }
    .ve_feat_slid_box h2 {
        font-size: 23px;
    }
    .ve_feat_slid_box p {
        font-size: 16px;     
    }
    .ve_tesmnl_wrapper .ve_feature_parent {
        padding: 83px 80px 125px 80px;
    }
}
@media(max-width:1500px){
    .ve_slider_video {
        max-width: 400px;     
    }
    img.video_slide_bg {
        max-width: 530px;
        top: 30px;
    }
    .ve_tesmnl_wrapper .ve_feature_parent {
        padding: 60px 40px 105px 40px;
    }
}
@media(max-width:1440px){
    .ve_banner_wrapper .ve_banner_icon1 {
        top: 50px;
        left: 20px;     
    }
    .ve_banner_wrapper .ve_banner_icon3 {
        right: 50px;     
    }
    .ve_banner_wrapper .ve_banner_icon4 {        
        left: 30px;     
    }
    .ve_banner_wrapper .ve_banner_icon2 {        
        right: 30px;     
    }
    .ve_banner_heading h4 {
        font-size: 23px;
    }
    .ve_banner_heading h4 > img {        
        top: 10px;     
    }
    .ve_banner_heading h1 {
        font-size: 50px;
    }    
    .ve_grnt_content > h4 {
        font-size: 30px; 
    }
    .ve_grnt_content > p {
        font-size: 20px;     
    }
    .ve_grnt_box { 
        padding: 50px 65px;
    }
    .ve_grnt_img {
        margin-top: 0;
    }
    .ve_grnt_content {
        max-width: 570px; 
    }
    .ve_tesml_content p {
        font-size: 20px;     
        padding: 20px 15px 25px 25px;
    }
}
@media(max-width:1399px){
    .ve_feature_slider_box_flex {
        gap: 50px;
    }
    .ve_feature_shape1, .ve_feature_shape3 {     
        left: -10px;
    }
    .ve_feature_shape2, .ve_feature_shape4 {     
        right: -10px;
    }
    .ve_feature_parent {
        padding: 50px 50px 100px 50px;
    }
}
@media(max-width:1350px){
    .ve_slider_video {
        max-width: 350px;
    }
    img.video_slide_bg {
        max-width: 470px;
        top: 35px;
    }
    .ve_video_slider_wrapper .ve_heading {
        margin-bottom: 20px;
    }
}
@media(max-width:1199px){
    div#accordionExample {
        margin-right: 10px;
    }
    div#accordionExample2 {
        margin-left: 10px;
    }
    .ve_banner_wrapper .ve_banner_icon1 {
        top: 150px;        
        width: 80px;
        height: auto;
    }
    .ve_banner_wrapper .ve_banner_icon3 {
        right: 30px;
        width: 80px;
    }
    .ve_banner_wrapper .ve_banner_icon4 {
        left: 20px;
        width: 90px;
    }
    .ve_banner_wrapper .ve_banner_icon2 {     
        width: 80px;
    }
    .ve_logo_content h6, .ve_logo_content p {
        font-size: 20px;     
    }
    .ve_banner_heading h4 {
        font-size: 20px;
        padding: 8px 25px;
    }
    .ve_banner_heading h1 {
        font-size: 40px;        
    }
    .ve_banner_main_head {
        max-width: 750px;
        height: 145px;     
    }
    .ve_feature_slide_content p {
        font-size: 18px;     
    }
    .ve_feature_slide_content {
        max-width: 450px;
    }
    .ve_feature_slide_head h4 {
        font-size: 26px;     
    }
    .ve_feature_slider_box_flex {     
        margin-bottom: 70px;
    }
    .ve_feature_slider_video > video {
        min-height: 200px;
    }
    .ve_feature_slider_wrapper { 
        padding: 80px 0;
    }
    .ve_banner_wrapper { 
        padding-bottom: 30px;
    }
    .ve_grnt_content > h4 {
        font-size: 25px;
        font-weight: 700;
    }
    .ve_grnt_content > p {
        font-size: 18px;
    }
    .ve_grnt_content > p > span {
        font-weight: 700;        
    }
    .ve_grnt_content {
        max-width: 460px;
    }
    .ve_footer_content > p {        
        font-size: 18px;
    }
    .ve_footer_content > h4 {       
        font-size: 18px;
        padding: 5px 15px;        
    }
    .ve_footer_wrapper {
        padding: 80px 0 50px 0;
        margin-top: 10px;
    }
    .ve_slider_video {
        max-width: 300px;
    }
    img.video_slide_bg {
        max-width: 400px;
        top: 40px;
    }
    .ve_heading h1 {
        background-size: contain;
        max-width: 850px;
        height: 150px;
        font-size: 40px;
    }
    .ve_feature_wrapper .ve_heading h1 {
        font-size: 35px;
    }
    .ve_heading h4 {
        font-size: 18px;     
    }
    .ve_demo_wrapper {
        padding: 0px 15px 80px 15px;
    }
    .ve_demo_wrapper {
        padding: 0px 15px 50px 15px;
    }
    .ve_service_wrapper {     
        padding: 100px 0 80px 0;
    }
    .ve_pricing_flex {
        flex-direction: column;
        gap: 30px;
    }
    .ve_pricing_wrapper {     
        padding: 100px 0 80px 0;
    }
    .ve_gurnt_wrapper {     
        padding-bottom: 0;
    }
    .ve_table_parent {
        padding-top: 50px;
    }
    .ve_tesmnl_wrapper .ve_feature_parent {
        padding: 50px 20px 85px 20px;
    }
    .ve_video_slider_tagline {
        margin: 0px 0;     
    }
    .ve_video_slider_tagline > h2 {
        font-size: 25px;
    }
    .ve_video_list_slider_main p.test_slider {
        font-size: 25px;
    }
}
@media(max-width:1100px){
    .ve_feature_slide_content p {
        font-size: 16px;
    }
    .ve_feature_slide_content {
        max-width: 400px;
    }
    .ve_feature_slide_head {        
        padding: 5px 15px;
    }
    .ve_feature_slide_head h4 {
        font-size: 19px;
        font-weight: 700;
    }
    .ve_feature_slider_box_flex {
        gap: 40px;
        margin-bottom: 30px;
    }
    .ve_feature_slider_box_flex > svg {        
        display: none;
    }
    .ve_grnt_content {
        max-width: 430px;
    }
}
@media(max-width:1024px){    
    .ve_banner_heading h4 {
        font-size: 18px;     
    }
    .ve_banner_heading h4 > img {
        width: 80px;
        height: auto;
    }
    .ve_banner_heading h4 > img {
        top: 10px;
    }
    .ve_banner_heading h4 > img:first-child {
        left: -60px;
    }
    .ve_banner_heading h4 > img:last-child {
        right: -60px;
    }
    .ve_banner_heading h1 {
        font-size: 30px;        
    }
    .ve_banner_main_head {
        max-width: 600px;
        height: 110px;
    } 
    .ve_feature_slide_content {
        max-width: 370px;
    }
    .ve_grnt_content > h4 {
        font-size: 22px; 
    }
    .ve_grnt_content > p {
        font-size: 16px;
        padding-top: 20px;
    }
    .ve_grnt_content {
        max-width: 380px;
    }
    .ve_feature_slider_box_flex {
        min-height: auto;
    }
    .ve_video_slider_tagline {     
        margin-top: 0;
    }
    .ve_video_slider_parent {     
        padding-bottom: 50px;
    }
}
@media(max-width:991px){
    .ve_video_list_slider_main .swiper-wrapper{
        display: flex;
        align-items: center;
    }
    div#accordionExample {
        margin-right: 0;
    }
    div#accordionExample2 {
        margin-left: 0;
    }
    .ve_logo > a > img {
        width: 150px;
        height: auto;
    }
    .ve_logo_content h6, .ve_logo_content p {
        font-size: 15px;
    }
    .ve_logo_section {
        max-width: 750px;
        padding: 15px;
    }
    .ve_banner_video_main {
        margin-top: 30px;
    }
    .ve_banner_heading h4 {
        font-size: 15px;
        padding: 6px 20px;
    }
    .ve_banner_heading h1 {
        font-size: 25px;     
    }
    .ve_banner_main_head {
        max-width: 540px;
        height: 100px;
    }
    .ve_banner_sbhead p {
        font-size: 20px;        
        height: 50px;
        line-height: 50px;
    }    
    .ve_flickr_text_main {
        min-width: 500px;
        height: 50px;
    }
    @keyframes text {

        0% {
            transform: translateY(0px);
        }
        13% {
            transform: translateY(0px);
        }
    
        15% {
            transform: translateY(-50px);
        }
        28% {
            transform: translateY(-50px);
        }
    
        30% {
            transform: translateY(-100px);
        }
        43% {
            transform: translateY(-100px);
        }
    
        45% {
            transform: translateY(-150px);
        }
        58% {
            transform: translateY(-150px);
        }
    
        60% {
            transform: translateY(-200px);
        }
        73% {
            transform: translateY(-200px);
        }
    
        75% {
            transform: translateY(-250px);
        }
        88% {
            transform: translateY(-250px);
        }
    
        90% {
            transform: translateY(-300px);
        }
        100% {
            transform: translateY(-300px);
        }
    }
    .ve_banner_video_center {
        max-width: 600px;
        height: 100%;
    }
    .ve_banner_video_center .ve_video {     
        top: 28px;
        left: 24px;
        max-width: 549px;        
        height: 310px;
    }
    .ve_banner_heading {
        padding-top: 30px;
    }
    .ve_pymnt_section_main {
        padding-top: 50px;
    }
    .ve_pymnt_head > h2 {
        max-width: 800px;
        font-size: 31px;
    }
    .ve_pymnt_head > h4 {
        font-size: 19px;
    }
    .ve_feature_main_head > h2 {
        max-width: 670px;
        height: 125px;
        font-size: 30px;
    }    
    .ve_feature_main_head > h4 {
        font-size: 18px;
    }
    .ve_feature_slider_box_flex {     
        flex-direction: column;
    }
    .ve_feature_slider_inner .ve_feature_slider_box_flex:nth-of-type(2n+2) {
        flex-direction: column;
    }
    .ve_feature_slide_content {
        max-width: 640px;
    }
    .ve_feature_slider_box_flex {
        max-width: 740px;
    }
    .ve_feature_main_head {
        padding-bottom: 50px;
    }
    .ve_feature_slider_box_flex {
        padding: 30px 30px 40px 25px;
    }
    .ve_grnt_box {
        padding: 50px 20px;
        flex-direction: column;
        max-width: 700px;
        margin: auto;
        background: #050333;
        border-radius: 20px;
    }
    .ve_grnt_box.ve_bonus_box.ve_bg_img_cover {
        margin-top: 30px;
        flex-direction: column-reverse;
    }
    .ve_grnt_img img {
        max-width: 500px;
        width: 100%;
        height: auto;
        margin-top: 50px;
    }
    .ve_grnt_content {
        max-width: 580px;
    }
    .ve_footer_box > img{
        display: none;
    }
    .ve_gurnt_wrapper { 
        padding: 80px 0 0px 0;
    }
    .ve_footer_box {        
        padding: 50px 20px 25px 20px;
    }
    .ve_footer_content > p, .ve_footer_content > h4, .ve_copyright > p, .ve_copyright > ul li, .ve_copyright > ul li a {
        font-size: 16px;
    }     
    .ve_contact_detail > a {
        font-size: 20px; 
    }
    .ve_heading h1 {
        max-width: 630px;
        height: 117px;
        font-size: 30px;
    }
    .ve_heading h4 {
        font-size: 14px;
        font-weight: 600;
    }
    .ve_slider_video {
        max-width: 420px;
    }
    img.video_slide_bg {
        max-width: 570px;
        top: 25px;
    }
    .ve_video_slider_parent {
        padding-bottom: 80px;
    }
    .ve_feature_slider_wrapper {
        padding: 80px 0 50px 0;
    }    
    .ve_demo_parent {
        background: #050333;       
        margin-top: 30px;        
        border-radius: 20px;
    }
    .ve_feature_parent {
        padding: 20px 15px 50px 15px;
        background: #050333;
        border-radius: 20px;
    }
    .ve_feature_wrapper .ve_heading h1 {
        font-size: 27px;
    }
    section.ve_feature_wrapper {
        padding-bottom: 50px;
    }
    .ve_pricing_flex {
        padding-top: 50px;
    }
    .ve_tesmnl_wrapper .ve_feature_parent {
        padding: 20px 15px 40px 15px;
    }
    .ve_testmnl_head > img {
        width: 70px;
        height: 70px;     
    }
    .ve_client_info > h4 {
        font-size: 22px;     
        padding-bottom: 0;
    }
    .ve_tesml_content p {
        font-size: 16px;
        padding: 25px 15px 25px 25px;
    }
    .ve_video_slider_wrapper {     
        padding: 100px 0 120px 0;
    }
}
@media(max-width:767px){
    .accordion-button {
        font-size: 16px;
        padding: 24px 15px 18px 25px;
    }
    .accordion-body {
        font-size: 16px;
    }
    .ve_logo_content h6, .ve_logo_content p {
        font-size: 11px;
    }
    .ve_logo > a > img {
        width: 120px;
        height: auto;
    }
    .ve_logo_section {
        gap: 10px;
        max-width: 550px;
    }
    .ve_banner_heading h4 {
        font-size: 13px;
        padding: 6px 15px;
        border-radius: 50px;
    }
    .ve_banner_heading h1 {
        font-size: 20px;     
    }
    .ve_banner_main_head {
        max-width: 450px;
        height: 80px;
    }
    .ve_pymnt_head > h2 {
        max-width: 550px;
        font-size: 23px;
        border-radius: 10px;
        padding: 10px 15px;
    }
    .ve_pymnt_head > h4 {
        font-size: 16px;
        padding: 7px 20px;
    }
    .ve_pymnt_section_main > h2 {
        font-size: 40px;
    }
    .ve_btn {
        max-width: 520px;
        height: 75px;
        font-size: 25px;
    }
    .ve_pymnt_section_main > p {
        max-width: 690px;
        font-size: 14px;
        padding: 13px 10px 13px 15px;
    }
    .ve_feature_main_head > h2 {
        max-width: 520px;
        height: 96px;
        font-size: 23px;
    }
    .ve_feature_slider_box_flex {
        padding: 30px 20px 40px 25px;
    }
    .ve_feature_slider_wrapper {
        padding: 80px 0 60px 0;
    }
    .ve_gurnt_wrapper { 
        padding: 50px 0;
    }
    .ve_footer_content > p, .ve_footer_content > h4, .ve_copyright > p, .ve_copyright > ul li, .ve_copyright > ul li a {
        font-size: 12px;
    }
    .ve_footer_content > p {       
        padding: 22px 0 11px 0;
    }
    .ve_footer_contact {  
        max-width: 320px;     
        margin: 20px auto;
    }
    .ve_contact_detail > p {
        font-size: 16px; 
    }
    .ve_contact_detail > a {
        font-size: 18px;
    }
    .ve_footer_box {
        padding: 40px 15px 20px 15px;
    }
    .ve_footer_wrapper {
        padding: 50px 0 50px 0;
    }
    .ve_banner_wrapper > img{
        display: none;
    }
    .ve_flickr_text_main {
        min-width: 400px;
        height: 40px;
    }
    .ve_banner_sbhead p {
        font-size: 16px;
        height: 50px;
        line-height: 40px;
        font-weight: 600;
    }
    .ve_banner_video_center .ve_video {
        top: 24px;
        left: 21px;
        max-width: 435px;
        height: 244px;
    }
    .ve_banner_video_center {
        max-width: 480px;     
    }
    .ve_heading h1 {
        max-width: 490px;
        height: 91px;
        font-size: 23px;
    }
    .ve_heading h4 {
        font-size: 11px;     
        margin-top: 3px;
    }
    .ve_video_slider_wrapper {     
        padding: 60px 0 80px 0;
    }    
    .ve_feature_main_head > h4 {
        font-size: 14px;
    }
    .ve_demo_parent {
        padding: 40px 0;
    }
    .ve_service_wrapper {
        padding: 85px 0 80px 0;
    }
    .ve_feature_wrapper .ve_heading h1 {
        font-size: 21px;
    }
    .ve_feat_slid_box h2 {
        font-size: 21px;
    }
    .ve_price_table_list p {
        font-size: 22px;
    }
    .ve_price_table_head span {
        font-size: 25px;
    }
    .ve_table_list p {
        font-size: 18px;
        padding: 5px 0 5px 20px;
    }
    .ve_table_list p:nth-of-type(2n+2) {
        background-color: #f4efff;
        padding: 10px 0 10px 20px;
    }
    .ve_table_header h2 {
        font-size: 35px;
    }
    .ve_service_img {
        padding: 50px 5px 0px 5px;
    }
    .ve_table_main_wrapper {     
        padding: 0px 0 50px 0;
    }
    .ve_table_inner {        
        border-radius: 25px;
        padding: 10px 10px 10px 10px;
    }
    .ve_tble_header_inner {
        border-radius: 25px;
    }
    .ve_table_list p:last-child {
        border-radius: 0 0 25px 25px;     
    }
    section.ve_feature_wrapper.ve_tesmnl_wrapper {     
        padding-top: 50px;
    }
    .ve_video_list_slider_main .swiper-wrapper {
        display: flex;
        align-items: center;
    }
}
@media(max-width:675px){
    .ve_feat_slid_box h2 {
        font-size: 18px;
    }
}
@media(max-width:575px){
    .ve_logo_section {     
        max-width: 455px;
    }
    .ve_logo_content h6, .ve_logo_content p {
        font-size: 10px;
    }    
    .ve_logo > a > img {
        width: 93px;     
    }
    .ve_banner_heading h4 {
        font-size: 11px;
        padding: 5px 10px;     
    }       
    .ve_pymnt_head > h2 {
        max-width: 450px;
        font-size: 19px;     
        padding: 10px;
    }
    .ve_pymnt_head > h4 {
        font-size: 13px;
        padding: 5px 15px;
    }
    .ve_pymnt_section_main > h2 {
        font-size: 30px;
        padding-top: 20px;
    }
    .ve_btn {
        max-width: 420px;
        height: 60px;
        font-size: 20px;
        margin: 15px auto;
    }
    @keyframes shadow-pulse-2 {
        0% {        
            box-shadow: 0 0 0 0 rgba(3, 116, 233, 0.5);        
        }
        100% {
            box-shadow: 0 0 0 15px rgb(255 255 0 / 0%);        
        }
    }
    .ve_pymnt_inner {
        padding-top: 10px;     
    }
    .ve_pymnt_inner > p {
        font-size: 14px;
        padding: 10px 0;
    }
    .ve_pymnt_section_main > p {
        max-width: 690px;
        font-size: 13px;
        padding: 10px;
    }
    .ve_feature_main_head > h2 {
        max-width: 410px;
        height: 76px;
        font-size: 18px;
    }
    .ve_feature_main_head > h4 {
        font-size: 13px;
        padding: 6px 20px;
    }
    .ve_feature_slider_video > video {
        min-height: 150px;
    }
    .ve_grnt_box {
        padding: 30px 20px;
        background: #060338;
        border-radius: 10px;
    }
    .ve_grnt_img img {
        max-width: 450px;
        margin-top: 0;
    }
    .ve_grnt_content > h4 {
        font-size: 19px;
        padding-bottom: 15px;
    }
    .ve_grnt_content > p {
        font-size: 15px;
        padding-top: 10px;
    }
    .ve_footer_logo > img {
        width: 180px;
        height: auto;
    }
    .ve_slider_video {
        max-width: 340px;
    }
    img.video_slide_bg {
        max-width: 460px;
        top: 32px;
    }
    .ve_demo_wrapper {
        padding: 0px 10px 30px 10px;
    }
    .ve_demo_btn .ve_btn {
        max-width: 420px;
        height: 70px;
        font-size: 22px;
    }
    .ve_demo_parent {
        padding: 30px 0 35px;
    }
    .ve_feature_wrapper .ve_heading h1 {
        font-size: 18px;
        height: 80px;
    }
    .ve_feat_slid_box{
        min-height: 400px;
    }
    .ve_plans_price h4 {
        font-size: 20px;
    }
    .ve_plans_price p {
        font-size: 16px;
    }
}
@media(max-width:525px){
    .ve_banner_video_center {
        max-width: 440px;
    }
    .ve_banner_video_center .ve_video {     
        max-width: 398px;
        height: 225px;
    }
}
@media(max-width:480px){
    .accordion-header img {        
        top: -20px;
        left: -12px;     
        width: 45px;
        height: auto;
    }
    .accordion-button {
        font-size: 16px;
        padding: 20px 15px 15px 20px;
    }
    .accordion-body {
        font-size: 15px;
        padding: 10px;
        margin: 5px;
    }
    .accordion-item {
        margin-bottom: 40px;
    }
    .ve_faq_wrapper {
        /* margin-top: -150px; */
        padding: 50px 0;
    }
    .ve_faq_wrapper .ve_arrow_down {
        top: 180px;
    }
    .ve_logo_section {
        max-width: 485px;
        flex-direction: column;
        text-align: center;
    }
    .ve_logo > a > img {
        width: 120px;
    }
    .ve_logo_content h6, .ve_logo_content p {
        font-size: 11px;
    }
    .ve_banner_heading h4 {
        font-size: 10px;     
    }
    .ve_banner_heading {
        padding-top: 20px;
    }
    .ve_pymnt_head > h2 {
        max-width: 380px;
        font-size: 16px;
        padding: 10px 5px;
    }
    .ve_pymnt_head > h4 {
        font-size: 11px;
        padding: 5px 10px;
        font-weight: 500;
    }
    .ve_pymnt_section_main {
        padding-top: 30px;
    }
    .ve_top_icon a {
        width: 45px;
        height: 45px;
        bottom: 10px;
        right: 10px;
    }
    .ve_top_icon a svg {
        width: 20px;
        height: auto;
    }
    .ve_feature_main_head > h2 {
        max-width: 380px;
        height: 70px;
        font-size: 17px;
    }
    .ve_feature_main_head > h4 {
        font-size: 11px;
        font-weight: 600;
    }
    .ve_feature_main_head {
        padding-bottom: 30px;
    }
    .ve_feature_slide_video_section > .ve_videoShape {     
        display: none;
    }
    .ve_feature_slider_box_flex {
        padding: 30px 15px 20px 15px;
        gap: 20px;
    }
    .ve_feature_slide_content p {
        font-size: 15px;
    }
    .ve_feature_slider_wrapper {
        padding: 50px 0 40px 0;
    }
    .ve_gurnt_wrapper {
        padding: 40px 0;
    }
    .ve_contact_detail > p {
        font-size: 15px;
    }
    .ve_contact_detail > a {
        font-size: 16px;
    }
    .ve_footer_contact > img {
        width: 45px;
        height: auto;
    }
    .ve_footer_contact {
        max-width: 280px;        
        border-radius: 10px;
    }
    .ve_copyright {
        flex-direction: column;
    }
    .ve_footer_wrapper {
        padding: 50px 0;
    }
    .ve_banner_main_head {
        max-width: 360px;
        height: 67px;
    }
    .ve_flickr_text_main {
        min-width: 330px;     
    }
    .ve_banner_sbhead p {
        font-size: 14px;     
    }
    .ve_banner_video_center {
        max-width: 400px;
    }
    .ve_banner_video_center .ve_video {
        max-width: 365px;
        height: 205px;
        top: 20px;
        left: 16px;
    }
    .ve_video_slider_parent .swiper-button-next, .ve_video_slider_parent .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    .ve_heading h1 {
        max-width: 390px;
        height: 72px;
        font-size: 19px;
    }
    .ve_heading h4 {
        font-size: 10px;        
    }
    img.video_slide_bg {
        max-width: 392px;
        top: 11px;
    }
    .ve_slider_video {
        max-width: 290px;
    }
    .ve_video_slider_parent {
        padding-bottom: 50px;
        padding-top: 50px;
    }
    .ve_video_slider_tagline > h2 {
        max-width: 310px;
        font-size: 22px;
    }
    .ve_video_slider_main .swiper-pagination {
        bottom: -35px;
    }
    .ve_demo_parent {
        padding: 10px 0;
    }
    .ve_service_wrapper {
        padding: 55px 0 80px 0;
    }
    .ve_demo_btn .ve_btn {
        max-width: 348px;
        height: 50px;
        font-size: 18px;
    }
    .ve_feature_wrapper .ve_heading h1 {
        font-size: 15px;
        height: 70px;
    }
    .ve_feature_inner .swiper-button-next, .ve_feature_inner .swiper-button-prev{
        width: 40px;
        height: 40px;
    }
    .ve_tstmnl_inner .swiper-button-next, .ve_tstmnl_inner .swiper-button-prev{
        width: 40px;
        height: 40px;
    }
    .ve_plans_price p {
        font-size: 14px;
    }
    .ve_pricing_plans_box {
        padding: 25px 20px;
    }
    .ve_pricing_wrapper {
        padding: 60px 0 50px 0;
    }
    .ve_table_header h2 {
        font-size: 30px;
    }    
    .ve_table_list p {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .ve_table_logo {
        padding: 50px 0 0 10px;
    }
    .ve_demo_wrapper, .ve_feature_wrapper {
        padding: 30px 15px;
    }
    .ve_tstmnl_inner{
        padding-top: 30px;
    }
    .ve_table_main_wrapper {
        padding: 40px 0 20px;
    }
    .ve_table_header:after {
        max-width: 330px;
        bottom: -5px;
    }
    .ve_table_list p {     
        padding: 5px 0 5px 10px;
    }
    .ve_table_list p:nth-of-type(2n+2) {     
        padding: 10px 0 10px 10px;
    }
    .ve_video_list_slider_main p.test_slider {
        font-size: 22px;
    }
    .ve_video_list_slider_main .dotes_heading_inner {
        max-width: 310px;
    }
}
@media(max-width:425px){
    .accordion-button {
        font-size: 14px;        
    }
    .accordion-body {
        font-size: 13px;     
    }
    .ve_logo_content h6, .ve_logo_content p {
        font-size: 10px;
    }
    .ve_logo_section {
        max-width: 355px;
        padding: 15px 10px;     
    }
    .ve_banner_heading h4 {
        font-size: 9px;
    }
    .ve_banner_main_head {
        max-width: 340px;
        height: 62px;
    }
    .ve_banner_heading h1 {
        font-size: 15px;
        margin: -10px 0 0 -13px;
    }
    .ve_pymnt_head > h2 {
        max-width: 340px;
        font-size: 14px;     
    }
    .ve_pymnt_head > h4 {
        font-size: 10px;     
    }
    .ve_pymnt_section_main > h2 {
        font-size: 26px;     
    }
    .ve_btn {
        max-width: 360px;
        height: 55px;
        font-size: 17px;
        margin: 10px auto;
    }
    @keyframes shadow-pulse-2 {
        0% {        
            box-shadow: 0 0 0 0 rgba(3, 116, 233, 0.5);        
        }
        100% {
            box-shadow: 0 0 0 10px rgb(255 255 0 / 0%);        
        }
    }
    .ve_pymnt_inner > p {
        font-size: 13px;     
    }
    .ve_pymnt_section_main > p {     
        font-size: 11px;
        padding: 10px 5px;
        margin-top: 15px;
    }
    .ve_feature_main_head > h2 {
        font-size: 15px;
        font-weight: 700;
    }    
    .ve_feature_slide_head h4 {
        font-size: 20px;
        font-weight: 600;
    }
    .ve_feature_slider_box_flex {
        padding: 20px 15px 10px 15px;
        border-width: 1px;
        margin-bottom: 15px;
    }   
    .ve_feature_slide_head {     
        border-width: 1px;
    }
    .ve_feature_slide_content p {
        font-size: 13px;
    }
    .ve_feature_slider_inner .ve_feature_slider_box_flex:nth-of-type(2n+2) {     
        justify-content: flex-end;
    }
    .ve_grnt_content > h4 {
        font-size: 16px;
        padding-bottom: 10px;
    }
    .ve_grnt_content > p {
        font-size: 13px; 
    }
    .ve_feature_main_head {
        padding-bottom: 30px;
    }
    .ve_gurnt_wrapper {
        padding: 40px 0 20px 0;
    }
    .ve_footer_box {
        padding: 30px 10px 20px 10px;
    }
    .ve_banner_wrapper {
        padding-bottom: 20px;
    }
    .ve_feature_slider_wrapper {
        padding: 30px 0 40px 0;
    }
    .ve_banner_video_center > img {
        display: none;
    }
    .ve_banner_video_center {
        max-width: 100%;
        height: 200px;
    }
    .ve_banner_video_center .ve_video {
        top: 0;
        max-width: 350px;
        left: 0;
        border-radius: 10px;
        height: 200px;
        margin: auto;
        right: 0;
    }
    .ve_banner_video_center .ve_video iframe{
        border-radius: 10px;
        border: 2px solid #9d00fffe;
    }
    .ve_video_slider_wrapper {
        padding: 40px 0 50px 0;
    }
    .ve_heading h1 {
        max-width: 330px;
        height: 62px;
        font-size: 16px;
        font-weight: 700;
    }
    img.video_slide_bg {     
        display: none;
    }
    .ve_video_slider_parent .swiper-slide.swiper-slide-active .ve_slider_video > video {
        border: 2px solid #d463f2;
    }
    .ve_video_slider_parent {
        padding-bottom: 30px;
        padding-top: 30px;
    }
    .ve_demo_wrapper, .ve_feature_wrapper {
        padding: 30px 5px;
    }
    .ve_demo_parent {
        padding: 10px;
    }
    .ve_service_img {
        padding: 30px 5px 0px 5px;
    }
    .ve_service_wrapper {
        padding: 35px 0 40px 0;
    }
    .ve_pricing_plans_box > img {
        height: 20px;
    }
    .ve_pricing_plans_box.ve_plans_box3 > img {
        height: 15px;
    }
    .ve_pricing_plans_box.ve_plans_box4 > img {
        height: 32px;
    }
    .ve_pricing_plans_box.ve_plans_box5 > img {
        height: 43px;
    }
    .ve_price_table_head h1 {
        font-size: 50px;     
    }
    .ve_price_table_list p {
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 20px;
    }
    .ve_price_table_head span {
        font-size: 20px;
        padding-left: 5px;
    }
    .ve_price_table_list p:nth-of-type(2n+2) {     
        padding: 15px 0 15px 20px;
    }
    .ve_price_table_list p {
        padding: 5px 0 5px 20px;     
    }
    .ve_table_list p {
        font-size: 14px;     
    }
}
@media(max-width:380px){    
    .ve_btn{
        animation: none;
    }
}
@media(max-width:375px){
    .ve_btn {
        font-size: 16px;
        max-width: 330px;
        height: 46px;
    }
    .ve_pymnt_inner > p {
        font-size: 12px;
    }
    .ve_feature_main_head > h2 {
        max-width: 310px;
        height: 58px;
        font-size: 14px;
    }
    .ve_feature_main_head > h4 {
        font-size: 10px;     
    }
    .ve_banner_video_center {     
        height: 160px;
    }
    .ve_banner_video_center .ve_video {
        max-width: 310px;
        height: 175px;     
    }
    .ve_banner_main_head {
        max-width: 300px;
        height: 56px;
    }
    .ve_flickr_text_main {
        min-width: 270px;
    }
    .ve_banner_sbhead p {
        font-size: 12px;
    }
    .ve_heading h1 {
        max-width: 290px;
        height: 54px;
        font-size: 14px;
        font-weight: 700;
    }   
    .ve_slider_video {
        max-width: 250px;
    } 
}
@media(max-width:350px){    
    .ve_pymnt_head > h2 {
        max-width: 300px;
        font-size: 12px;
        padding: 5px;
    }
    .ve_pymnt_head > h4 {
        font-size: 9px;
    }
    .ve_pymnt_section_main > h2 {
        font-size: 23px;
        padding-top: 15px;
    }
    .ve_btn {
        font-size: 14px;
        max-width: 300px;
        height: 42px;
    }
    .ve_pymnt_inner > p {
        font-size: 11px;
    }
    .ve_feature_main_head > h2 {     
        font-size: 14px;
    }    
}
/*============= Responsive CSS End =============*/


p.test_slider {
    background-image: url(../images/video-slider-tagln-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    max-width: 340px;
    width: 100%;
    height: 54px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    font-weight: 800;
    color: #271e42;
    text-transform: capitalize;
}
.dotes_heading_inner {
    max-width: 340px;
    width: 100%;
    height: 54px;
    margin: auto;
}

.dotes_heading {
    margin-top: 60px;
}

.ve_video_list_slider_main .ve_video_slider_parent {
    padding: 50px 0 10px 0;
}

.ve_video_list_slider_main .ve_slider_video .ve_slider_video_title{
    display: none;
}
.ve_test_inner .swiper-wrapper{
    align-items: center;
}

