/*
[Master Stylesheet] 
Project:ai-Verse
-------------------------------------------------------------------*/
/********************************************************
1. body start
 *******************************************************/
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;	  	
	-webkit-font-smoothing: antialiased;
    overflow-x:hidden;
    font-family: "Figtree", sans-serif;
    position: relative;
    scroll-behavior: smooth;
}
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;
}
.ai-container{
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}
.ai-container-fluid{
    max-width: 1860px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}
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(45deg, #0071ff 0%, #00c5ff 100%);
}
/* Scroll */
/* Bottom To Top CSS Start */
.ai_top_icon a {
    display: flex;
    background-image: linear-gradient(45deg, #0071ff 0%, #00c5ff 100%);
    filter: drop-shadow(0 0 15px rgba(0, 113, 255,0.6));
    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);        
    }
}
.ai_top_icon a svg {
    fill: #fff;
    transform: rotate(270deg);
}
.ai_top_icon a.show {
    opacity: 1;
    visibility: visible;
}
/* Bottom To Top CSS End */

/* Button CSS */
.ai_btn {
    display: inline-block;
    min-width: 300px;
    padding: 15px 50px;
    border-radius: 45px;
    background-image: linear-gradient(-67deg, rgba(160,38,255,0.9999999999999999) 0%, rgba(169,86,255,0.9979027133884997) 53%, rgba(130,56,255,0.996078431372549) 100%);
    filter: drop-shadow(-7.824px 10.382px 15px rgba(28,78,119,0.5));
    border: 3px solid #ffffff;
    font-size: 36px;
    color: #ffffff;
    font-weight: 800;
    text-transform: capitalize;
    text-align: center;
}
.ai_btn:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: -1;
    transition: all 500ms ease;    
    background: #ffa100;
    opacity: 0;
    visibility: hidden;
    transform: scale(0, 1);
    border-radius: 45px;
    border: 0;
}
.ai_btn:hover:after {
    opacity: 1;
    visibility: visible;
    transform: scale(1, 1);
}
/* Button CSS */

/* Heading CSS */
.ai_heading{
    font-size: 50px;
    color: #402c4b;
    font-weight: 900;
    line-height: 1.5;
    text-align: center;
    text-transform: capitalize;
    padding: 20px 0 30px 0;
}
.ai_heading span{
    color: #00abff;
    display: inline-block;
    position: relative;
}
.ai_heading span img {
    position: absolute;
    left: 20px;
    bottom: -5px;
}
/* Heading CSS */

/* Gredient Heading CSS */
.ai_gredient_heading{
    display: inline-block;    
    background-image: linear-gradient(-44deg, rgba(247,111,100,0.9999999999999999) 0%, rgba(253,83,145,0.996078431372549) 100%);
    filter: drop-shadow(0px 16px 8px rgba(252,83,146,0.44));
    border-radius: 20px;
    padding: 15px 30px;
    font-size: 30px;    
    color: #ffffff;
    font-weight: 800;
    text-transform: capitalize;
    text-align: center;
}
/* Gredient Heading CSS */

/* Down Arrow */
.ai_arrow_down {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 60px;
    border-radius: 50%;
}
.ai_arrow_down img{
    animation: shadow-pulse 2s infinite;
    border-radius: 50%;
}
@keyframes shadow-pulse {
    0% {
        box-shadow: 0 0 0 0 rgb(0 171 255 / 70%)
    }
    100% {
        box-shadow: 0 0 0 30px rgb(255 255 0 / 0%);        
    }
}
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}
/* Down Arrow */

/* Background Image CSS */
.ai_bg_image{
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}
/* Background Image CSS */

