/*
[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;
    background-color: #0C021E;
}
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: #222;
    -webkit-border-radius: 10px;    
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    height: 100px;
    background-image: linear-gradient(145deg, #FFBF10 0%, #FF1DAC 100%);
}
/* Scroll */
/* Bottom To Top CSS Start */
.ai_top_icon a {
    display: flex;
    background-image: linear-gradient(145deg, #FFBF10 0%, #FF1DAC 100%);
    filter: drop-shadow(0 0 15px rgba(255, 29, 172,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;

}

.ai-header-ul {
    display: flex;
    justify-content: space-between;
    max-width: 541px;
    width: 100%;
    margin: 0 auto;
}
.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/ai-banner.jpg);    
    padding: 0px 0 40px 0;    
    z-index: auto;
    text-align: center;
}

@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-image: linear-gradient(#0b1a2d, #000000), linear-gradient(90deg, #F4CA51 0%, #FF59B3 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    color: #ffffff;
    margin-top: 30px;
}
.ai-banner-heading-bg{
    text-align: center;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding-right: 28px;
    background: #FFFFFF1A;
    border-radius: 50px;
}

.ai_banner_heading .ai_heading {
    max-width: 1000px;
    margin: auto;
}
.ai_banner_heading h4{
    font-family: "Figtree", sans-serif;
    font-size: 30px;    
    font-weight: 600;    
    text-align: center;
    text-transform: capitalize;
    background: linear-gradient(90deg, #FFC41C 0%, #FF30A0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}
.ai-banner-heading-second h2 {
    font-family: "Figtree", sans-serif;
    font-size: 54px;
    font-weight: 700;
    text-align: center;
    max-width: 900px;
    width: 100%;
    color: #fff;
    margin: 30px auto ;
    position: relative;
    z-index: 1;
}
.ai-banner-heading-second h2 span{
    font-weight: 700;
    background: linear-gradient(264.46deg, #FFBF10 0%, #FF1DAC 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: capitalize;
}
.ai_banner_mockup {
    position: relative;
    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: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: absolute;
    top: 25px;
    right: -80px;
}
.ai_banner_mockup  .ai-demo-circle h6 {
    font-size: 40px;
    font-weight: 600;
}
.ai_banner_mockup  .ai-demo-circle p{
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.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%;
}
 .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:12%;
    left: 13%;
    animation: float 5s linear infinite;
}
.ai_banner_wrapper  img.ai_banner_icon2{
    position: absolute;
    left: 0;
    top: 10%;
}
.ai_banner_wrapper  img.ai_banner_icon3 {
    position: absolute;
    top: 20%;
    left: 24%;
    animation: float 5s linear infinite;
}
.ai_banner_wrapper  img.ai_banner_icon4 {
    position: absolute;
    right: 5%;
    top: 32%;
    animation: float 5s linear infinite;
}
.ai_banner_wrapper img.ai_banner_icon5 {
    position: absolute;
    top: 12%;
    right: 11.5%;
    animation: float 5s linear infinite;
}
.ai_banner_mockup img.ai_mock_shape {
    width: 100%;
    max-width: 1170px;
}
h1.ai-banner-wordpress {
    font-size: 204px;
    font-weight: 700;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.05) 100%);
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    z-index: 0;
    margin: auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: capitalize;
}
.ai-banner-heading-second {
    position: relative;
}   
@keyframes rotate {
	0% {
		transform: rotate(0deg);
	}
	50% {
		transform: rotate(20deg);
	}
}
.ai-demo-img h5 {
    background: linear-gradient(264.46deg, #FFBF10 0%, #FF1DAC 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 10px;
}
.ai-demo-img h3 {
    font-size: 30px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 10px;
  
}

.ai-demo-img p {
    color: #C7C7C7;
    font-size: 16px;
    margin-top: 10px;
    font-weight: 400;
    max-width: 500px;
    width: 100%;
}

.ai-demo-one img {
    max-width: 480px;
    width: 100%;
    max-height: 440px;
}
.ai-demo-one{
    text-align: center;
}
.ai-demo-one.ai-demo-one-right{
    text-align: center;
}
.ai-bnr-logo {
    margin-bottom: 40px;
}
/* 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 #cb4da5;
    background-color: #ffffff1a;
    width: 80px;
    height: 80px;
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-tutorial-easy h5{
    font-weight: 700;
    font-size: 20px;
    color: #fff;
}
.ai_video_heading{
    border: 2px solid transparent;
    background: linear-gradient(#0C021E, #0C021E),linear-gradient(87.51deg, #FF1DAC 5%, #FFBF10 95.93%);
    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(87.51deg, #FF1DAC 5%, #FFBF10 95.93%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    color: #fff;

}
.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;
    background: 
    linear-gradient(264.46deg, #FFBF10 0%, #FF1DAC 100%);  
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;  
    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: #0C021E;  
    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: 1fr;
    gap: 50px;
}
.ai-demo-one {
    width: 100%;
    margin: 0 auto;
    transition: all 0.5s ease-in-out !important  ;
}

.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;
}
.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;
    background-color: #110724;
}
.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/ai-footer-bg.png);
    background-repeat: no-repeat;
    padding: 140px  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-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;
}
.ai-content-row{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
/* envato section css start */
.ai-envato-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.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;
}
.ai-content-section {
    background-image: url(../images/ai-secondsect-bg.png);
    margin-top: -400px;
    padding-top: 150px;
    padding-bottom: 380px;
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
}
.ai-feature-section{
    background: #FFFFFF0A;
    border: 1.44px solid #FFFFFF33;
    backdrop-filter: blur(28.88888931274414px);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 14px;
    text-align: center;
    padding: 40px 20px;
    flex: 0 0 23%;
    transition: all 0.3s ease !important;
}
.ai-feature-section:hover{
    transform: translateY(-10px) !important;
}
.ais-feature-title h4{
    color: #fff;
    font-size: 20px;
    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: #000000;
    text-align: center;
    padding: 15px 0;
}
.ai-copyright-wrapper p{
    color: #fff;
    font-size: 16px;
}
.ai-envato-section h2 {
    background: linear-gradient(264.46deg, #FFBF10 0%, #FF1DAC 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 50px;
    font-weight: 600;
}
/* footer section css end  */
/* new css start */
.ai-step-section{
    padding: 80px 0 380px;
    background-color: #110724;
}
.ai-step-section .ai-benefit-main{
    margin-top: 0;
}
.aif-imgen-work-box {
    border-radius: 20px;
    border: 1.44px solid #FFFFFF33;
    position: relative;
    transition: all 0.3s;
}
.aif-imgen-work-box > span {
    color: #ffffff1c;
    font-size: 86px;
    font-weight: 700;
    position: absolute;
    top: 20px;
    right: 40px;
    transition: all 0.3s;
    display: block;
    line-height: normal;
    z-index: 0;
}
.aif-imgen-work-box:hover{
    transform: translateY(-10px);
}
.aif-imgen-work-box:hover span{
    color:#cb4da5 ;
}
.aif-imgen-work-inner {
    background-color: #FFFFFF0A;
    box-shadow: -23px 24px 100px 0px #8A4BC91A;
    border-radius: 20px;
    padding: 50px 25px 50px 40px;
}
.aif-imgen-work-img img {
    max-width: 160px;
    max-height: 160px;
}
.aif-imgen-work-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    padding: 30px 0 0px 0;
    margin-bottom: 15px;
    line-height: 1.5;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.aif-imgen-work-content p {
    font-size: 15px;
    font-weight: 400;
    color: #C7C7C7;
    line-height: 1.7;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}
.ai-envato-section a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    -webkit-appearance: none;
    appearance: none;
    outline: none !important;
    font-size: 16px;
    color: #fff;
    background-image: linear-gradient(145deg, #FFBF10 0%, #FF1DAC 100%);
    border-radius: 6px;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    overflow: hidden;
    z-index: 1;
    min-width: 140px;
    min-height: 45px;
    font-weight: 600;
    text-transform: capitalize;
    padding: 0 30px;
    background-size: 100% 200%;
    border: none;
    box-shadow: none;
    margin-top: 25px;
}
.ai-envato-section a:hover{
    background-position: 200% 100%;
    transform: translateY(-5px);
}

.ai-envato-section a {
    z-index: 1
}

.ai-key-row{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 50px 100px;
}
.ai-key-one{
    border: 1px solid #ffffff14;
    background: #FFFFFF0F;
    padding: 15px 15px;
    border-radius: 10px;
    max-width: 570px;
    width: 100%;
    margin: 0 auto;
    transition: all 0.5s ease-in-out !important;
    text-align: center;
}
.ai-key-demo-img h5 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    text-align: left;
    margin-top: 15px;
    margin-left: 15px;
}
.ai-key-one-img{
    min-height: 285px;
    text-align: center;
}
.ai-key-section{
    background-image: url(../images/ai-secondsect-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    padding-top: 150px;
    padding-bottom: 80px;
    margin-top: -400px;
    overflow: hidden;
}
/* new 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%;
    }
    .ai_banner_wrapper  img.ai_banner_icon1 {
        top: 0%;
        left: 8%;
    }
    .ai_banner_wrapper img.ai_banner_icon5 {
        bottom: 10%;;
    }
    .ai_banner_wrapper  img.ai_banner_icon3 {
        left: 3%;
    }
}
@media(max-width:1600px){

}
@media(max-width:1550px){
    
}
@media(max-width:1500px){
    .ai-api-parent-section{
        gap: 25px;
    }
   
}
@media(max-width:1440px){
    .ai_banner_wrapper img.ai_banner_icon5 {
        bottom: 10%;
    }
    .ai_banner_wrapper  img.ai_banner_icon3 {
        left: 1%;
    }
    .ai_banner_wrapper  img.ai_banner_icon1 {
        top: 5%;
        left: 8%;
    }
    .ai-click-box{
        top: 30%;
    }
    h1.ai-banner-wordpress {
        font-size: 120px;
    }
}
@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: 18%;
    }
    .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%;
    }
    .ai-feature-section{
        flex: 0 0 48%;
    }
    h1.ai-banner-wordpress{
        font-size: 80px;
    }
    .ai-col-one{
        order: 2;
    }
    .ai-col-two{
        order: 1;
    }
}
@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;
    }
    h1.ai-banner-wordpress{
        font-size: 50px;
    }
}
@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;
    }
    .ai-envato-section h2{
        font-size: 30px;
        text-align: center;
    }
    .ai-footer-section {
        padding-top: 50px;
    }
    .aif-imgen-work-box > span {
        font-size: 45px;
    }
    .ai-step-section{
        padding-top:50px ;
    }
}
@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-box-main {
        gap: 20px;
    }
    .ai-feature-section{
        flex: 0 0 100%;
    }
    .ai-key-row{
        grid-template-columns: 1fr;
    }
    .ai-key-one-img {
        min-height: unset;
    }
}

@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 */