/*
[Master Stylesheet] 
Project:ClickSites AI HTML
-------------------------------------------------------------------*/
/********************************************************
1. body start
 *******************************************************/
 body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;	  	
	-webkit-font-smoothing: antialiased;
    overflow-x:hidden;    
    font-family: "Manrope", sans-serif;       
    background: #0F0216;
      
}
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;
    height: 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-color: #FF00B4;
}
/* Scroll */
/* Buttton CSS Start */
.rock-btn{
    min-height: 50px;
    min-width: 150px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0 30px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-transform: capitalize;
    background-color: #FF00B4;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    z-index: 9;    
    transition: all 0.3s;
}
.rock-btn span {
    position: relative;
    pointer-events: none;
  }
.rock-btn::before{
    content: '';
    position: absolute;
    --size: 0px;
    left: var(--x);
    top: var(--y);
    width: var(--size);
    height: var(--size);
    background: radial-gradient(circle closest-side, #4405f7, transparent);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    transition: width .6s ease, height .6s ease;        
}
.rock-btn:hover::before {
    --size: 400px;
  }
/* Buttton CSS End*/
/* Background cover */
.rock-bg-cover{
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 80px 0;
}
/* Background cover */

/* Heading css */
.rock-heading{
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    text-transform: capitalize;
    text-align: center;
}
/* Heading css */

/* Banner css start */
.rock-banner-wrapper{
    background-image: url(../images/banner-main.png); 
    padding: 230px 0;   
}
.rock-banner-wrapper .container{
    max-width: 1750px;
}
.rock-banner-content h1 {
    font-size: 70px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    text-transform: capitalize;
    padding: 40px 0 15px 0;
}
.rock-banner-content p{
    font-size: 16px;
    font-weight: 400;
    color: #D2CDDF;
    max-width: 735px;    
    width: 100%;
}
.rock-banner-btns{
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 45px;
}
.rock-banner-btns .rock-btn:last-child{
    background: transparent;
    border: 1px solid #fff;
}
.rock-banner-btns .rock-btn:last-child:before{
    background: radial-gradient(circle closest-side, #FF00B4, transparent);;
}
/* Banner css end */

/* Demo css start */
.rock-demo-wrapper {
    background-image: url(../images/bg-two.png);
    padding-bottom: 50px;
    margin-top:-35px;
}
.rock-demo-parent {
    padding-top: 70px;
}
.rock-demo-box{
    display: block;
    margin-bottom: 50px;
}
.rock-demo-img{
    position: relative;
    z-index: 1;
}
.rock-demo-img > img:first-child {
    border-radius: 6px;
}
.rock-demo-img .rockDemoShapeLeft {
    position: absolute;
    bottom: -30px;
    z-index: -1;
    transition: all 0.3s;
}
.rock-demo-parent .row .col-lg-6:nth-of-type(2n+1) .rock-demo-img .rockDemoShapeLeft{
        left: -40px;
}
.rock-demo-parent .row .col-lg-6:nth-of-type(2n+2) .rock-demo-img  .rockDemoShapeLeft{
           right: -40px;
}
.rock-demo-box:hover .rock-demo-img .rockDemoShapeLeft, .rock-demo-box:hover .rock-demo-img .rockDemoShapeRight{
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -31, 0, 1.2);
}
span.new-demo {
    position: absolute;
    top: 25px;
    left: 0px;
    color: rgb(255, 255, 255);
    font-size: 18px;
    font-weight: 500;
    background: rgb(255, 0, 180);
    padding: 1px 10px;
    border-radius: 0px 15px 15px 0px;
    animation: 1.5s ease-in-out 0s infinite normal none running pulseNew;
}
.rock-demo-box p{
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding-top: 40px;
    transition: all 0.3s;
}
.rock-demo-box p span {
    width: 50px;
    height: 32px;
    background: transparent;
    border-radius: 5px;
    border: 1px solid #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}
.rock-demo-box p:hover{
    letter-spacing: 1px;
}
.rock-demo-box p:hover span{
    background-color: #FF00B4;
    border: 1px solid #FF00B4;
}
/* Demo css end */

/* Color Option change css start */
.rock-bg-color-option-wrapper{
    background-image: url(../images/color-option-bg.jpg);
}
.rock-bg-color-option-wrapper .container{
    max-width: 1200px;
}
.rock-color-option-parent{
    padding-top: 60px;
    position: relative;
    text-align: center;
}
.rock-color-option-img{
    margin-bottom: 50px;
}
.rock-color-option-img:last-child{
    margin-bottom: 0;
}
.rock-color-option-img > img{
    border-radius: 20px;
}
.rock-color-option-img p {    
    max-width: 380px;
    width: 100%;
    min-height: 65px;
    margin: auto;
    background-color: #FF00B4;
    border-radius: 0 0 5px 5px;
    padding: 0 20px;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    text-transform: capitalize;
    display: flex;
    justify-content: center;
    align-items: center;
}
.rock-color-option-parent > img{
    position: absolute;
    top: 47%;    
    left: -70px;
    animation: 4s installation infinite alternate;
}
@keyframes installation {
    0% {
        transform: translateY(0px);        
    }
    50% {
        transform: translateY(-20px);        
    }
}
/* Color Option change css end */

/* Inner pages section css start */
.rock-inner-pages-wrapper{
    background-image: url(../images/inner-pages-bg.jpg);
    padding-bottom: 0;
}
.rock-inner-pages-parent{
    padding-top: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;    
}
.rock-inner-pages-img a {
    display: block;
}
.rock-inner-pages-div{
    position: relative;
    overflow: hidden;
}
.rock-inner-pages-div img {
    width: 100%;
    border-radius: 8px;
    transition: all 0.5s;
}
.rock-inner-pages-div:hover img{
    transform: scale(1.1);
}
.rockInnerPageTwo{
    margin-top: 25px;
}
.rock-podcast-smoke-canvas {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0.07;
    z-index: 9999;
    pointer-events: none;
}
/* Inner pages section css end */

/* Responsive section css start */
.rock-responsive-wrapper{
    background-image: url(../images/responsive-bg.jpg);
    padding-bottom: 0;
}
/* Responsive section css end */

/* Feature section css start */
.rock-feature-wrapper {
    background-image: url(../images/feat-bg.jpg);
    margin-top: -10px;
}
.rock-feature-wrapper .container{
    max-width: 1170px;
}
.rock-feat-parent{
    padding-top: 60px;
}
.rock-feat-parent .row{
    justify-content: center;
}
.rock-feat-box{
    background: rgba(28, 7, 39, 0.46);
    border: 1px solid rgba(255, 255, 255, 0.09);
    min-height: 200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    text-align: center;
}
.rock-feat-box p{
    font-size: 18px;
    font-weight: 500;
    color: #fff;
}
.rock-feat-box:hover img {
    -webkit-animation-name: wobble-vertical;
    animation-name: wobble-vertical;
    -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;
}
@keyframes wobble-vertical {
    16.65% {
        -webkit-transform: translateY(8px);
        transform: translateY(8px);
    }
    33.3% {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px);
    }
    49.95% {
        -webkit-transform: translateY(4px);
        transform: translateY(4px);
    }
    66.6% {
        -webkit-transform: translateY(-2px);
        transform: translateY(-2px);
    }
    83.25% {
        -webkit-transform: translateY(1px);
        transform: translateY(1px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
/* Feature section css end */

/* Footer section css start */
.rock-footer-wrapper{
    background-image: url(../images/footer-bg.jpg);
}
.rock-footer-content h2 {
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    text-transform: capitalize;
    padding: 25px 0 15px 0;
}
.rock-footer-content h1 {
    font-size: 50px;
    font-weight: 700;
    color: #fff;
    text-transform: capitalize;
    padding-bottom: 30px;
}
.rock-footer-content .rock-btn{
    min-width: 160px;
    min-height: 55px;
}
/* Footer section css end */

/* Copyright section css start */
.rock-copyright-wrapper{
    background: #0C0211;
}
.rock-copyright-wrapper p{
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    padding: 15px 0;
}
/* Copyright section css end */

/* ========================== Responsive css start =========================== */
@media(max-width:1350px){
    .rock-color-option-parent > img {        
        top: 47.7%;
        left: 0;
        width: auto;
        height: 100px;
    }
}
@media(max-width:1199px){
    .rock-demo-img .rockDemoShapeLeft {        
        bottom: -15px;
        left: -15px;
    }
    .rock-demo-img .rockDemoShapeRight {
        bottom: -15px;
        right: -25px;
    }
    .rock-color-option-parent > img{
        display: none;
    }
    .rock-inner-pages-parent {
        gap: 15px;
    }
    .rockInnerPageTwo {
        margin-top: 15px;
    }
}
@media(max-width:1024px){
    .rock-feat-box p {
        font-size: 16px;     
    }
}
@media(max-width:991px){
    .rock-banner-wrapper {     
        padding: 150px 0;
    }
    .rock-banner-content h1 {
        font-size: 50px;
        line-height: 1.2;
        padding: 40px 0 25px 0;
    }
    .rock-banner-content p {
        max-width: 615px;     
    }
    .rock-demo-img .rockDemoShapeLeft {
        bottom: -30px;
        left: -40px;
    }
    .rock-demo-img .rockDemoShapeRight {
        bottom: -30px;
        right: 10px;
    }
    .rock-inner-pages-parent {        
        flex-wrap: wrap;
    }
}
@media(max-width:767px){
    .rock-banner-wrapper {
        padding: 100px 0;
        background-position: unset;
    }
    .rock-banner-content h1 {
        font-size: 39px;        
        padding: 30px 0 25px 0;
    }
    .rock-demo-img .rockDemoShapeLeft {
        bottom: -22px;
        left: -30px;
    }
    .rock-demo-img .rockDemoShapeRight {
        bottom: -22px;
        right: -30px;
    }
    .rock-heading {
        font-size: 25px;
    }
    .rock-demo-parent, .rock-color-option-parent, .rock-feat-parent{
        padding-top: 40px;
    }
    .rock-inner-pages-img {
        flex: 0 0 32%;
    }
    .rock-inner-pages-parent {
        padding-top: 40px;
        align-items: flex-start;
    }
    .rock-res-img {
        margin-top: 20px;
    }
    .rock-footer-content > img {
        width: 160px;
        height: auto;
    }
    .rock-footer-content h2 {
        font-size: 30px;
    }
    .rock-footer-content h1 {
        font-size: 40px;
    }
}
@media(max-width:575px){
    .rock-demo-img .rockDemoShapeLeft, .rock-demo-img .rockDemoShapeRight{
        display: none;
    }
    .rock-demo-box p {
        padding-top: 20px;
    }    
    .rock-heading {
        font-size: 23px;
    }
    .rock-inner-pages-img {
        flex: 0 0 48%;
    }
}
@media(max-width:480px){
    .rock-bg-cover {
        padding: 50px 0;
    }
    .rock-heading {
        font-size: 20px;
    }
    .rock-banner-wrapper {
        padding: 50px 0;     
    }
    .rock-logo a img {
        max-width: 200px;
        height: auto;
    }
    .rock-banner-content h1 {
        font-size: 34px;
        padding: 20px 0 15px 0;
    }
    .rock-banner-content p {     
        font-size: 15px;
    }
    .rock-banner-btns {        
        gap: 20px;
        margin-top: 30px;
    }
    .rock-banner-btns .rock-btn {
        min-height: 45px;
        min-width: 120px;
        padding: 0 20px;
        font-size: 15px;
        font-weight: 500;
    }
    .rock-demo-parent, .rock-color-option-parent, .rock-inner-pages-parent, .rock-feat-parent {
        padding-top: 30px;
    }
    .rock-demo-box p {
        font-size: 16px;
        gap: 10px;
        padding-top: 15px;
    }
    .rock-demo-box p span {
        width: 45px;
        height: 30px;
    }
    .rock-demo-wrapper, .rock-responsive-wrapper {        
        padding-bottom: 0px;
    }
    .rock-color-option-img p {
        max-width: 300px;        
        min-height: 50px;
        font-size: 16px;
    }
    .rock-color-option-img {
        margin-bottom: 30px;
    }
    .rock-feat-box {
        min-height: 160px;
        padding: 0 10px;
    }
    .rock-feat-box > img {
        width: 80px;
        height: auto;
    }
    .rock-feat-box p {
        font-size: 14px;
    }
    .rock-footer-content > img {
        width: 130px;        
    }
    .rock-footer-content h2 {
        font-size: 25px;
        padding: 20px 0 10px 0;
    }
    .rock-footer-content h1 {
        font-size: 32px;
        padding-bottom: 20px;
    }
    .rock-footer-content .rock-btn {
        min-width: 130px;
        min-height: 45px;
    }
    .rock-copyright-wrapper p {
        font-size: 12px;
        padding: 10px 0;
    }
}
@media(max-width:425px){
    .rock-banner-wrapper {
        padding: 30px 0 50px;
    }
    .rock-banner-content h1 {
        font-size: 25px;
        padding: 20px 0 15px 0;
    }
    .rock-banner-content p {
        font-size: 12px;
    }
    .rock-banner-btns {
        gap: 10px;
        margin-top: 20px;
    }
    .rock-demo-box p {
        font-size: 15px;     
    }
    .rock-demo-box p span {
        width: 40px;
        height: 25px;
    }
    .rock-heading {
        font-size: 18px;
    }
    .rock-color-option-img p {
        max-width: 250px;
        min-height: 40px;
        font-size: 15px;
    }
}
@media(max-width:375px){
    .rock-inner-pages-img {
        flex: 0 0 100%;
    }
    .rock-inner-pages-parent {
        padding: 30px 15px 0 15px;
        align-items: flex-start;
    }
    .rock-footer-content > img {
        width: 110px;
    }
    .rock-footer-content h2 {
        font-size: 20px;     
    }
    .rock-footer-content h1 {
        font-size: 28px;
    }
    .rock-footer-content .rock-btn {
        min-width: 120px;
        min-height: 45px;
    }
}
/* ========================== Responsive css end ============================= */