/* Banner CSS Start*/
.ai-header-menu {
    padding: 18px 15px;
    box-shadow: 30px 4px 200px 0px #0066FF80;
    background: #6C7BFF05;
    border-bottom: 1px solid;
 
}
.art-main-head{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ai-head-logo img {
    max-width: 170px;
    width: 100%;
}
/* .ai-header-ul {
    display: flex;
    justify-content: space-between;
    max-width: 541px;
    width: 100%;
    margin: 0 auto;
} */
 .ai-header-ul {
    display: flex;
    /* justify-content: space-between; */
    /* max-width: 541px; */
    /* width: 100%; */
    /* margin: 0 auto; */
    gap: 50px;
}
.ai-header-ul li a{
    font-size: 16px;
    font-weight: 500;
    color:#fff;
}
.ai-logo{
    margin-top: 60px;
}
.ai_banner_wrapper{
    background-image: url(../images/bg-main.jpg);    
    padding: 0px 0 300px 0;    
    z-index: auto;
    text-align: center;
    position: relative;
}
/* .ai_banner_wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
} */
.art-main-bnr{
    position: relative;
    z-index: 9;
}
@keyframes topbottom {
    0% {
        transform: translateY(0px);        
    }
    50% {
        transform: translateY(-20px);        
    }
}
.ai_banner_wrapper .container {
    max-width: 1400px;
}
.ai_banner_heading {
    display: inline-flex;
    border-radius: 50px;
    border: 1px solid transparent;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    color: #ffffff;
    margin-top: 50px;
}
.ai-banner-heading-bg {
    text-align: center;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 5px 25px;
    background: #ffffff38;
    border-radius: 50px;
}
.ai-banner-heading-second {
    margin-bottom: 50px;
}
.ai_banner_heading .ai_heading {
    max-width: 1000px;
    margin: auto;
}
.art-banner-text {
    max-width: 700px;
    margin: 15px auto;
    text-align: center;
    width: 100%;
}
.art-banner-text p{
    font-size: 17px;
    color: #fff;
}
.ai_banner_heading h4{
    font-family: "Figtree", sans-serif;
    font-size: 26px;    
    font-weight: 600;    
    text-align: center;
    text-transform: capitalize;
  color: #fff;

}
 .ai-banner-heading-second h2{
    font-family: "Figtree", sans-serif;
    font-size: 50px;
    font-weight: 500;
    text-align: center;
    max-width: 900px;
    width: 100%;
    color: #fff;
    margin: 25px auto 0px;
}
.ai-banner-heading-second h2 span {
    font-weight: 700;
    /* color: #23e7b2; */
    background: linear-gradient(128.2deg, #FF8700 5.55%, #9D00E7 62.74%, #C900E7 99.3%);
    -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ai_banner_mockup {
    position: relative;
    max-width: 750px;
    width: 100%;
    margin: auto;
}
.ai_banner_mockup .ai-demo-circle {
    background: linear-gradient(128.2deg, #FF8700 5.55%, #9D00E7 62.74%, #C900E7 99.3%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: absolute;
    top: 15px;
    right: -40px;
    padding: 10px;
}
.ai_banner_mockup  .ai-demo-circle h6 {
    font-size:40px;
    font-weight: 900;
}
.ai_banner_mockup  .ai-demo-circle p{
    font-size: 12px;
    font-weight: 700;
    color: #fff;
}
.ai-header-menu{
    position: relative;
    z-index: 9;
}
.ai_banner_mockup img.ai_mock_shape{
    border: 1.5px solid #ffffff33;
}
.ai_banner_mockup::before {
    position: absolute;
    content: "";
    z-index: -1;
    left: 0;
    right: 0;
    bottom: 0px;
    margin: auto;
    width: 516px;
    height: 320px;
    opacity: 0.5;
    background-image: linear-gradient(to right, #054f7d, #B1AFFF, #2196F3, #4CAF50, #B1AFFF);
    /* backdrop-filter: blur(176.1999969482422px); */
    filter: blur(55px);
    border-radius: 50%;
    animation-duration: 20s;
    animation-iteration-count: infinite;
    animation-name: gradientss;
    background-size: 600%;
    background-position: 0 0;
}
.ai_banner_mockup::after {
    position: absolute;
    content: "";
    z-index: -1;
    top: -100px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background: rgb(248 157 50 / 50%);
    width: 602px;
    height: 374px;
    opacity: 0.5;
    background-image: linear-gradient(to right, #054f7d,#00a7cf,#F89D32,#861a54,#054f7d);
    /* backdrop-filter: blur(176.1999969482422px); */
    filter: blur(55px);
    border-radius: 50%;
    animation-duration: 20s;
    animation-iteration-count: infinite;
    animation-name: gradientss;
    background-size: 600%;
    background-position: 0 0;
}
@keyframes gradientss {
    0%   {background-position: 0 0;}
    25% {background-position: 50% 0;}
    50% {background-position: 90% 0;}
    60% {background-position: 60%;}
    75% {background-position: 40%;}
    100%  {background-position: 0 0;}
}
/* .ai_banner_mockup{
        background: linear-gradient(225deg, #FDF6BC 0%, #FFCFBF 100%);
    background-image: linear-gradient(to right, #FDF6BC, #FFCFBF, #fff6ad, #f7a083, #ffd0c0);
    animation-duration: 20s;
    animation-iteration-count: infinite;
    animation-name: gradientss;
    background-size: 600%;
    background-position: 0 0;
}
@keyframes gradientss {
    0%   {background-position: 0 0;}
    25% {background-position: 50% 0;}
    50% {background-position: 90% 0;}
    60% {background-position: 60%;}
    75% {background-position: 40%;}
    100%  {background-position: 0 0;}
} */
.ai_banner_mockup .ai-suport-box{
    background: linear-gradient(133.76deg, #1BFFF1 -14.58%, #0094E7 66.22%, #3E45FF 117.88%);
    box-shadow: 12px 11px 40px 0px #155D974D;
    max-width: 240px;
    width: 100%;
    padding: 10px;
    display: flex;
    align-items: center;
    text-align: left;
    gap: 16px;
    border-radius: 60px;
    position: absolute;
    bottom: -36px;
    left: -140px;
}
.ai_banner_mockup .ai-suport-box h5 {
    color: #ffff;
    font-size: 18px;
    font-weight: 700;
}
 .ai-click-box {
    background: linear-gradient(133.76deg, #FF6D1B -14.58%, #E7A600 66.22%, #FFBF84 117.88%);
    box-shadow: 12px 11px 40px 0px #155D974D;
    max-width: 240px;
    width: 100%;
    padding: 10px;
    display: flex;
    align-items: center;
    text-align: left;
    gap: 16px;
    border-radius: 60px;
    position: absolute;
    right: 20px;
    top: 40%;
    z-index: 9;
}
 .ai-click-box h5{
    color: #ffff;
    font-size: 18px;
    font-weight: 700;
}
.ai-box-main  .ai-click-box{
    display: none;
}
.ai_banner_content{
    position: relative;
}
.ai_banner_wrapper  img.ai_banner_icon1 {
    position: absolute;
    top: 14%;
    left: 12%;
    animation: float 5s linear infinite;
    z-index: 9;
    max-width: 250px;
    border-radius: 8px;
}
.ai_banner_wrapper  img.ai_banner_icon2{
    position: absolute;
    left: 0;
    top: 10%;
    z-index: 9;
}
.ai_banner_wrapper  img.ai_banner_icon3 {
    position: absolute;
    bottom: 35%;
    left: 4%;
    animation: float 5s linear infinite;
    z-index: 9;
    max-width: 260px;
    border-radius: 8px;
}
.ai_banner_wrapper  img.ai_banner_icon4 {
    position: absolute;
    right: 9%;
    top: 13%;
    animation: float 5s linear infinite;
    z-index: 9;
    max-width: 260px;
    width: 100%;
    border-radius: 8px;
}
.ai_banner_wrapper img.ai_banner_icon5 {
    position: absolute;
    bottom: 30%;
    right: 4%;
    animation: float 5s linear infinite;
    z-index: 9;
    max-width: 280px;
    width: 100%;
    border-radius: 8px;
}
.ai_banner_mockup img.ai_mock_shape {
    max-width: 736px;
    width: 100%;
    border-radius: 6px;
}

@keyframes rotate {
	0% {
		transform: rotate(0deg);
	}
	50% {
		transform: rotate(20deg);
	}
}

/* Banner CSS End*/
/* tutorial css start */
.ai-tutorial-section {
    background-image: url(../images/ai-secondsect-bg.png);
    background-repeat: no-repeat;
    padding: 130px  0 80px;
    margin-top: -270px;
    position: relative;
    z-index: 1;
    background-position: top center;
    overflow: hidden;
}
.ai-tutorial-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 930px;
    width: 100%;
    margin: 34px  auto 0;
    gap: 20px;
}
.ai-tutorial-easy{
    display: flex;
    align-items: center;
    gap: 15px;
}
.ai-tutorial-easy-icon{
    border: 1.5px solid #FFD78D;
    background-color: #FFF9EE;
    width: 80px;
    height: 80px;
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ai-tutorial-code{
    background-color: #F0F4FF;
    border: 1.5px solid #A0BBFF
}
.ai-tutorial-responsive{
    background-color: #EEFAFF;
    border: 1.5px solid #8DDDFF
}
.ai-tutorial-easy h5{
    font-weight: 700;
    font-size: 20px;
    color: #222;
}
.ai_video_heading{
    border: 1px solid transparent;
    background: linear-gradient(#fff, #fff), linear-gradient(90deg, #CD64FF 0%, #7636FF 100%);
    display: inline-flex;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border-radius: 50px;
    margin-bottom: 20px;
}

.ai-tutorial-video{
    transition: all .5s ease-in-out;
    position: relative;
    z-index: 9;
}
.video-active{
    transform: scale(1.2);
}
.ai-col-img, .ai-col-mg{
    transition: all .5s ease-in-out;
}

.image-active{
    transform: scale(1.2);
}
.ai-video-overlay{
    background: rgba(255, 255, 255, 0.8);
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    transition: all .5s ease-in-out;
    z-index: 1;
    z-index: 4;
    opacity: 0;
    visibility: hidden;
}
body.ai-hover-section .ai-video-overlay {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}
.ai-video-heading-bg{
    padding: 7px 30px;
}
.ai_video_heading h4{
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(90deg, #CD64FF 0%, #7636FF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}
.ai-tutorial-video-section {
    text-align: center;
    margin-top: 80px;
    position: relative;
    z-index: 9;
    transition: all 0.5s ease-in-out;
}
.ai-tutorial-heading{
    margin-bottom: 50px;
    text-align: center;
}
.ai-tutorial-heading h2{
    font-size: 34px;
    font-weight: 700;
    color: #312153;
    text-transform: capitalize;
}
.ai-tutorial-video .ai-video-icon{
    background:linear-gradient(133.76deg, #1BFFF1 -14.58%, #0094E7 66.22%, #3E45FF 117.88%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border-radius: 50px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    cursor: pointer;
}
.ai-tutorial-video .ai-video-icon a svg{
    margin-left: 2px;
}
.ai-demo-style .ai-video-heading-bg {
    background-color: #faf2ff;
    text-align: center;
    display: inline-flex;
    align-items: center;
    border-radius: 50px;
    padding: 7px 30px;
}
/* tutorial css end */
/* demo section css start */
.ai-demo-style{
    padding: 80px 0 0;
}
.ai-row{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(340px,1fr));
    gap: 50px 100px;
}
.ai-demo-one {
    border: 1px solid #F4EFFB;
    box-shadow: 0px 0px 50px 0px #9647FF1A;
    background-color: #fff;
    padding: 15px 15px;
    border-radius: 10px;
    max-width: 570px;
    width: 100%;
    margin: 0 auto;
    transition: all 0.5s ease-in-out !important  ;
}
.ai-demo-one img{
        border: 1px solid #F4EFFB;
    border-radius: 10px;
}


.ai-demo-one .ai-demo-img{
    margin-left: 24px;
    margin-top: 25px;
}
.ai-demo-one .ai-demo-img h5{
    font-size: 20px;
    font-weight: 700;
    color: #312153;
    text-align: center;
}
.ai-demo-one .ai-demo-img p{
    font-size: 16px;
    color:#8B839C;
    font-weight: 400;
    margin-top: 10px;
}
.ai-demo-one:hover{
    transform: translateY(-10px) !important;
}
/* demo section css end */
/* benefit section css start */
.ai-benefit-section{
    background-image: url(../images/ai-bg-shape.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 260px;
    overflow: hidden;
    
}
.ai-demorbg-heading{
    text-align: center;
}
.ai-demorbg-heading h5{
    font-size: 20px;
    font-weight: 800;
    color: #312153;
    text-transform: capitalize;
}
.ai-demorbg-heading p{
    font-size: 15px;
    font-weight: 400;
    color: #312153;
    margin-top: 20px;
}
.ai-demorbg-img{
    position: relative;
}
.ai-demorbg-img .ai-demo-boxone {
    width: 80px;
    height: 80px;
    box-shadow: -13px 20px 50px 0px #6360FF66;
    background: linear-gradient(180deg, #605CFF 0%, #7673FF 49.36%, #605CFF 100%);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 2%;
    right: 29%;
}
.ai-demo-inst {
    background: #F3E4FF;
    box-shadow: 0px 0px 80px 0px #F1D3FF4D;
    padding: 30px 30px;
    border-radius: 16px;
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 30px;
    align-items: center;
    margin-top: 30px;
    text-align: left;
    transition: all 0.3s eases;
}
.ai-demo-inst:hover .ai-demo-circle img{
    -webkit-animation-name: wobble-horizontal;
    animation-name: wobble-horizontal;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}
.ai-demo-circle{
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: #FFFFFF;
    box-shadow: -11px 22px 80px 0px #3B16581A;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ai-demo-circle img{
    border-radius: 100%;
}
.ai-demo-head h5{
    font-size: 20px;
    font-weight: 800;
    color: #312153;
}
.ai-demo-head p{
    font-weight: 400;
    font-size: 15px;
    margin-top: 20px;
}
.ai-demo-inst-one{
    background: #DBF0FF;
    box-shadow: 0px 0px 80px 0px #95ECFF33;
}
.ai-demo-inst-two{
    background: #E3E8FF;
    box-shadow: 0px 0px 80px 0px #738BFB1A;
}
.ai-demo-inst-third{
    background: #FFE9E9;
    box-shadow: 0px 0px 80px 0px #EE50501A;
}
.ai-demo-inst-fourth{
    background: linear-gradient(180deg, #EF74FF 0%, #942BFF 100%);
    padding: 50px 30px 40px;
    margin-top: 30px;
    border-radius: 16px;
    text-align: center;
    color: #fff;
}
.ai-demo-fourth-section{
    position: relative;
}
.ai-demo-fourth-section .ai-demo-cust{
    border-radius: 6px;
}
.ai-demo-fourth-section .ai-demo-icon5{
    position: absolute;
    top: -70px;
    left: -14px;
    animation: pulse 2s ease-in-out infinite;
}
.ai-demo-fourth-section .ai-demo-icon6 {
    position: absolute;
    left: -62px;
    bottom: -50px;
    animation: pulse 2s ease-in-out infinite;
}
.ai-demo-fourth-section .ai-demo-icon7 {
    position: absolute;
    top: -26px;
    right: -40px;
    animation: pulse 2s ease-in-out infinite;
}
.ai-demo-fourth-section .ai-demo-icon8{
    position: absolute;
    bottom: -50px;
    right: 0px;
    animation: pulse 2s ease-in-out infinite;
}
.ai-demo-inst-fourth .ai-demo-inst-text{
    max-width: 465px;
    width: 100%;
    margin: 0 auto;
    margin-top: 24px;
}
.ai-demo-inst-fourth .ai-demo-inst-text h5{
    font-size: 20px;
    font-weight: 800;
    color: #fff;
}
.ai-demo-inst-fourth .ai-demo-inst-text p{
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    margin-top: 10px;
}
.ai-rowone{
    margin-top: 30px;
 
}
.gx-30{
    --bs-gutter-x:  1.875rem;
}
.ai-benefit-main{
    margin-top: 80px;
}
/* benefit section css end  */
/* customer-second section css start */
.ai-customer-second{
    text-align: center;
    padding-top: 140px;
}
.ai-col-img{
    position: relative;
}
img.ai-micro {
    position: absolute;
    bottom: -13%;
    right: 13%;
    animation: 4s installation infinite alternate 2s;
}
img.ai-opera {
    position: absolute;
    left: 25px;
    top: 50px;
    animation: 4s installation infinite alternate 2s;
}
img.ai-firefox {
    position: absolute;
    top: 20%;
    bottom: 0;
    margin: auto;
    right: 7%;
    animation: 4s installation infinite alternate 2s;
}
img.ai-chorme {
    position: absolute;
    top: 0;
    right: 0;
    animation: 4s installation infinite alternate 2s;
}
img.ai-comp {
    position: absolute;
    bottom: -13%;
    left: 13%;
    animation: 4s installation infinite alternate 2s;
}
.ai-col-img .ai-toolele {
    position: absolute;
    left: 0;
    bottom: -90px;
}
.ai-draganddrop {
    box-shadow: -66.3px 24.96px 46.8px 0px #2B194814;
    background-color: #fff;
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 24px;
    padding: 27px 27px;
    max-width: 445px;
    width: 100%;
    border-radius: 16px;
    position: absolute;
    top: -60px;
    right: 6%;
    text-align: left;
    align-items: center;
}
.ai-draganddrop-circle{
    width: 100px;
    height: 100px;
    background-color: #fff;
    box-shadow: -8.58px 17.16px 62.4px 0px #C11F6033;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ai-draganddrop h5{
    font-size: 16px;
    font-weight: 800;
    color: #312153;
}
.ai-draganddrop p{
    font-size: 12px;
    font-weight: 400;
    color: #312153;
    margin-top: 7px;
}
.ai-demo-inst-orange{
    background: linear-gradient(180deg, #F7B733 0%, #FC4A1A 100%);
    padding-top: 17px;
    padding-bottom: 30px;

}
.ai-demo-inst-orange  .ai-demo-inst-text, .ai-demo-inst-blue .ai-demo-inst-text, .ai-demo-inst-violet .ai-demo-inst-text{
    margin-top: 0px;
}
.ai-demo-inst-blue{
    background:linear-gradient(133.76deg, #1BFFF1 -14.58%, #0094E7 66.22%, #3E45FF 117.88%);
    padding-top: 17px;

}
.ai-demo-inst-violet{
    background: linear-gradient(180deg, #30194D 0%, #1D0F2E 100%);
    padding-top: 17px;

}
.ai-demo-inst-css{
    box-shadow: 0px 0px 80px 0px #95ECFF33;
    background: #DBF0FF;
    text-align: left;
}
.ai-demo-inst-modern{
    background: #F2E9FF;
    box-shadow: 0px 0px 80px 0px #BC95FF33;

}
.ai-demo-inst-boot{
    background: #E8EAFF;
    box-shadow: 0px 0px 80px 0px #C395FF33;
}
.ai-demo-inst-usr{
    background: #FFE8FD;
    box-shadow: 0px 0px 80px 0px #ECA5E61A;
}
/* customer-second section css end */
/* customer third section css start  */
.ai-customer-third{
    text-align: center;
    padding-top: 80px;
}
.ai-customer-third .ai-demorbg-heading{
    margin-top: 50px;
    margin-bottom: 30px;
}
.ai-customer-third .ai-demo-inst-violet{
    padding-bottom: 20px;
}
.ai-col-img .ai-slider-one {
    position: absolute;
    left: 10px;
    bottom: 18%;
    animation: 4s installation infinite alternate;
}
.ai-col-img .ai-slider-two {
    position: absolute;
    right: 30px;
    top: 12%;
    animation: 4s installation infinite alternate;
}
.ai-demo-inst-links {
    background: #E2FFCB;
    box-shadow: 0px 0px 80px 0px #6AAE340F;

}
.ai-demo-inst-html{
    background-color: #DBF0FF;
    box-shadow: 0px 0px 80px 0px #95ECFF33;
}
.ai-demo-inst-boot{
    background: #E8EAFF;
    box-shadow: 0px 0px 80px 0px #C395FF33;
}
.ai-demo-inst-ajax{
    background: linear-gradient(106.52deg, #0CACDF 46.8%, #0FF7F7 108.27%);
}
.ai-demo-inst-ajax  .ai-demo-head h5, .ai-demo-inst-ajax  .ai-demo-head p{
    color: #fff;
}
.ai-customer-fourth .ai-demo-inst-blue{
    padding-top: 50px;
}
.ai-customer-fourth .ai-demo-inst-text{
    margin-top: 50px;
}
.ai-demo-inst.ai-demo-inst-seo {
    background: #E3E8FF;
    box-shadow: 0px 0px 80px 0px #738BFB1A;
}
.ai-demo-inst.ai-demo-inst-custom {
    background: #FFE3F1;
    box-shadow: 0px 0px 80px 0px #D10A9A1A;
}
.ai-demo-inst.ai-demo-inst-unlimited {
    background: linear-gradient(180deg, #8E51F2 0%, #CF81FF 100%);
    box-shadow: 0px 0px 80px 0px #EE50501A;
}
.ai-demo-inst.ai-demo-inst-widgets {
    background: #DBF0FF;
    box-shadow: 0px 0px 80px 0px #95ECFF33;
}
.ai-demo-inst.ai-demo-inst-layout {
    background: #FFE9E9;
    box-shadow: 0px 0px 80px 0px #EE50501A;
}
.ai-demo-inst.ai-demo-inst-short-codes {
    background:linear-gradient(180deg, #F7B733 0%, #FC4A1A 100%);
}
.ai-demo-inst.ai-demo-inst-short-codes  .ai-demo-head h5 ,.ai-demo-inst.ai-demo-inst-short-codes  .ai-demo-head p, 
.ai-demo-inst.ai-demo-inst-unlimited .ai-demo-head h5,.ai-demo-inst.ai-demo-inst-unlimited .ai-demo-head p{
    color: #fff;
}
.ai-demo-inst.ai-demo-inst-redux {
    background: #E3E8FF;
    box-shadow: 0px 0px 80px 0px #738BFB1A;
}
.ai-demo-inst.ai-demo-inst-custom-post {
    background: #E2FFCB;
    box-shadow: 0px 0px 80px 0px #6AAE340F;
}
.ai-demo-inst.ai-demo-inst-cf7 {
    background: #FFE9E9;
    box-shadow: 0px 0px 80px 0px #EE50501A;
}
.ai-demo-inst.ai-demo-inst-mci {
    background: #E3E8FF;
    box-shadow: 0px 0px 80px 0px #738BFB1A;
}
.ai-customer-fifth .ai-demo-inst-orange {
    padding-bottom: 40px;
}
.ai-image-fifth {
    position: relative;
}
.ai-customer-fifth.ai-customer-third .ai-demorbg-heading {
    margin-top: 0;
}
.ai-light-orange{
    background: linear-gradient(133.76deg, #F87196 -14.58%, #F9B239 117.88%);

}
.ai-customer-Sixth.ai-customer-third .ai-demo-inst-violet {
    padding-bottom: 40px;
}
@-webkit-keyframes wobble-horizontal {
    16.65% {
        -webkit-transform: translateX(8px);
        transform: translateX(8px);
    }
    33.3% {
        -webkit-transform: translateX(-6px);
        transform: translateX(-6px);
    }
    49.95% {
        -webkit-transform: translateX(4px);
        transform: translateX(4px);
    }
    66.6% {
        -webkit-transform: translateX(-2px);
        transform: translateX(-2px);
    }
    83.25% {
        -webkit-transform: translateX(1px);
        transform: translateX(1px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes wobble-horizontal {
    16.65% {
        -webkit-transform: translateX(8px);
        transform: translateX(8px);
    }
    33.3% {
        -webkit-transform: translateX(-6px);
        transform: translateX(-6px);
    }
    49.95% {
        -webkit-transform: translateX(4px);
        transform: translateX(4px);
    }
    66.6% {
        -webkit-transform: translateX(-2px);
        transform: translateX(-2px);
    }
    83.25% {
        -webkit-transform: translateX(1px);
        transform: translateX(1px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
/* customer third section css end  */
/* header style css start */

.ai-header-style{
    background: #2C1747;
    border-radius: 20px;
    padding: 40px 50px;
    margin-top: 30px;

}
.ai-header-heading h3{
    background: linear-gradient(133.76deg, #F87196 -14.58%, #F9B239 117.88%);
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 40px;
}

.ai-headers-styling{
    display: flex;
    flex-direction: column;
    gap: 19px;
}
.ai-footer-style{
    background: #2C1747;
    border-radius: 20px;
    padding: 40px 50px;
    margin-top: 30px;
}
.ai-footer-styling{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.ai-footer-heading h3{
    background: linear-gradient(133.76deg, #1BFFF1 -14.58%, #0094E7 66.22%, #3E45FF 117.88%);
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 40px;
}
/* header style css end  */
/* footer section css start */
.ai-footer-section {
    background-image: url(../images/footer-section-bg.png);
    background-repeat: no-repeat;
    padding: 200px  0 80px;
    margin-top: -300px;
    position: relative;
    z-index: 9;
    background-position: top center;
    background-size: cover;
}
.ai-footer-section  .ai-api-box {
    background: #FFFFFF;
    box-shadow: 22px 22px 60px 0px #353B751A;
    border-radius: 10px;
    padding: 49px 20px;
    width: 175px;
    text-align: center;
    height: 186px;   
}
.ai-footer-section  .ai-api-box img{
    width: 60px;
}
.ai-footer-section .ai-pixabay, .ai-footer-section .ai-leanardo, .ai-footer-section .ai-picsart, .ai-footer-section .ai-openai{
    animation: smoothVerticalMove 3s ease-in-out infinite;
}
.ai-footer-section .ai-unsplash, .ai-footer-section .ai-stable, .ai-footer-section .ai-remove-bg{
    animation: smoothVerticalMovealter 3s ease-in-out infinite;
}
@keyframes scrollBanner {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
@keyframes rotate {
	0% {
		transform: rotate(0deg);
	}
	50% {
		transform: rotate(10deg);
	}
}
@keyframes installation {
    0% {
        transform: translateY(0px);        
    }
    50% {
        transform: translateY(-20px);        
    }
}
@keyframes float {
        0% {
        transform: translateY(0) scale(1);
        opacity: 1;
        }
        50% {
        transform: translateY(-20px) scale(1.05);
        opacity: 0.8;
        }
        100% {
        transform: translateY(0) scale(1);
        opacity: 1;
        }
  }
  @keyframes smoothVerticalMove {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(30px);
    }
    100% {
      transform: translateY(0);
    }
  }
  @keyframes smoothVerticalMovealter {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-30px);
    }
    100% {
      transform: translateY(0);
    }
  }
  
.ai-footer-section  .ai-api-box h6{
    font-size: 18px;
    font-weight: 600;
    margin-top: 15px;
    color: #000000;
}
.ai-api-parent-section{
    display: flex;
    gap: 83px;
    justify-content: center;
}
.ai-unsplash, .ai-stable, .ai-remove-bg{
    margin-top: 126px;
}
/* envato section css start */
.ai-envato-section {
    background-image: url(../images/envato-bg.png);
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 70px 20px;
    max-width: 1700px;
    margin: 0 auto;
    margin-top: 150px;
    background-position: center;
    background-size: cover;
    border-radius: 50px;
}
.ai-envato-section h3{
    font-size: 50px;
    font-weight: 800;
    color: #87E64B;
    text-align: center;
}
.ai-envato-section p{
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 500;
}
.ai-envato-section h1{
    background:linear-gradient(133.76deg, #1BFFF1 -14.58%, #0094E7 66.22%, #3E45FF 117.88%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 100px;
    font-weight: 800;
}
.ai-envato-section h5{
    background: #FFFFFF1A;
    border-radius: 50px;
    display: inline-flex;
    color: #fff;
    align-items: center;
    padding: 16px 43px;
    font-size: 24px;
    margin-top: 21px;

}
.ai-envato-section img {
    margin-top: 36px;
    margin-bottom: 20px;
}   
.ai-envato-section p{
    margin-top: 10px;
}
/* footer text css start */
.ai-footer-text {
    margin-top: 80px;
    text-align: center;
}
.ai-footer-text .ai-tutorial-heading h1{
    font-size: 34px;
    font-weight: 700;
    text-align: center;
    color: #312153;
}
.ai-footer-text .ai-tutorial-heading h1 span{
    color: #FF8C22;
}
.ai-footer-text  .ai_video_heading {
    border: 1px solid transparent;
    background: linear-gradient(#faf2ff, #f9f1ff), linear-gradient(90deg, #CD64FF 0%, #7636FF 100%);
    display: inline-flex;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border-radius: 50px;
    margin-bottom: 20px;
}
.ai-footer-text p{
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    color: #312153;
}
.ai-footer-text .ai-tutorial-heading{
    margin-bottom: 25px;
}
.ai-footer-text a.ai-purchase-btn{
    background: #82B440;
    color: #fff;
    max-width: 202px;
    width: 100%;
    min-height: 55px;
    line-height: 55px;
    font-size: 18px;
    font-weight: 500;
    display: inline-block;
    border-radius: 6px;
    margin-top: 30px;
    transition: all 0.3s ease-in-out;
}
.ai-footer-text a.ai-purchase-btn:hover{
    transform: scale(1.1);
}
.ai-tutorial-video{
    max-width: 770px;
    width: 100%;
    margin: 0 auto;
}
.ai-tutorial-video iframe{
    max-width: 770px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    border: 2px solid #FFFFFF;
    border-radius: 20px;
}
#poster-overlay {
    transition: opacity 0.3s ease;
}

#poster-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}
.ai-copyright-wrapper{
    background-color: #222;
    text-align: center;
    padding: 15px 0;
}
.ai-copyright-wrapper p{
    color: #fff;
    font-size: 16px;
}
/* footer section css end  */
/* RESPONSIVE CSS START */
@media(max-width:1800px){
 
}
@media(max-width:1760px){
    .ai-api-parent-section{
        gap: 35px;
    }
}
@media(max-width:1700px){
   
}
@media(max-width:1650px){
    .ai_banner_wrapper img.ai_banner_icon4{
        right: 3%;
        max-width: 200px;
    }
    .ai_banner_wrapper  img.ai_banner_icon1 {
        top: 10%;
        left: 2%;
        max-width: 200px;
    }
    .ai_banner_wrapper img.ai_banner_icon5 {
        bottom: 30%;
        max-width: 200px;
        width: 100%;
    }
    .ai_banner_wrapper  img.ai_banner_icon3 {
        left: 3%;
        max-width: 200px;
    }
}
  
@media(max-width:1500px){
    .ai-api-parent-section{
        gap: 25px;
    }
   
}
@media(max-width:1440px){
    .ai_banner_wrapper img.ai_banner_icon5 {
        bottom: 30%;
        max-width: 170px;
    }
    .ai_banner_wrapper  img.ai_banner_icon3 {
        left: 1%;
        max-width: 170px;
    }
    .ai_banner_wrapper img.ai_banner_icon4{
        max-width: 170px;
        width: 100%;
    }
    .ai_banner_wrapper  img.ai_banner_icon1 {
        top: 11%;
        left: 4%;
        max-width: 170px;
        width: 100%;
    }
    .ai-click-box{
        top: 30%;
    }
}
@media(max-width:1199px){
    .ai-banner-heading-second h2 {
        font-size: 44px;
        max-width: 710px;
    }
    .ai-bnr-images-icon .ai-click-box {
     display: none;
    }
    .ai-box-main  .ai-click-box{
        display: inline-flex;
        position: unset
    }
    .ai_banner_mockup .ai-suport-box {
        position: unset;
    }
    .ai_banner_wrapper img.ai_banner_icon5 {
        bottom: 30%;
        max-width: 170px;
    }
    .ai_banner_wrapper img.ai_banner_icon3 {
        max-width: 180px;
    }
    .ai-api-parent-section{
        flex-wrap: wrap;
    }
    .ai-unsplash, .ai-stable, .ai-remove-bg{
        margin-top: 0;
    }
    .ai-box-main {
        display: flex;
        gap: 40px;
        justify-content: center;
        margin-top: 35px;
        flex-wrap: wrap;
    }
    img.ai-firefox {
        right: 3%;
    }
    img.ai-firefox, img.ai-chorme, img.ai-comp, img.ai-micro, img.ai-opera{
        width: 90px;
    }
    img.ai-micro, img.ai-comp{
        bottom: -3%;
    }
    .ai-footer-section .ai-unsplash, .ai-footer-section .ai-stable, .ai-footer-section .ai-remove-bg{
        animation: smoothVerticalMove 3s ease-in-out infinite;
    }
 
}
@media(max-width:1024px){
    .ai-banner-heading-second h2 {
        font-size: 40px;
        max-width: 660px;
    }
}
@media(max-width:991px){
    .ai_banner_mockup .ai-demo-circle {
        width: 100px;
        height: 100px;
        top: -52px;
        right: 0;
        left: 0;
        margin: 0 auto;
    }
    .ai_banner_mockup .ai-demo-circle h6{
        font-size: 26px;
    }
    .ai_banner_mockup .ai-demo-circle p{
        font-size: 12px;
    }
    .ai_banner_mockup .ai-suport-box {
        left: 3%;
    }

    .ai-banner-heading-second h2 {
        font-size: 30px;
        max-width: 505px;
    }
    .ai_banner_heading h4 {
        font-size: 22px;
    }
    .ai_banner_mockup {
        max-width: 600px;
    }
    .ai-bnr-images-icon .ai-click-box {
        right: 13%;
        bottom: 15.1%;
    }
    .ai-row{
        gap: 40px;
    }
    .ai-envato-section h3{
        font-size: 42px;
    }
    .ai-envato-section h1{
        font-size: 80px;
    }
    .ai-envato-section p{
        text-align: center;
        font-size: 22px;
    }
    .ai-envato-section h5 {
        font-size: 22px;
        text-align: center;
    }
    .ai_banner_wrapper img.ai_banner_icon5 {
        bottom: 28%;
        max-width: 170px;
    }
}
@media (max-width:850px) {
     .ai_banner_wrapper img.ai_banner_icon1,.ai_banner_wrapper img.ai_banner_icon2,
    .ai_banner_wrapper img.ai_banner_icon3,.ai_banner_wrapper img.ai_banner_icon4,.ai_banner_wrapper img.ai_banner_icon5,
    .ai-chorme,.ai-micro, .ai-opera, .ai-firefox, .ai-comp {
        display: none;
    }

}
@media(max-width:767px){
    .ai_banner_wrapper img.ai_banner_icon1,.ai_banner_wrapper img.ai_banner_icon2,
    .ai_banner_wrapper img.ai_banner_icon3,.ai_banner_wrapper img.ai_banner_icon4,.ai_banner_wrapper img.ai_banner_icon5,
    .ai-chorme,.ai-micro, .ai-opera, .ai-firefox, .ai-comp {
        display: none;
    }

    .ai-bnr-images-icon .ai-click-box {
        max-width: 180px;
        gap: 10px;
        right: 13%;
        bottom: 10.5%;
        
    }
    .ai_banner_mockup .ai-suport-box ,.ai-box-main .ai-click-box{
        max-width: 180px;
        gap: 10px;
        left: 8%;
        bottom: -15%;
    }
    .ai-bnr-images-icon .ai-click-box h5 , .ai-box-main .ai-click-box h5, .ai_banner_mockup .ai-suport-box h5{
        font-size: 14px;
    }
    img.ai_banner_suprt-icon{
        width: 40px;
    }
    .ai-tutorial-section {
        margin-top: -220px;
    }
    .ai_banner_wrapper {
        padding-bottom: 150px;
    }
    .ai-envato-section p {
        font-size: 16px;
    }
    .ai-envato-section h3 {
        font-size: 34px;
    }
    .ai-envato-section h1 {
        font-size: 64px;
    }
    .ai-tutorial-easy h5 {
        font-size: 16px;
    }
    .ai-tutorial-video{
        max-width: 470px;
        width: 100%;
        margin: 0 auto;
    }
    .ai-tutorial-video iframe{
        max-width: 470px;
        width: 100%;
        margin: 0 auto;
        text-align: center;
    }
}

@media(max-width:600px){
    .ai-draganddrop{
        position: unset;
        max-width: 100%;
        justify-content: center;
    }
    .ai-col-img .ai-toolele{
        display: none;
    }
}
@media(max-width:575px){
    .ai-bnr-images-icon .ai-click-box{
        bottom: 12%;
    }
    .ai_banner_mockup .ai-suport-box {
        bottom: -23%;
    }
    .ai-tutorial-list {
        margin-top: 100px;
    }
    .art-main-head {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    .ai-header-ul{
        gap: 15px;
    }
}
@media(max-width:525px){
    .ai_banner_mockup .ai-suport-box {
        bottom: -30%;
        right: 0;
        left: 0;
        margin: 0 auto;
    }
    .ai-bnr-images-icon .ai-click-box{
        bottom: 5%;
        right: 0;
        left: 0;
        margin: 0 auto;
    }
    .ai_banner_mockup .ai-demo-circle {
        width: 70px;
        height: 70px;
    }
    .ai_banner_mockup .ai-demo-circle h6{
        font-size: 18px;
    }
    .ai_banner_mockup .ai-demo-circle p{
        font-size: 10px;
    }
   
    .ai-row{
        grid-template-columns: 1fr;
    }
    .ai-demo-inst{
        grid-template-columns: 1fr;
        text-align: center;
    }
    .ai-demo-circle{
        margin: 0 auto;
    }
    .ai-envato-section h5 {
        font-size: 14px;
        text-align: center;
        padding: 10px 13px;
    }
    .ai-envato-section h3 {
        font-size: 27px;
    }
    .ai-envato-section p {
        font-size: 17px;
    }
    .ai-envato-section h1 {
        font-size: 54px;
    }
    .ai-footer-text .ai-tutorial-heading h1{
        font-size: 18px;
    }
    .ai_video_heading h4 {
        font-size: 14px;
    }
    .ai-tutorial-heading h2{
        font-size: 18px;
    }
    .ai-footer-heading h3 {
        font-size: 14px;
    }
    .ai-header-heading h3 {
        font-size: 14px;
    }
    .ai-header-style, .ai-footer-style {
        padding: 20px 20px;
    }
    .ai-demo-inst-fourth .ai-demo-inst-text h5{
        font-size: 15px;
    }
    .ai-draganddrop{
        grid-template-columns: 1fr;
        text-align: center;
    }
    .ai-draganddrop-circle{
        margin: 0 auto;
    }
}
@media(max-width:480px){
    .ai_banner_heading h4 {
        font-size: 16px;
    }
    .ai-banner-heading-second h2 {
        font-size: 24px;
    }
    .ai-col-img .ai-slider-one{
        display: none;
    }
    .ai-col-img .ai-slider-two{
        display: none;
    }
    .ai-envato-section{
        margin-top: 80px;
    }
    .ai-box-main {
        gap: 20px;
    }
}

@media(max-width:375px){
    .ai-envato-section h5 {
        font-size: 9px;
        text-align: center;
        padding: 10px 10px;
    }
    .ai-envato-section h3 {
        font-size: 18px;
    }
    .ai-envato-section p {
        font-size: 12px;
    }
}
/* RESPONSIVE CSS END */
.art-new {
    position: absolute;
    top: 10px;
    left: 1px;
    background: #23e7b2;
    padding: 0 8px;
    border-radius: 0 15px 15px 0;
    color: #fff;
}
.art-new span{
    font-size: 18px;
}