/*
[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: 34px;
    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;
}
.ve_banner_wrapper .container, .ve_gurnt_wrapper .container{
    max-width: 1790px;
}
.ve_logo_section{
    max-width: 1000px;
    width: 100%;
    margin: auto;
    position: relative;
    z-index: 1;
}
.ve_logo_section:before {
    content: '';
    max-width: 900px;
    width: 100%;
    height: 50px;
    background-image: linear-gradient(90deg, rgba(247,54,0,0.9999999999999999) 0%, rgba(249,203,34,0.996078431372549) 100%);
    border-radius: 40px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    margin: auto;
    z-index: -1;
}
.ve_logo_inner {    
    background-color: #ffffff;
    border-radius: 0px 0px 40px 40px;
    filter: drop-shadow(0 0 25px rgba(119,32,168,0.4));
    border: 1px solid #ead0f7;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 22px 30px;    
}
.ve_logo_content h6, .ve_logo_content p {
    font-size: 20px;
    font-weight: 500;
    color: #222222;
    line-height: 1.4;
}
.ve_logo_content p{
    color: #ff7920;
    text-decoration: underline;
} 
.ve_banner_heading{
    padding-top: 50px;
}
.ve_banner_heading h4 {
    position: relative;
    display: inline-block;
    background-image: linear-gradient(270deg, rgba(255,39,181,0.9999999999999999) 0%, rgba(157,0,255,0.9970601620313378) 100%, rgba(255,39,181,0.996078431372549) 100%);
    border-radius: 30px 30px 0px 0;
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    padding: 10px 30px;
    z-index: 1;
}
.ve_banner_heading h4 > img{
    position: absolute;
    top: 20px;
    z-index: -1;
}
.ve_banner_heading h4 > img:first-child {
    left: -140px;
}
.ve_banner_heading h4 > img:last-child {    
    right: -140px;
}
.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: 1448px;
    width: 100%;
    height: 314px;
    margin: -32px auto 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ve_banner_heading h1 {
    font-size: 60px;
    font-weight: 800;
    color: #151f38;
    margin: -55px 0 0 -25px;
    position: relative;
}
.ve_banner_heading h1 > img {
    position: absolute;
    bottom: -40px;
}
.ve_banner_heading h1 > img:first-child {
    left: -100px;
}
.ve_banner_heading h1 > img:nth-child(2) {
    right: -65px;
}
.ve_banner_content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}
.ve_banner_video_center {
    position: relative;
    max-width: 830px;
    height: 470px;
    width: 100%;
    margin: auto;    
    filter: drop-shadow(-18.054px 23.959px 20px rgba(0,255,42,0.1));
}
.ve_banner_video_center .ve_video {
    position: absolute;
    top: 7px;
    left: 13px;
    max-width: 805px;
    width: 100%;
    min-height: auto;
    height: 455px;
}
.ve_banner_video_center .ve_video iframe {
    min-height: auto;
    width: 100%;
    height: 100%;
}
.ve_banner_feat_left {
    max-width: 300px;
    width: 100%;
}
.ve_banner_feat_box{
    background-color: #fff;
    border-width: 2px;
    border-radius: 20px;
    max-width: 301px;
    width: 100%;
    height: 90px;
    box-shadow: inset 0 0 5px rgba(109,153,213,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;    
    margin-bottom: 80px;
    border-style: solid;
    position: relative;
}
.ve_banner_feat_left .ve_banner_feat_box:last-child{
    margin-bottom: 0;
}
.ve_banner_feat_box_1{
    filter: drop-shadow(-17.239px 22.064px 20px rgba(220,33,250,0.2));
    border-color:#eda7ff;
}
.ve_banner_feat_box_2{
    filter: drop-shadow(-17.239px 22.064px 20px rgba(33,125,250,0.2));
    border-color:#83bfff;
}
.ve_banner_feat_box_3{
    filter: drop-shadow(-17.239px 22.064px 20px rgba(250,176,33,0.2));
    border-color:#ffd46f;
}
.ve_banner_feat_box_4{
    filter: drop-shadow(-17.239px 22.064px 20px rgba(250,33,84,0.2));
    border-color:#ffa7c2;
}
.ve_banner_feat_box_5{
    filter: drop-shadow(-17.239px 22.064px 20px rgba(169,58,233,0.2));
    border-color:#a48fee;
}
.ve_banner_feat_box_6{
    filter: drop-shadow(-17.239px 22.064px 20px rgba(31,186,214,0.2));    
    border-color:#8bd5ff;
}
.ve_banner_feat_box_7{    
    filter: drop-shadow(-17.239px 22.064px 20px rgba(111,125,255,0.2));
    border-color:#6f7dff;
}
.ve_banner_feat_box_8{    
    filter: drop-shadow(-17.239px 22.064px 20px rgba(212,136,255,0.2));
    border-color:#d488ff;
}
.ve_banner_feat_box > h4{
    font-size: 22px;
    font-weight: 700;
    color: #271e42;
    text-transform: capitalize;
}
.ve_banner_feat_box > img:first-child{
    position: absolute;
}
.ve_banner_feat_box_1 > img:first-child{
    top: 30px;
    right: -105px;
}
.ve_banner_feat_box_2 > img:first-child, .ve_banner_feat_box_7 > img:first-child{
    top: 38px;
    right: -120px;
}
.ve_banner_feat_box_3 > img:first-child{
    top: 15px;
    right: -105px;
}
.ve_banner_feat_box_4 > img:first-child{
    top: 30px;
    left: -105px;
}
.ve_banner_feat_box_5 > img:first-child, .ve_banner_feat_box_8 > img:first-child{
    top: 38px;
    left: -120px;
}
.ve_banner_feat_box_6 > img:first-child{
    top: 15px;
    left: -105px;
}
.ve_banner_center_img {
    animation: 8s installation infinite alternate;
}
/* Payment Section */
.ve_pymnt_section_main{
    padding-top: 50px;
}
.ve_pymnt_head > h2 {
    max-width: 1030px;
    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 */

/* Feature Section CSS Start */
.ve_feature_slider_wrapper {
    background-image: url(../images/feat-main-bg1.jpg);
    padding: 50px 0 80px 0;
}
.ve_feature_slider_wrapper .container{
    max-width: 1500px;
}
.ve_feature_main_head{
    background-image: url(../images/feature-head-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    max-width: 968px;
    height: 208px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.ve_feature_main_head > h2 {    
    font-size: 44px;
    color: #151f38;
    font-weight: 800;
    text-transform: capitalize;  
    position: relative;  
}
.ve_feature_main_head .ve_feat_left_shape, .ve_feature_main_head .ve_feat_right_shape{
    position: absolute;
    bottom: -40px;
}
.ve_feature_main_head .ve_feat_left_shape{
    left: -100px;
}
.ve_feature_main_head .ve_feat_right_shape{
    right: -100px;
}
.ve_feat_sb_head {
    margin-top: -34px;
}
.ve_feat_sb_head h4 {
    background-image: linear-gradient(270deg, 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 30px 30px;
    display: inline-block;
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    padding: 8px 30px;
}
.ve_feature_slider_main {
    padding-top: 60px;
}
.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: 60px;
    margin-bottom: 40px;
}
.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(4,164,236,0.1));    
    border-color: #04a4ec;
}
.ve_feat_box_2{
    filter: drop-shadow(0 0 30px rgba(168,41,233,0.1));
    border-color: #bd10e0;
}
.ve_feat_box_3{
    filter: drop-shadow(0 0 30px rgba(16,172,24,0.1));
    border-color: #0cca15;
}
.ve_feat_box_4{
    filter: drop-shadow(0 0 30px rgba(219,162,40,0.1));
    border-color: #ffb310;
}
.ve_feat_box_5{
    filter: drop-shadow(0 0 30px rgba(252,70,118,0.1));
    border-color: #fd4675;
}
.ve_feat_box_6{
    filter: drop-shadow(0 0 30px rgba(84,145,254,0.1));
    border-color: #5491ff;
}
.ve_feat_box_7{
    filter: drop-shadow(0 0 30px rgba(175,117,255,0.1));
    border-color:#af75ff;
}
.ve_feat_box_8{
    filter: drop-shadow(0 0 30px rgba(61, 206, 157, 0.1));
    border-color: #3dce9d;
}
.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(219, 162, 40, 0.1));
    border-color: #ffb310;
}
.ve_feat_box_11{
    filter: drop-shadow(0 0 30px rgba(248, 79, 164, 0.1));
    border-color: #fa4ea6;
}
.ve_feature_slider_video{
    position: relative;
    z-index: 1;
}
.ve_feature_slide_video_section {
    position: relative;
    max-width: 650px;
    width: 100%;
    min-height: auto;
    height: 100%;
}
.ve_feature_slider_video > video{
    border-radius: 10px;
    border-width: 2px;
    border-style: solid;
    width: 100%;
    height: 100%;
}
.ve_feat_box_1 .ve_feature_slider_video > video{
    filter: drop-shadow(0 0 30px rgba(4,164,236,0.1));
    border-color:#04a4ec;
}
.ve_feat_box_2 .ve_feature_slider_video > video{
    filter: drop-shadow(0 0 30px rgba(168,41,233,0.1));
    border-color:#bd10e0;
}
.ve_feat_box_3 .ve_feature_slider_video > video{
    filter: drop-shadow(0 0 30px rgba(16,172,24,0.1));
    border-color:#0cca15;
}
.ve_feat_box_4 .ve_feature_slider_video > video{
    filter: drop-shadow(0 0 30px rgba(219,162,40,0.1));
    border-color:#ffb310;
}
.ve_feat_box_5 .ve_feature_slider_video > video{
    filter: drop-shadow(0 0 30px rgba(252,70,118,0.1));
    border-color:#fd4675;
}
.ve_feat_box_6 .ve_feature_slider_video > video{
    filter: drop-shadow(0 0 30px rgba(84,145,254,0.1));
    border-color:#5491ff;
}
.ve_feat_box_7 .ve_feature_slider_video > video{
    filter: drop-shadow(0 0 30px rgba(175,117,255,0.1));
    border-color:#af75ff;
}
.ve_feat_box_8 .ve_feature_slider_video > video{
    filter: drop-shadow(0 0 30px rgba(61, 206, 157, 0.1));
    border-color: #3dce9d;
}
.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(219, 162, 40, 0.1));
    border-color: #ffb310;
}
.ve_feat_box_11 .ve_feature_slider_video > video{
    filter: drop-shadow(0 0 30px rgba(248, 79, 164, 0.1));
    border-color: #fa4ea6;
}
.ve_feature_slide_content {
    max-width: 520px;
}
.ve_feature_slide_head {
    background-image: url(../images/feat-head-bg1.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    max-width: 426px;
    width: 100%;
    height: 52px;
    display: flex;    
    align-items: center;
    margin-bottom: 30px;
    padding: 8px 20px;
    position: relative;
    z-index: 1;
    margin-left: -30px;
}
.ve_feat_box_1 .ve_feature_slide_head{
    background-image: url(../images/feat-head-bg1.png);
}
.ve_feat_box_2 .ve_feature_slide_head{
    background-image: url(../images/feat-head-bg2.png);    
}
.ve_feat_box_3 .ve_feature_slide_head{
    background-image: url(../images/feat-head-bg3.png);
    max-width: 401px;    
}
.ve_feat_box_4 .ve_feature_slide_head{
    background-image: url(../images/feat-head-bg4.png);
    max-width: 468px;    
}
.ve_feat_box_5 .ve_feature_slide_head{
    background-image: url(../images/feat-head-bg5.png);
    max-width: 281px;    
}
.ve_feat_box_6 .ve_feature_slide_head{
    background-image: url(../images/feat-head-bg6.png);
    max-width: 486px;    
}
.ve_feat_box_7 .ve_feature_slide_head{
    background-image: url(../images/feat-head-bg7.png);
    max-width: 461px;    
}
.ve_feat_box_8 .ve_feature_slide_head{
    background-image: url(../images/feat-head-bg8.png);
    max-width: 461px;    
}
.ve_feat_box_9 .ve_feature_slide_head{
    background-image: url(../images/feat-head-bg9.png);
    max-width: 401px;    
}
.ve_feat_box_10 .ve_feature_slide_head{
    background-image: url(../images/feat-head-bg10.png);
    max-width: 468px;    
}
.ve_feat_box_11 .ve_feature_slide_head{
    background-image: url(../images/feat-head-bg11.png);
    max-width: 281px;    
}
.ve_feature_slide_head h4 {
    font-size: 29px;
    font-weight: 800;
    color: #fff;
    text-transform: capitalize;
    padding-left: 40px;
}
.ve_feat_box_5 .ve_feature_slide_head h4, .ve_feat_box_7 .ve_feature_slide_head h4{
    padding-left: 20px;
}
.ve_feature_slide_content p{
    font-size: 20px;
    font-weight: 400;
    color: #271e42;
    padding-bottom: 20px;
}
.ve_feature_slide_content p:last-child {
    padding-bottom: 0;
}
.ve_feature_slide_video_section{
    position: relative;
}
img.ve_f1_shape1_img {
    position: absolute;
    bottom: -20px;
    right: 20px;
}
img.ve_f1_shape2_img {
    position: absolute;
    top: -40px;
    left: -10px;
}
img.ve_f6_shape1_img {
    position: absolute;
    bottom: -50px;
    right: -50px;
}
/* Feature Section CSS End */

/* Guarantee CSS Start */
.ve_gurnt_wrapper {
    background-image: url(../images/member-main-bg.jpg);
    padding: 80px 0 50px 0;
}
.ve_grnt_head {
    background-image: url(../images/member-head-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    max-width: 905px;
    height: 171px;
    margin: 0 auto 40px auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.ve_grnt_head h1{
    background: linear-gradient(to right, #f84002 10%, #faaa1b 80%);
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    font-size: 44px;    
    font-weight: 900;
    text-transform: uppercase;    
}
.ve_grnt_head h2{
    font-size: 44px;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;    
}
.ve_grnt_box {
    background-image: url(../images/member-box-bg.png);
    padding: 100px 80px 70px 80px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
}
.ve_grnt_img {
    margin-top: 100px;
}
.ve_grnt_content{
    max-width: 630px;
    width: 100%;
}
.ve_grnt_content > h4{
    font-size: 34px;
    font-weight: 900;
    color: #fff;
}
.ve_grnt_content > p{
    font-size: 24px;
    font-weight: 400;
    color: #c7cde4;
    padding-top: 30px;
}
.ve_grnt_content > p > span{
    font-weight: 800;
    color: #ff9c00;
}
/* Guarantee CSS End */

/* Footer CSS Start */
.ve_footer_wrapper {
    background-image: url(../images/footer-main-bg.jpg);
    padding: 100px 0 60px 0;
    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 */


/*============= Responsive CSS Start =============*/
@media(max-width:1700px){
    .ve_banner_feat_box_1 > img:first-child, .ve_banner_feat_box_4 > img:first-child, .ve_banner_feat_box_3 > img:first-child, .ve_banner_feat_box_6 > img:first-child {        
        width: 70px;
        height: auto;
    }
    .ve_banner_feat_box_2 > img:first-child, .ve_banner_feat_box_7 > img:first-child {     
        width: 80px;
        height: auto;
    }
    .ve_banner_feat_box_5 > img:first-child, .ve_banner_feat_box_8 > img:first-child {     
        width: 80px;
        height: auto;
    }
    .ve_banner_feat_box_1 > img:first-child, .ve_banner_feat_box_3 > img:first-child{
        right: -75px;
    }
    .ve_banner_feat_box_2 > img:first-child, .ve_banner_feat_box_7 > img:first-child {     
        right: -85px;
    }
    .ve_banner_feat_box_5 > img:first-child, .ve_banner_feat_box_8 > img:first-child {
        top: 38px;
        left: -85px;
    }
    .ve_banner_feat_box_4 > img:first-child, .ve_banner_feat_box_6 > img:first-child {     
        left: -75px;
    }
}
@media(max-width:1650px){
    .ve_banner_feat_box > img:first-child {     
        display: none;
    }
    .ve_banner_feat_box {
        margin-bottom: 40px;
    }
}
@media(max-width:1600px){
    .ve_banner_video_center {        
        max-width: 700px;
        height: 400px;
    }
    .ve_banner_video_center .ve_video {        
        top: 9px;        
        max-width: 675px;        
        height: 381px;
    }
    .ve_gurnt_wrapper {     
        padding: 50px 0 50px 0;
    }
}
@media(max-width:1440px){
    .ve_banner_heading h4 {
        font-size: 23px;
    }
    .ve_banner_heading h4 > img {        
        top: 20px;     
    }
    .ve_banner_heading h4 > img:first-child {
        left: -70px;
    }
    .ve_banner_heading h4 > img:last-child {
        right: -70px;
    }
    .ve_banner_heading h1 > img {     
        bottom: -30px;
        width: 200px;
        height: auto;
    }
    .ve_banner_heading h1 > img:first-child {
        left: -70px;
    }
    .ve_banner_heading h1 > img:nth-child(2) {
        right: -75px;
    }
    .ve_banner_heading h1 {
        font-size: 50px;
        margin-left: -50px;
    }
    .ve_banner_main_head {
        max-width: 1230px;
        height: 250px;
        margin: -25px auto 0 auto;
    }
    .ve_banner_heading h4 > img {
        width: 90px;
        height: auto;
    }
    .ve_banner_feat_box > img:first-child{
        display: none;
    }
    .ve_banner_content {
        gap: 20px;
    }
    .ve_banner_feat_left {
        max-width: 270px;        
    }
    .ve_banner_feat_box > h4 {
        font-size: 20px;
    }
    .ve_banner_feat_box { 
        margin-bottom: 40px;
        padding: 0 10px;
    }
    .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: 50px;
    }
    .ve_grnt_content {
        max-width: 570px; 
    }
    .ve_banner_wrapper {     
        padding-bottom: 40px;
    }
}
@media(max-width:1399px){
    .ve_feature_slider_box_flex {
        gap: 50px;
    }
    img.ve_f6_shape1_img {     
        right: 0;
    }
}
@media(max-width:1300px){
    .ve_banner_feat_left {
        max-width: 230px;
    }
    .ve_banner_feat_box {
        max-width: 220px;
        gap: 15px;
    }
    .ve_banner_feat_box > h4 {
        font-size: 18px;
    }
    .ve_banner_video_center {
        max-width: 640px;
        height: auto;
    }
    .ve_banner_video_center .ve_video {
        top: 7px;
        max-width: 620px;
        height: 347px;
        left: 10px;
    }
    img.ve_f1_shape1_img {
        display: none;
    }
}
@media(max-width:1199px){
    .ve_banner_heading h4 {
        font-size: 19px;
        padding: 8px 25px;
        font-weight: 600;
    }
    .ve_banner_heading h1 {
        font-size: 40px;
        margin: -40px 0 0 -25px;
    }
    .ve_banner_main_head {
        max-width: 1030px;
        height: 205px;
        margin: -21px auto 0 auto;
    }
    .ve_banner_feat_left {
        max-width: 250px;
    }
    .ve_banner_feat_box > h4 {
        font-size: 18px;
    }
    .ve_feature_slide_content p {
        font-size: 18px;     
    }
    .ve_feature_slide_content {
        max-width: 450px;
    }
    .ve_feature_slide_head h4 {
        font-size: 25px;     
    }
    .ve_feature_slider_video > video {
        min-height: 200px;
    }    
    .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_gurnt_wrapper {
        padding: 50px 0 30px 0;
    }
    .ve_footer_wrapper { 
        padding: 80px 0 50px 0;
    }
    .ve_banner_heading h4 > img, .ve_banner_heading h1 > img {     
        display: none;
    }
    .ve_banner_content {     
        display: block;
        text-align: center;
    } 
    .ve_banner_feat_center.order-2 {
        order: 1 !important;
    }  
    .ve_banner_feat_left {
        max-width: 300px;
        display: inline-block;     
    }  
    .ve_banner_feat_left.ve_banner_feat_right {
        margin-left: 30px;
    }
    .ve_banner_feat_box {
        text-align: left;
        border-radius: 10px;
        margin-bottom: 20px;
        max-width: 100%;
    }
    .ve_banner_video_main {
        margin-bottom: 30px;
    }
    .ve_feature_main_head > h2 {
        font-size: 34px;
    }
    .ve_feature_main_head {
        max-width: 750px;
        height: 160px;
    }
    .ve_feature_main_head .ve_feat_left_shape, .ve_feature_main_head .ve_feat_right_shape {     
        display: none;
    }
    .ve_feat_sb_head {
        margin-top: -26px;
    }
    .ve_feat_sb_head h4 {
        font-size: 23px;
    }
    img.ve_f5_shape1_img {     
        right: -30px;
    }
    .ve_feature_slide_head {     
        max-width: 350px;
        height: 45px;
    }
    .ve_feat_box_4 .ve_feature_slide_head {     
        max-width: 410px;
        height: 44px;
    }
    .ve_feat_box_5 .ve_feature_slide_head h4, .ve_feat_box_7 .ve_feature_slide_head h4, .ve_feat_box_8 .ve_feature_slide_head h4, .ve_feat_box_10 .ve_feature_slide_head h4 {
        padding-left: 30px;
    }
}
@media(max-width:1100px){
    .ve_banner_feat_box > h4 {
        font-size: 17px;
    }
    .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: 23px;
        font-weight: 700;
    }
    .ve_feature_slider_box_flex {
        gap: 40px;
        margin-bottom: 30px;
    }
    .ve_grnt_content {
        max-width: 430px;
    }
}
@media(max-width:1024px){    
    .ve_banner_heading h4 {
        font-size: 15px;
    }
    .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;
        margin: -30px 0 0 -30px;
    }
    .ve_banner_main_head {
        max-width: 830px;
        height: 160px;
        margin: -16px auto 0 auto;
    }    
    .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;
    }
}
@media(max-width:991px){
    .ve_logo > a > img {
        width: 150px;
        height: auto;
    }
    .ve_logo_content h6, .ve_logo_content p {
        font-size: 17px;
    }
    .ve_logo_section {
        max-width: 800px;     
    }
    .ve_logo_section:before {
        max-width: 600px;
        bottom: -5px;
    }
    .ve_banner_heading h4 > img, .ve_banner_heading h1 > img{
        display: none;
    }        
    .ve_banner_heading {
        padding-top: 30px;
    }
    .ve_banner_center_img {
        animation: none;
    }
    .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_slider_box_flex {        
        flex-direction: column-reverse;
    }
    .ve_feature_slider_inner .ve_feature_slider_box_flex:nth-of-type(2n+2) {     
        flex-direction: column-reverse;
    }
    .ve_feature_slide_content {
        max-width: 640px;
    }
    .ve_feature_slider_box_flex {
        max-width: 740px;
    }
    .ve_feature_slider_box_flex {
        padding: 30px 30px 40px 25px;
    }
    .ve_grnt_head h1, .ve_grnt_head h2 {
        font-size: 30px;
    }
    .ve_grnt_head {
        max-width: 630px;
        height: 120px;
    }
    .ve_grnt_box {
        padding: 50px 20px;
        flex-direction: column;
        max-width: 800px;
        margin: auto;
        background: #07043c;
        border-radius: 20px;
    }
    .ve_grnt_img{
        margin-top: 0;
    }
    .ve_grnt_img img {
        max-width: 500px;
        width: 100%;
        height: auto;
        margin-top: 0px;
    }
    .ve_grnt_content {
        max-width: 650px;
    }
    .ve_footer_box > img{
        display: none;
    }    
    .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_logo_inner {
        padding: 20px 26px;
    }
    img.ve_f1_shape2_img {     
        display: none;
    }
    .ve_feature_slide_head {
        margin-left: 0;
        margin-bottom: 25px;
    }
    .ve_feature_slide_content p {     
        padding-bottom: 10px;
    }
    img.ve_f6_shape1_img {
        bottom: -40px;     
    }
    img.ve_f5_shape1_img {     
        bottom: -50px;
    }
    .ve_feat_box_3 .ve_feature_slide_head {     
        max-width: 350px;
        height: 45px;
    }
    .ve_feat_box_4 .ve_feature_slide_head {
        max-width: 370px;
        height: 40px;
    }
    .ve_feat_box_5 .ve_feature_slide_head {     
        max-width: 230px;
        height: 42px;
    }
    .ve_feat_box_6 .ve_feature_slide_head {     
        max-width: 390px;
        height: 45px;
    }
    .ve_feat_box_7 .ve_feature_slide_head, .ve_feat_box_8 .ve_feature_slide_head, .ve_feat_box_10 .ve_feature_slide_head {     
        max-width: 370px;
        height: 45px;
    }
    .ve_feature_slider_wrapper {     
        padding: 50px 0 50px 0;
    }
}
@media(max-width:767px){
    .ve_logo_content h6, .ve_logo_content p {
        font-size: 12px;
    }
    .ve_logo > a > img {
        width: 120px;
        height: auto;
    }
    .ve_logo_section {
        gap: 10px;
        max-width: 550px;
    }
    .ve_banner_feat_box {
        margin-bottom: 20px;     
    }
    .ve_banner_feat_left.ve_banner_feat_right {
        margin-left: 20px;
    }
    .ve_banner_center_img {     
        margin-bottom: 30px;
    }
    .ve_banner_heading h4 {
        font-size: 12px;
        padding: 6px 15px;     
    }
    .ve_banner_heading h1 {
        font-size: 20px;
        margin: -20px 0 0 0px;
    }
    .ve_banner_main_head {
        max-width: 550px;
        height: 128px;
    }
    .ve_banner_feat_left {
        max-width: 260px;     
    }
    .ve_banner_feat_box > h4 {        
        text-align: left;
    }
    .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 {
        font-size: 27px;
    }
    .ve_feature_main_head {
        max-width: 600px;
        height: 140px;
    }
    .ve_feat_sb_head h4 {
        font-size: 20px;
    }
    .ve_feature_slider_box_flex {
        padding: 30px 20px 40px 25px;
    }
    .ve_feature_slider_wrapper {
        padding: 30px 0 40px 0;
    }    
    .ve_grnt_head h1, .ve_grnt_head h2 {
        font-size: 25px;
    }
    .ve_grnt_head {
        max-width: 540px;
        height: 100px;
        margin-bottom: 10px;
    }
    .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_logo_inner {
        padding: 20px;
    }
    .ve_logo_section:before {
        max-width: 450px;     
    }
    .ve_banner_video_center {
        max-width: 540px;     
    }
    .ve_banner_video_center .ve_video {     
        max-width: 523px;
        height: 292px;
        left: 8px;
    }
    img.ve_f6_shape1_img {
        display: none;     
    }
    img.ve_f5_shape1_img {
      display: none;
    }
    .ve_feature_slider_box_flex {
        padding: 30px 20px 20px 25px;
    }
    .ve_feature_slide_content {
        max-width: 700px;
    }
    .ve_feature_slide_video_section {        
        max-width: 700px;     
    }
    .ve_feature_slider_video > img {
        max-width: 100%;
        width: 100%;
    }
    .ve_gurnt_wrapper {
        padding: 30px 0 30px 0;
    }
}
@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;
        border-radius: 50px;
    }
    .ve_banner_heading h1 {
        font-size: 17px;
        margin: -20px 0 0 0px;
    }
    .ve_banner_main_head {
        max-width: 450px;
        height: 90px;
        margin-top: -9px;
    }
    .ve_banner_heading h1 {
        font-size: 17px;
        margin: -18px 0 0 -15px;
    }
    .ve_banner_feat_left {
        max-width: 200px;
    }
    .ve_banner_feat_box > h4 {
        font-size: 15px;
    }
    .ve_banner_feat_box > img:nth-child(2) {
        width: 40px;
        height: auto;
        object-fit: contain;
    }
    .ve_banner_feat_box {
        height: 70px;
    }
    .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 {
        font-size: 22px;
    }
    .ve_feature_main_head {
        max-width: 450px;
        height: 115px;
    }
    .ve_feat_sb_head h4 {
        font-size: 16px;
        padding: 5px 30px;
        font-weight: 600;
    }
    .ve_feature_main_head > h4 {
        font-size: 20px;
        padding: 6px 20px;
    }
    .ve_feature_slider_video > video {
        min-height: 150px;
    }
    .ve_grnt_head h1, .ve_grnt_head h2 {
        font-size: 21px;
    }
    .ve_grnt_head {
        max-width: 440px;
        height: 85px;
        margin-bottom: 25px;
    }
    .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_logo_inner {
        padding: 15px;
    }
    .ve_logo_section:before {
        max-width: 350px;     
    }
    .ve_banner_video_center {
        max-width: 450px;
    }
    .ve_banner_video_center .ve_video {
        max-width: 435px;
        height: 245px;
        left: 7px;
        top: 4px;
    }
    .ve_feature_slider_main {
        padding-top: 30px;
    }
    .ve_pymnt_section_main {
        padding-top: 40px;
    }
}
@media(max-width:480px){
    .ve_logo_inner {
        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_banner_feat_left.ve_banner_feat_right {
        margin-left: 10px;
    }
    .ve_banner_feat_box {
        margin-bottom: 15px;     
        border-width: 1px;
    }
    .ve_banner_feat_left {
        max-width: 190px;
    }
    .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 {
        max-width: 390px;
        height: 84px;
    }
    .ve_feat_sb_head {
        margin-top: -14px;
    }
    .ve_feat_sb_head h4 {
        font-size: 14px;
    }
    .ve_feature_main_head > h2 {  
        font-size: 19px;
    }
    .ve_feature_main_head > h4 {
        font-size: 18px;     
    }
    .ve_feature_slider_box_flex {
        padding: 30px 15px 20px 15px;
        gap: 20px;
    }
    .ve_feature_slide_content p {
        font-size: 15px;
    }
    .ve_grnt_head h1, .ve_grnt_head h2 {
        font-size: 19px;
    }
    .ve_feature_slider_wrapper {
        padding: 40px 0 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_video_center {
        max-width: 380px;
    }
    .ve_banner_video_center .ve_video {
        max-width: 370px;
        height: 210px;
        left: 5px;
        top: 2px;
    }
    .ve_feature_slider_box_flex {     
        margin-bottom: 20px;
    }
    .ve_grnt_box {
        gap: 20px;
    }
    .ve_banner_feat_box_4 {
        filter: drop-shadow(12px 12px 20px rgba(250,33,84,0.2));     
    }
    .ve_banner_feat_box_5 {
        filter: drop-shadow(12px 12px 20px rgba(169,58,233,0.2));     
    }
    .ve_banner_feat_box_6{
        filter: drop-shadow(12px 12px 20px rgba(31,186,214,0.2));            
    }    
    .ve_banner_feat_box_8{    
        filter: drop-shadow(12px 12px 20px rgba(212,136,255,0.2));        
    }
}
@media(max-width:425px){
    .ve_logo_content h6, .ve_logo_content p {
        font-size: 10px;
    }
    .ve_logo_section {
        max-width: 355px;          
    }
    .ve_logo_section:before {
        max-width: 250px;
    }
    .ve_logo_inner {
        border-radius: 0px 0px 20px 20px;
        padding: 15px 5px;
    }
    .ve_banner_heading h4 {
        font-size: 9px;
    }
    .ve_banner_main_head {
        max-width: 355px;
        height: 80px;
    }
    .ve_banner_heading h1 {
        font-size: 15px;
        margin: -15px 0 0 -13px;
    }
    .ve_banner_center_img {
        margin-bottom: 20px;
    }
    .ve_banner_feat_left {
        max-width: 170px;
    }
    .ve_banner_feat_box {
        height: 60px;
        padding: 0 5px;
        border-width: 1px;
        margin-bottom: 8px;
    }
    .ve_banner_feat_box > h4 {
        font-size: 14px;
    }
    .ve_banner_feat_box > img:nth-child(2) {
        width: 30px;     
    }
    .ve_banner_feat_left.ve_banner_feat_right {
        margin-left: 5px;
    }
    .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: 17px;
    }
    .ve_feature_main_head > h4 {
        font-size: 15px;
        padding: 4px 13px;
        font-weight: 500;
    }
    .ve_feature_slide_head h4 {
        font-size: 18px;
        font-weight: 600;
    }
    .ve_feature_slide_head {
        max-width: 280px;
        height: 34px;
    }
    .ve_feat_box_3 .ve_feature_slide_head {
        max-width: 270px;
        height: 35px;
    }
    .ve_feat_box_3 .ve_feature_slide_head h4 {
        padding-left: 20px;
    }
    .ve_feat_box_4 .ve_feature_slide_head {
        max-width: 310px;
        height: 33px;
    }
    .ve_feat_box_5 .ve_feature_slide_head {
        max-width: 190px;
        height: 35px;
    }
    .ve_feat_box_6 .ve_feature_slide_head {
        max-width: 300px;
        height: 33px;
    }
    .ve_feat_box_7 .ve_feature_slide_head {
        max-width: 300px;
        height: 34px;
    }
    .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_head h1, .ve_grnt_head h2 {
        font-size: 17px;
    }
    .ve_grnt_content > h4 {
        font-size: 16px;
        padding-bottom: 10px;
    }
    .ve_grnt_content > p {
        font-size: 13px; 
    }
    .ve_grnt_head { 
        margin-bottom: 15px;
    }
    .ve_feature_main_head {
        max-width: 350px;
        height: 76px;
    }
    .ve_gurnt_wrapper {
        padding: 30px 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 {
        max-width: 340px;
    }
    .ve_banner_video_center .ve_video {
        max-width: 332px;
        height: 185px;
        left: 4px;
        top: 4px;
    }
    .ve_feat_box_9 .ve_feature_slide_head {     
        max-width: 300px;
    }
    .ve_feat_box_9 .ve_feature_slide_head h4 {     
        padding-left: 25px;
    }
}
@media(max-width:380px){
    .ve_banner_heading h1 {
        font-size: 14px;     
    }
    .ve_banner_feat_left {
        max-width: 155px;
    }
    .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 {
        max-width: 310px;
        height: 67px;
    }
    .ve_feat_sb_head h4 {
        font-size: 12px;
    }
    .ve_feat_sb_head {
        margin-top: -12px;
    }
    .ve_feature_main_head > h2 {     
        font-size: 15px;
    }
    .ve_grnt_head h1, .ve_grnt_head h2 {
        font-size: 15px;
    }
    .ve_banner_video_center {
        max-width: 300px;
    }
    .ve_banner_video_center .ve_video {
        max-width: 290px;
        height: 160px;
        left: 4px;
        top: 4px;
    }
    .ve_banner_feat_box > h4 {
        font-size: 12px;
    }
    .ve_feature_slide_head h4 {
        font-size: 16px;     
    }
    .ve_feature_slide_head {
        max-width: 240px;
        height: 30px;
        margin-bottom: 15px;
    }
    .ve_feat_box_3 .ve_feature_slide_head {
        max-width: 230px;
        height: 30px;
    }
    .ve_feat_box_4 .ve_feature_slide_head {
        max-width: 270px;
        height: 30px;
    }
    .ve_feat_box_5 .ve_feature_slide_head {
        max-width: 170px;
        height: 30px;
    }
    .ve_feat_box_6 .ve_feature_slide_head {
        max-width: 270px;
        height: 30px;
    }
    .ve_feat_box_7 .ve_feature_slide_head {
        max-width: 270px;
        height: 30px;
    }
    .ve_feature_slide_head h4 {     
        padding-left: 30px;
    }
    .ve_feat_box_5 .ve_feature_slide_head h4, .ve_feat_box_7 .ve_feature_slide_head h4 {
        padding-left: 20px;
    }
    .ve_grnt_head {
        height: 60px;     
    }
    .ve_feat_box_9 .ve_feature_slide_head {
        max-width: 270px;
    }
}
@media(max-width:350px){
    .ve_banner_feat_box {
        flex-direction: column;
        height: auto;
        padding: 10px;
        min-height: 110px;
        gap: 10px;
    }
    .ve_banner_feat_box > h4 {
        font-size: 13px;        
        text-align: center;
    }
    .ve_banner_feat_left {
        max-width: 140px;
    }
    .ve_banner_heading h1 {
        font-size: 12px;
    }
    .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;
    }
    .ve_feature_main_head > h4 {
        font-size: 13px;     
    }
    .ve_grnt_head h1, .ve_grnt_head h2 {
        font-size: 14px;
    }
    .ve_logo_content h6, .ve_logo_content p {
        font-size: 9px;
    }
    .ve_banner_feat_box_4 {
        filter: drop-shadow(15px 0px 20px rgba(250,33,84,0.2));     
    }
    .ve_banner_feat_box_5 {
        filter: drop-shadow(15px 0px 20px rgba(169,58,233,0.2));     
    }
    .ve_banner_feat_box_6{
        filter: drop-shadow(15px 0px 20px rgba(31,186,214,0.2));            
    }    
    .ve_banner_feat_box_8{    
        filter: drop-shadow(15px 0px 20px rgba(212,136,255,0.2));        
    }
}
/*============= Responsive CSS End =============*/