/*--------------------- Copyright (c) 2024 ----------------------- 
[Master Stylesheet] 
Project: Legal Provisional WordPress Plugin
Version: 1.0.0
Author: 
 ------------------------------------------------------------------- 
[Table of contents] 
	1. Global CSS Start
	2. Comman CSS Start
        -- Header CSS Start
        -- Footer CSS Start
	3. Main CSS Start
	4. Responsive CSS Start
-------------------------------------------------------------------*/
/* 1. Global CSS Start */
:root {
    --pxl-global-family: 'Inter', sans-serif;
    --pxl-global-color: #52576c;
    --pxl-global-size: 16px;
    --pxl-title-family: 'Inter', sans-serif;
    --pxl-title-color: #121212;
    --pxl-title-size: 32px;
    --pxl-body-bg: #ffffff;
    --pxl-primary-color: #C3955C;
    --pxl-white: #ffffff;
    --pxl-transition: all 0.3s;
    --pxl-border-color: #e7edf3;
    --pxl-main-body-color:#04050e;
}
* {
    outline: 0 !important;
}
body {
    font-family: var(--pxl-global-family);
    font-weight: 500;
    font-size: var(--pxl-global-size);
    line-height: 1.8;
    background: var( --pxl-main-body-color);
    color: var(--pxl-global-color);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
body::-webkit-scrollbar {
    width: 6px;
    box-shadow: none;
}

body::-webkit-scrollbar-track {
    background-color: #f5f5f5;
    box-shadow: none;
}
body::-webkit-scrollbar-thumb {
    background-color: var(--pxl-primary-color);
    box-shadow: none;
}
a {
    color: var(--pxl-global-color);
}
,
a:hover,
a:focus,
button,
button:hover {
    color: var(--pxl-primary-color);
}
a:visited{
    color:var(--pxl-white) !important;
}
a,
a:hover,
a:focus,
button,
button:hover {
    text-decoration: none;
    -webkit-transition: var(--pxl-transition);
    -moz-transition: var(--pxl-transition);
    -ms-transition: var(--pxl-transition);
    -o-transition: var(--pxl-transition);
    transition: var(--pxl-transition);
}
img {
    max-width: 100%;
    height: auto;
}
.text-center {
    text-align: center;
}
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}
input,
textarea,
select,
button,
button:focus,
button:hover,
label,
.form-control:focus {
    box-shadow: none;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 10px;
    color: var(--pxl-title-color);
    text-transform: capitalize;
    font-family: var( --pxl-title-family);
    line-height: 1.2;
}
strong {
    font-weight: 700;
}
ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* btn*/
.pxl-btn {
    background: var(--pxl-primary-color);
    padding: 14px 20px;
    border-radius: 8px;
    color: var(--pxl-white);
    min-width: 180px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    box-shadow: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    border: 0;
}

.pxl-btn:before {
    content: "";
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #fff;
    height: 100%;
    position: absolute;
    width: 100%;
    left: 50%;
    top: 50%;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.pxl-btn:hover:before {
    -webkit-transform: scale(3);
    -moz-transform: scale(3);
    -ms-transform: scale(3);
    -o-transform: scale(3);
    transform: scale(3);
}

.pxl-btn:hover {
    background: var(--pxl-title-color);
    color: #000 !important ;
    border-color: var(--pxl-title-color);
}

.pxl-btn,
.pxl-btn:hover,
.pxl-btn:focus {
    -webkit-transition: var(--pxl-transition);
    -moz-transition: var(--pxl-transition);
    -ms-transition: var(--pxl-transition);
    -o-transition: var(--pxl-transition);
    transition: var(--pxl-transition);
}

.pxl-dark-btn {
    background: transparent;
    color: var(--pxl-white);
    border-color: var(--pxl-title-color);
    border: 1px solid var(--pxl-white);
    padding: 14px 20px;
    border-radius: 8px;
    color: var(--pxl-white);
    min-width: 180px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    box-shadow: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.pxl-dark-btn:hover {
    color: var(--pxl-primary-color);
    border-color: var(--pxl-primary-color);
}

.pxl-btn span {
    position: relative;
}

.pxl-btn:hover span{
    color: var(--pxl-primary-color);
}

.pxl-container {
    max-width: 1820px;
    padding: 0 15px;
    margin: auto;
}

/* Main CSS*/
/* header css start */
.pxl-header-wrapper.pxl-header-fixed {
    position: fixed;
    z-index: 9;
    top: 0px;
    background-color: rgba(0,4,36,1);
    padding: 12px 0px;
    /* transition: all 0.5s ease-in; */
}
.pxl-header-wrapper {
    position: absolute;
    top: 30px;
    right: 0;
    left: 0;
    z-index: 9;
    padding: 10px 0px;
  }
  .pxl-navbar-wrapper {
    display: flex;
    align-items: center;
  }
  .pxl-brand-logo a img {
    max-width: 285px;
    max-height: 44px;
    object-fit: contain;
  }
  .pxl-navbar-menu {
    margin-left: auto;
  }
  .pxl-navbar-menu .responsive-logo a img {
    display: none;
  }
  .pxl-navbar-menu ul{
    display: flex;
    align-items: center;
  }
  .pxl-navbar-menu ul li {
    display: inline-block;
    margin-right: 40px;
  }

  .pxl-navbar-menu ul li:last-child {
    margin-right: 0;
  }
  .pxl-navbar-menu ul li a {
    color: var(--pxl-white);
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    display: inline-block;
  }
  .pxl-navbar-menu ul li a:hover {
    color: var(--pxl-primary-color);
  }
  .pxl-navbar-menu ul li.start-earning a:hover{
    color: var(--pxl-white) !important;
}
.animated {
    -webkit-animation-duration: 1.25s;
    animation-duration: 1.25s;
  }
  
  .fadeInDown {
    animation-name: fadeInDown;
  }
  
  .fadeInLeft {
    animation-name: fadeInLeft;
  }
/* header css end  */

/* Banner CSS */
.pxl-banner-wrapper {
    /* background: linear-gradient(180deg, rgb(8 106 221 / 6%) 0%, transparent 100%); */
    position: relative;
    padding: 200px 0px 80px 0;
    background-image: url('../images/bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
    text-align: center;
    overflow-x: hidden;
}
.pxl-banner-wrapper:before {
    content: '';
    background-image: url(../images/bg-ani.png);
    background-repeat: no-repeat;
    background-position: center;    
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    animation:4s installation infinite alternate;
}
.pxl-banranimation-image-one{
    position: absolute;
    left: 100px;
    top:150px;
    animation:4s rotate linear infinite;
    max-width: 120px;
}
.pxl-banranimation-image-two{
    position: absolute;
    top: 150px;
    right: 150px;
    animation:4s installation infinite alternate;
    max-width: 105px;
}

@keyframes rotate {
	0% {
		transform: rotate(0deg);
	}
	50% {
		transform: rotate(20deg);
	}
}
@keyframes installation {
    0% {
        transform: translateY(0px);        
    }
    50% {
        transform: translateY(-20px);        
    }
}
.pxl-banner-img-wrap {
    width: 100%;
    text-align: center;
    max-width: 1140px;
    margin: 0 auto;
}
.logo {
    margin: 0 0 33px;
}
.logo img {
    max-height: 60px;
}
.pxl-banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.pxl-banner-sub-title span {
    font-size: 18px;
    font-weight: 500;
    display: inline-block;
    padding: 15px 40px;
    width: fit-content;
    text-align: center;
    border-radius: 10px;
    background: #C3955C;
    color: #ffffff;
    position: relative;
    box-shadow: rgb(195 149 92 / 20%) 10px 10px 0px 0px, rgb(195 149 92 / 8%) 20px 20px 0px 0px;
}
.pxl-banner-sub-title span:before {
    content: "";
    position: absolute;
    left: 0;
    height: 50%;
    width: 10px;
    background: #ffffff;
    border-radius: 0px 6px 6px 0px;
}
.pxl-banner-sub-title span:after {
    content: "";
    position: absolute;
    right: 20px;
    height: 8px;
    width: 8px;
    background: #ffffff;
    border-radius: 40px;
    margin: auto;
    top: 1px;
    bottom: 0;
}
.pxl-banner-sub-title {
    margin: 0 0 30px;
}
.pxl-banner-content-row {
    max-width: 1010px;
    margin: 0 auto;
}
.pxl-banner-title {
    font-size: 56px;
    font-weight: 800;
    margin: 0 0 14px;
    line-height: 1.4;
    color: var(--pxl-primary-color);
    background: linear-gradient(to right, #FFD5A0 0%, #ffe0ba 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;

}
.pxl-banner-content .pxl-dual-btn {
    display: flex;
    flex-wrap: wrap;
    margin: 40px 0 40px;
    align-items: center;
    grid-gap: 10px 20px;
    justify-content: center;
}
.pxl-banner-content-row p {
    font-weight: 500;
    font-size: 18px;
    color: #C7C7C7;
}
/* Tilte*/

.pxl-title {
    margin: 0 auto 50px;
    max-width: 675px;
}
.pxl-title h2 {
    position: relative;
    font-size: 36px;
    display: inline-block;
    margin: 0;
    line-height:50px;
    font-weight: 700;
    color: var(--pxl-white);
}
.pxl-title h4 {
    display: inline-block;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1px;
   color: var(--pxl-primary-color);
}
.pxl-title-line {
    display: inline-block;
    height: 3px;
    width: 100%;
    max-width: 100px;
    background: var(--pxl-primary-color);
    border-radius: 50px;
    position: relative;
}
.pxl-pugin-highlighters .pxl-title{
    margin-bottom: 100px;
}
/* Setps */
.spacer {
    padding: 71px 0 50px;
}
.pxl-steps-wrapper {
    /* background: #ecf3fc; */
    background-color: #000424;
}
.pxl-steps-section {
    text-align: center;
    margin: 0 0 22px;
    overflow:hidden;
    max-width:370px;
}

.pxl-step-img {
    margin: 0 0 20px;
}

.pxl-steps-section h4 {
    font-size: 22px;
    font-weight: 700;
    margin: 0px 0 10px;
}

.pxl-steps-section p {
    margin: auto;
    max-width: 230px;
}
.pxl-rowone{
    max-width: 1440px;
    margin: 0 auto;
}

p {
    margin: 0;
}

.pxl-lead-content {
    max-width: 480px;
}
.pxl-lead-content h6 {
    /* display: inline-block; */
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
  color: var(--pxl-primary-color);
    text-align: left;
}
/*.pxl-steps-section:hover .pxl-step-img img {*/
/*    animation: zoom-in-zoom-out 1.5s ease-out infinite;*/
/*}*/

.pxl-steps-section:hover {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
}

.pxl-steps-section:hover,
.pxl-steps-section,
.pxl-steps-section:hover h4,
.pxl-steps-section h4 {
    -webkit-transition: var(--pxl-transition);
    -moz-transition: var(--pxl-transition);
    -ms-transition: var(--pxl-transition);
    -o-transition: var(--pxl-transition);
    transition: var(--pxl-transition);
}
.pxl-steps-section h4 {
    color: var(--pxl-white);
}
.pxl-steps-section:hover h4 {
    color: var(--pxl-primary-color);
}
.pxl-steps-section p{
    color:#C7C7C7;
}

@-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 section css start  */
.pxl-customer-wrapper {
    position: relative;
    padding: 80px 15px;
    background-color: #000424;
    background-image: url(../images/time-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}
.pxl-happy-customers-heading{
    text-align: center;
}
.pxl-happy-customers-heading h1 {
    font-size: 46px;
    font-weight: 900;
    background: -webkit-linear-gradient( 58deg, #7ef6ab 17%, #1dd4eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: fit-content;
    margin: 0 auto;
}
.pxl-happy-customers-heading p {
    font-size: 24px;
    color: #c2c9de;
    padding: 20px 0px 46px;
}

.pxl-happy-customers-heading h2 {
    font-size: 60px;
    font-weight: 800;
    /* background: -webkit-linear-gradient(58deg, #ffa61e -33%, #fd9a01); */
    background-color: var(--pxl-primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 38px 0px 0px;
    width: fit-content;
    margin: 0 auto;
    background: linear-gradient(to right, #FFD5A0 0%, #C69860 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.demo {
    font-size: 120px;
    color: #ffffff;
    font-weight: 800;
    background: -webkit-linear-gradient( 30deg, #7ef6ab -27%, #1dd4eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    padding: 5px 0px 39px;
    width: fit-content;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
}
.pxl-happy-customers-heading.aos-init.aos-animate a {
    color: white;
    border-radius: 50px;
    padding: 15px 40px;
    font-size: 20px;
    background-color: rgba(255, 255, 255, 0.06);
    border: 2px solid rgba(255, 255, 255, 0.12);
    z-index: 1;
    position: relative;
    pointer-events: none;
}
.carousel-wrapper {
    --width: 590px;
    --gap: 0;
    --num-items: 10;
    --ani-offset: calc(var(--width) * var(--num-items) * -1);
    --ani-speed: 40s;
    overflow: hidden;
    position: relative;
  }
  .carousel-wrapper::before,
  .carousel-wrapper::after{
    content: '';
    position: absolute;
    width: 20%;
    height: 100%;
    z-index: 1;
    top: 0;
  }
  .carousel-wrapper::before{
    left: 0;
    background-image: linear-gradient(to right,var(--bg-clr) 0%,transparent 50%);
  }
  .carousel-wrapper::after{
    right: 0;
    background-image: linear-gradient(to left,var(--bg-clr) 0%,transparent 50%);
  }
  
  .carousel {
    display: flex;
    align-items: center;
    animation: slide var(--ani-speed) linear infinite;
  }
  .item{
    flex: 1 0 var(--width);
    text-align: center;
    padding:1rem;
  }
  @keyframes slide {
    100% {
      transform: translateX(var(--ani-offset));
    }
  }
/* customer section end  */

/* Call To Action */

.pxl-lead-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 15px;
    max-width: 480px;
    color: var(--pxl-white);
    text-align: left;
}
.pxl-lead-content p{
    color: #C7C7C7;
    text-align: left;
}
.pxl-lead-wrapper {
    padding: 40px 0 0;
}

.pxl-lead-wrapper .row {
    align-items: flex-end;
}

.pxl-video-wrapper .pxl-lead-content h3,
.pxl-video-wrapper .pxl-lead-content {
    max-width: 520px;
}

.pxl-video-wrapper {
    padding: 79px 0 36px;
}

.pxl-customize-wrapper {
    padding: 71px 0 30px;
    background-image: url('../images/time-bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    text-align: center;
    overflow-x: hidden;
}
.pxl-customize-wrapper:before {
    content: '';
    /* background-image: url(../images/bg-ani.png); */
    background-repeat: no-repeat;
    background-position: center;    
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    animation:4s installation infinite alternate;
}

.pxl-lead-content .pxl-btn {
    margin: 31px 0 0;
}
.pxl-introl-section {
    /* background: #eff4f9; */
    /* margin: 0 0 50px;
    border-radius: 10px;
    padding: 50px 40px; */
}
.pxl-custmize-image-one{
    position: absolute;
    bottom: 100px;
    left: 30px;
    animation: 4s rotate linear infinite;
}
.pxl-custmize-image-four{
    position: absolute;
    bottom: 100px;
    right: 30px;
    animation: 4s installation infinite alternate;
}
.pxl-custmize-image-three{
    position: absolute;
    top: 100px;
    left: 30px;
    animation: 4s installation infinite alternate;
}
.pxl-custmize-image-two{
    position: absolute;
    top: 100px;
    right: 30px;
    animation: 4s rotate linear infinite;
}
.pxl-custmize-image-five{
    position: absolute;
    top: 50%;
    right: -10px;
    margin: auto 0;
    animation: 4s installation infinite alternate;
}
/* Feature*/

.pxl-features-wrapper {
    padding: 80px 0px;
    background: #000424;
    position: relative;
}
.pxl-feature-section {
    text-align: center;
    border-radius: 10px;
    background-color: #f3f9ff;
    padding: 45px 15px 46px 15px;
    /* margin-bottom: 30px; */
    transition: 0.3s;
    -o-transition: 0.3s;
    -moz-transition: 0.3s;
    -webkit-transition: 0.3s;
    transform: translateY(0px);
    /* box-shadow: 0 10px 70px 0 rgb(103 151 255 / 8%), 0 15px 105px 0 rgb(103 151 255 / 8%); */
    background-color: rgba(255,255,255,0.06);
    flex:0 0 23%;
}

.pxl-feature-img-icon {
    margin: 0 0 -6px;
    display: inline-block;
}

.pxl-feature-section:hover {
    box-shadow: 0 51px 63px 0px rgb(11 44 60 / 9%);
    transform: translateY(-10px);
}

.pxl-feature-section:hover,
.pxl-feature-section,
.pxl-feature-section:hover .pxl-feature-title h4,
.pxl-feature-section .pxl-feature-title h4,
.pxl-feature-section:hover .pxl-feature-img-icon img,
.pxl-feature-section .pxl-feature-img-icon img {
    -webkit-transition: var(--pxl-transition);
    -moz-transition: var(--pxl-transition);
    -ms-transition: var(--pxl-transition);
    -o-transition: var(--pxl-transition);
    transition: var(--pxl-transition);
}

.pxl-feature-title h4 {
    font-size: 18px;
    color:var(--pxl-white);
    font-weight: 400;
    margin: 0;
}
.pxl-last-feature{
    grid-column: 2;
    grid-row: 2;

}
.pxl-feature-section:hover .pxl-feature-title h4 {
    /* color: var(--pxl-title-color); */
}

.pxl-feature-section:hover .pxl-feature-img-icon 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;
}
.pxl-step-inner{
    background-color: rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 30px 20px;
    max-width: 370px;
    width: 100%;
    transition: all 1s ease-in-out;
}
.pxl-step-inner .pxl-step-img{
transition: all 0.5s;
}
.pxl-step-inner:hover .pxl-step-img{
    transform: scale(1.1);
}
.arrow-img {
    position: relative;
}

.arrow-img:before {
    content: "";
    background: url(../images/arrow.png);
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    height: 70px;
    width: 120px;
    right: -100px;
    bottom: 0px;
    top:0px;
    margin: auto;
    background-size: auto;
}

.arrow-img:after {
    content: "";
    background: url(../images/arrow.png);
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    height: 70px;
    width: 120px;
    left: -130px;
    top: 0px;
    bottom: 0px;
    margin: auto;
    background-size: auto;
}
.pxl-step-inner .pxl-para{
    min-height: 115px
}
.pxl-steps-wrapper .pxl-title{
    margin: unset;
}
.pxl-steps-wrapper .pxl-rowone{
    align-items: center;
    margin-bottom: 50px;
}
.pxl-steps-wrapper .pxl-rowtwo{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 115px;
}
.pxl-steps-wrapper .pxl-step-para{
    color: #C7C7C7;
    margin-left: 115px;
    font-size: 17px;
}
.pxl-footer-widget img {
    max-height: 50px;
}

.pxl-prebuild-temp-wrapper {
    padding: 96px 0 48px;
}

.pxl-prebuild-temp-wrapper .row {
    align-items: center;
}

.pxl-prebuild-temp-wrapper .pxl-lead-content {
    margin-bottom: 30px;
}

.pxl-prebuild-temp-wrapper .pxl-lead-img {
    margin-bottom: 20px;
}

.pxl-customize-wrapper.section-one {
    padding: 30px 0 0;
}

.pxl-customize-wrapper.section-one .pxl-lead-img {
    margin: 0px -20px -42px 0;
}

.pxl-customize-wrapper.section-one .pxl-lead-img {
    position: relative;
}

.pxl-customize-wrapper.section-one .pxl-lead-img img {
    position: relative;
    z-index: 2;
}

.pxl-shapes ul li {
    position: absolute;
    z-index: 1;
}

.pxl-shapes ul li:first-child {
    right: 40px;
    top: 0;
    bottom: 120px;
    margin: auto;
    height: 40px;
    animation: zoom-in-zoom-out 4s ease-out infinite;
}

.pxl-shapes ul li:nth-child(2) {
    bottom: 180px;
    animation: zoom-in-zoom-out 2s ease-out infinite;
    left: 0;
}

.pxl-shapes ul li:nth-child(3) {
    top: 40px;
    left: 60px;
    animation: zoom-in-zoom-out 3s ease-out infinite;
}

section .pxl-btn {
    padding: 11px 0;
}

.pxl-customize-wrapper.section-one .row {
    align-items: center;
}

.pxl-lead-img {
    position: relative;
    padding: 6px;
    border-radius: 10px;
    margin: 0 0 ;
}

.pxl-video-shapes ul li {
    position: absolute;
}

.pxl-video-shapes ul li:first-child {
    right: -30px;
    top: -25px;
    animation: 3s rotation linear infinite;
}

.pxl-video-shapes ul li:nth-child(2) {
    bottom: -100px;
    right: -10px;
    animation: 2s rotation linear infinite;
}

.pxl-video-shapes ul li:nth-child(3) {
    top: -50px;
    left: 0;
    animation: 4s rotation linear infinite;
}

.pxl-feature-img img{
    position: sticky;
    top:0px;
}
.pxl-fet-wrap{
    position: relative;
}
.pxll-row{
    display: grid;
    grid-template-columns: 1fr 1fr ;
    gap: 60px;
}
/* Lead Icons */

.pxl-lead-wrapper.main-lead .pxl-lead-img {
    padding: 80px 0 0;
    text-align: center;
}

.pxl-lead-icons ul li {
    position: absolute;
}

.pxl-lead-icons ul li:first-child {
    left: 0;
    top: 60px;
    z-index: 1;
}

.pxl-lead-icons ul li:nth-child(2) {
    top: 23%;
    z-index: 1;
    right: 13%;
    transform: rotate(281deg);
}

.pxl-lead-icons ul li:nth-child(3) {
    top: -20px;
    left: -40px;
    animation: 4s zoom-in-zoom-out linear infinite;
}

.pxl-lead-icons ul li:nth-child(4) {
    top: 0;
    right: 0;
    animation: 8s zoom-in-zoom-out linear infinite;
}
.pxl-feature-inner {
    display: grid;
    grid-template-columns:  1fr;
    grid-gap: 15px;
    align-items: center;
}
.pxl-feature-row {
  display: flex;
  flex-wrap: wrap;
    gap: 20px;

}
.pxl-feature-row .pxl-title{
    margin: 0px 0px 30px;
}
/* Animation*/

@keyframes rotation {
    0% {
        -webkit-transform: rotate(0deg) translate(-5px) rotate(0deg);
        -moz-transform: rotate(0deg) translate(-5px) rotate(0deg);
        -ms-transform: rotate(0deg) translate(-5px) rotate(0deg);
        -o-transform: rotate(0deg) translate(-5px) rotate(0deg);
        transform: rotate(0deg) translate(-5px) rotate(0deg);
        transition: 1s ease-in-out;
    }
    100% {
        -webkit-transform: rotate(360deg) translate(-5px) rotate(-360deg);
        -moz-transform: rotate(360deg) translate(-5px) rotate(-360deg);
        -ms-transform: rotate(360deg) translate(-5px) rotate(-360deg);
        -o-transform: rotate(360deg) translate(-5px) rotate(-360deg);
        transform: rotate(360deg) translate(-5px) rotate(-360deg);
        transition: 1s ease-in-out;
    }
}

@keyframes rotationReverse {
    0% {
        -webkit-transform: rotate(0deg) translate(-5px) rotate(0deg);
        -moz-transform: rotate(0deg) translate(-5px) rotate(0deg);
        -ms-transform: rotate(0deg) translate(-5px) rotate(0deg);
        -o-transform: rotate(0deg) translate(-5px) rotate(0deg);
        transform: rotate(0deg) translate(-5px) rotate(0deg);
        transition: 1s ease-in-out;
    }
    100% {
        -webkit-transform: rotate(-360deg) translate(-5px) rotate(360deg);
        -moz-transform: rotate(-360deg) translate(-5px) rotate(360deg);
        -ms-transform: rotate(-360deg) translate(-5px) rotate(360deg);
        -o-transform: rotate(-360deg) translate(-5px) rotate(360deg);
        transform: rotate(-360deg) translate(-5px) rotate(360deg);
        transition: 1s ease-in-out;
    }
}

@keyframes zoom-in-zoom-out {
    0% {
        transform: scale(.95, .95);
    }
    50% {
        transform: scale(1, 1);
    }
    100% {
        transform: scale(.95, .95);
    }
}

@keyframes updown {
    0% {
        transform: translateY(-10px);
    }
    50% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-10px);
    }
}

@keyframes downup {
    0% {
        transform: translateY(10px);
    }
    50% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(10px);
    }
}

@-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);
    }
}
.pxl-screenshots-wrapper .pxl-title {
    margin-bottom: 20px;
}

/* Footer */

.pxl-footer-wrapper {
    text-align: center;
}

.pxl-main-footer {
    background: #e5f1fd;
    background: url(../images/footer-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 80px 0 72px;
    
}
.pxl-footer-widget .pxl-dual-btn {
    margin: 30px 0 0;
}
.pxl-footer-logo {
    margin: 0 0 27px;
}

.pxl-footer-widget p {
    font-size: 18px;
    margin: auto;
    max-width: 726px;
    color: var(--pxl-white);
    margin-top: 15px;
}
.pxl-footer-widget {
    max-width: 889px;
    margin: auto;
}
.pxl-footer-widget h4 {
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 0px;
    line-height: 1.6;
    color: var(--pxl-primary-color);
}
.pxl-footer-copyright {
    padding: 15px 0px;
    background: #02030F;
    color: var(--pxl-white);
}
.pxl-footer-copyright p {
    margin: 0;
}
.pxl-footer-copyright a {
    color: var(--pxl-white) !important;
    text-decoration: underline;
}

/** Top Button CSS **/

#scroll {
    position: fixed;
    right: 15px;
    bottom: 15px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 40px;
    z-index: 9;
    visibility: hidden;
    -webkit-transform: translateY(150px);
    -ms-transform: translateY(150px);
    transform: translateY(150px);
    background: var(--pxl-primary-color);
    color: var(--pxl-white);
    font-size: 40px;
    border-radius: 50%;
}

#scroll.active {
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    animation: bounce 2s;
    -webkit-animation: bounce 2s;
    -moz-animation: bounce 2s;
}

#scroll img {
    height: 30px;
}

@keyframes bounce {
    0%,
    100% {
        transform: translateY(-20px);
    }
    50% {
        transform: translateY(0px);
    }
}


/* Preloader */

.preloader {
    background-color: #ffffff;
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 2147483647;
    width: 100%;
    height: 100%;
}

.status {
    background-position: center center;
    background-repeat: no-repeat;
    height: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}
.pxl-video-wrapper .row {
    align-items: center;
}
.pxl-video-wrapper {
    padding: 127px 0 131px;
}
.main-wrapper {
    overflow: hidden;
}
/* highlighters */
.pxl-pugin-highlighters {
    padding: 80px 0 0px;
}
.pxl-pugin-highlighters-section {
    justify-content: center;
    max-width: 1440px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 20px;
}
.pxl-highliter-box {
    padding: 30px 30px;
    border-radius: 10px;
    font-weight: 600;
    text-transform: capitalize;
    max-width: 380px;
    width: 100%;
    font-size: 14px;
    /*background-image: url('../images/flw-img.png');*/
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background-color: rgba(255, 255, 255, 0.06);
    border: 2px solid rgba(255, 255, 255, 0.12);
}
.pxl-highliter-box {
    display:grid;
    grid-template-columns: 1fr;
}
.pxl-highliter-icon {
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pxl-highliter-icon img {
    height: 70px;
}
.pxl-highliter-content {
    /* width: calc(100% - 60px); */
    padding-left: 0px;
    color: var(--pxl-white);
    padding-top: 20px;
    font-weight: 400;
    font-size: 16px;
}
.pxl-highliter-box:hover {
    -webkit-transform: translateY(-6px);
    -moz-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    -o-transform: translateY(-6px);
    transform: translateY(-6px);
    /*border-color: var(--pxl-primary-color);*/
    color: var(--pxl-primary-color);
}
.pxl-highliter-box, .pxl-highliter-box:hover {
    -webkit-transition: var(--pxl-transition);
    -moz-transition: var(--pxl-transition);
    -ms-transition: var(--pxl-transition);
    -o-transition: var(--pxl-transition);
    transition: var(--pxl-transition);
}

/* FAQ */
.pxl-faq-wrapper {
    background: rgba(48, 48, 48,0.4);
    position: relative;
    padding: 100px 0px 100px;
    background-image: url('../images/faq-bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.pxl-faq-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: 100%;
}
.accordion-header .accordion-button {
    box-shadow: none !important;
    font-weight: 600;
}
.pxl-faqs .accordion {
    width: 100%;
}
.pxl-faqs {
    width: 100%;
}
.accordion-item {
    border: 0;
    margin: 0 0 20px;
    border-radius: 10px;
    overflow: hidden;
}
.accordion-header .accordion-button:not(.collapsed) {
    box-shadow: none !important;
    background: var(--pxl-primary-color);
    color: var(--pxl-white);
}
.accordion-header .accordion-button:after {
    content: "+";
    background: none;
    font-size: 25px;
    position: absolute;
    right: 15px;
    top: 10px;
    height: 30px;
    width: 30px;
    text-align: center;
    margin: 0;
    background: #ededed;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-weight: 600;
    border-radius: 3px;
    padding-bottom: 2px;
}
.accordion-header .accordion-button:not(.collapsed):after {
    content: "-";
    background: var(--pxl-white);
    color: var(--pxl-title-color);
}

/*===== Tabs =====*/

.pxl-tabs-container {
    display: flex;
    flex-wrap: wrap;
    padding: 30px 30px 30px;
    grid-gap: 20px;
    align-items: flex-start;
}
.pxl-tabs-content {
    width: calc(100% - 300px);
}
.pxl-tabs-nav {
    width: 100%;
    max-width: 280px;
    padding-top: 6px;
}

.pxl-tabs-nav li {
    margin: 0;
}
.pxl-tabs-nav li a {
    padding: 15px 20px;
    border-radius: 6px;
    text-transform: capitalize;
    color: var(--pxl-global-color);
    text-decoration: none;
    font-weight: 600;
    box-shadow: rgb(0 0 0 / 8%) 0px 0px 20px 0px;
    position: relative;
    width: 100%;
    text-align: left;
    border-top: 0px;
    border-right: 0px;
    border-left: 0px;
    border-image: initial;
    display: inline-block;
    border: 1px solid var(--pxl-border-color);
    margin: 0px 0px 20px;
    background: var(--pxl-white);
}
.pxl-tabs-nav li:last-of-type a{
    border: 0;
}
.pxl-tabs-nav li a:hover,
.pxl-tabs-nav li a:focus {
    color: var(--pxl-primary);
}
.pxl-tabs-nav .active a {
    background: var(--pxl-primary-color);
    color: var(--pxl-white);
}
.pxl-tabs-nav .active a:hover,
.pxl-tabs-nav .active a:focus {
    color: var(--pxl-white);
}
.pxl-tabs-nav li a span svg {
    height: 15px;
    fill: currentColor;
    width: 15px;
    display: inline-block;
    margin: 0 5px 0 0;
}
.pxl-tabs-nav li.active a:before,
.pxl-tabs-nav li a:before {
    -webkit-transition: .2s;
    -moz-transition: .2s;
    -ms-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
}
.pxl-main-wrapper a,
.pxl-main-wrapper a:hover,
.pxl-main-wrapper a:focus {
    -webkit-transition: var(--pxl-transition);
    -moz-transition: var(--pxl-transition);
    -ms-transition: var(--pxl-transition);
    -o-transition: var(--pxl-transition);
    transition: var(--pxl-transition);
}
.pxl-screenshots-wrapper {
    padding: 71px 0 30px;
}
.pxl-faq-img {
    margin: 0 0 30px;
    text-align: center;
}
/* Colors */

/** Responsive CSS Start **/

@media(min-width:1400px) {
    .container {
        max-width: 1200px;
    }
}

@media(max-width:1599.98px) {

}

@media(max-width:1399.98px) {
    .pxl-btn {
        padding: 10px 20px;
        min-width: 150px;
    }
}
@media(max-width:1350px) {
    .pxl-tabs-nav li a {
        margin: 0px 0px 15px;
    }
    .pxl-banner-title {
        font-size: 48px;
    }
}
@media(max-width:1199.98px) {
    .arrow-img:after,
    .arrow-img:before {
        display: none;
    }
    .pxl-title h2 {
        font-size: 32px;
    }
    .pxl-tabs-nav li a {
        margin: 0px 0px 10px;
        padding: 8px 20px;
    }
    .logo {
        margin: 0 0 10px;
    }
    .pxl-banner-sub-title span {
        font-size: 15px;
        padding: 10px 30px;
    }
    .pxl-banner-title {
        font-size: 42px;
    }
    .pxl-banner-sub-title span:after {
        right: 5px;
    }
    .pxl-steps-wrapper .pxl-rowtwo{
        gap: 35px;
    }
    .pxl-steps-section p {
        font-size: 14px;
    }
    .pxl-steps-section h4{
        font-size: 20px;
    }
}

@media(max-width:991.98px) {
    .pxl-footer-widget h4 {
        font-size: 26px;
        line-height: 1.4;
    }
    .pxl-prebuild-temp-wrapper .pxl-lead-img {
        text-align: center;
    }
    .pxl-lead-img {
        text-align: center;
    }
    .pxl-video-wrapper {
        padding: 77px 0 81px;
    }
    .pxl-lead-wrapper.main-lead .row {
        flex-direction: column-reverse;
    }
    .pxl-footer-widget p {
        font-size: 16px;
        margin: auto;
        max-width: 500px;
        margin-top: 15px;
    }
    .pxl-tabs-nav {
        max-width: 180px;
    }
    .pxl-tabs-content {
        width: calc(100% - 200px);
    }
    .pxl-tabs-nav li a {
        margin: 0px 0px 3px;
        padding: 4px 15px;
        font-size: 14px;
    }
    .pxl-banner-title {
        font-size: 32px;
    }
    .pxl-banner-content-row p {
        font-size: 14px;
        max-width: 740px;
    }
    .pxl-banner-sub-title {
        margin: 0 0 20px;
    }
    .cv_nav_btn span, .cv_res_logo{
		display: block;
	}

	.cv_nav_item ul {
	    position: fixed;
	    left: -280px;
	    top: 0;
	    height: 100vh;
	    background-color: #171c2a;
	    width: 280px;
	    padding: 30px 20px;
	    margin: 0;
	    z-index: 111;
	    transition: all 0.5s;
	    flex-direction: column;
	    gap: 20px;
	}

	.menu-open .cv_nav_item ul {
    	left: 0;
	}

	.cv_res_logo{
		margin-bottom: 20px;
	}

	.cv_nav_item ul li a {
	    padding: 0 0 10px;
	    width: 100%;
	    display: inline-flex;
	    border-bottom: 1px solid var(--cv-primary-color);
	}
    .pg-menu ul li {
        margin-right: 20px;
    }

    .pxl-navbar-menu .responsive-logo a img {
        display: block;
        padding-right: 20px;
      }
      .pxl-toggle-btn {
        display: block;
        position: absolute;
        right: 15px;
        top: 60px;
      }
      .pxl-brand-logo {
        width: 100%;
        padding: 15px;
        border-radius: 5px;
        position: relative;
      }
      .pxl-navbar-menu ul {
        position: fixed;
        top: 0px;
        left: -260px;
        width: 260px;
        height: 100%;
        height: 100vh;
        background-color: #000424;
        box-shadow: 1.5px 3.99px 27px 0px rgb(0 0 0 / 10%);
        transition: all 0.3s ease-in-out;
        padding: 0px 20px 20px;
        z-index: 9;
        flex-direction: column;
        text-align: left;
        align-items: unset;
      }
      .pxl-navbar-menu ul li {
        display: block;
        border-bottom: 1px solid #484444;
        margin-right: 0;
      }
      .pxl-navbar-menu ul li.start-earning a {
        background-color: transparent;
        border-radius: 0px;
        padding: 15px 0px;
        font-size: 16px;
        letter-spacing: 0px;
        text-transform: capitalize;
        display: block;
        text-align: left;
      }
      .pxl-navbar-menu ul li a {
        display: block;
        padding: 15px 0;
        color: var(--pxl-white);
        justify-content: left;
      }
      .pxl-navbar-menu ul li a:after {
        display: none;
      }
      .pxl-navbar-menu ul li a:before {
        display: none;
      }
      .pxl-toggle-btn span {
        width: 30px;
        height: 4px;
        background-color: var(--pxl-white);
        margin-bottom: 5px;
        display: block;
        margin-left: auto;
        margin-top: -17px;
        transition: all 0.3s ease-in-out;
      }
      .menu-open .pxl-toggle-btn {
        top: 55px;
      }
      .menu-open .pxl-toggle-btn span {
        margin-top: -13px;
      }
      .menu-open .pxl-toggle-btn > span:nth-child(2) {
        transform: translateX(20px);
        visibility: hidden;
        opacity: 0;
      }
      .menu-open .pxl-toggle-btn > span:nth-child(1) {
        transform: rotate(45deg);
        transform-origin: 24px -1px;
      }
      .menu-open .pxl-toggle-btn > span:nth-child(3) {
        transform: rotate(-45deg);
      }
      .menu-open .pxl-navbar-menu ul {
        left: 0;
      }
      .pxll-row{
        grid-template-columns: 1fr;
      }
      .pxl-lead-content{
        margin: 20px auto 0;
      }

      .pxl-feature-section {
        flex: 0 0 48%;
      }
      .pxl-steps-wrapper .pxl-step-para{
        margin-left: 20px;
      }
      .pxl-header-wrapper{
        top: 0px;
      }
      .pxl-highliter-box{
        margin: 0 auto;
      }
      .pxl-faq-img img{
        max-width: 750px;
        width: 100%;
        height: auto;
      }
      .pxl-lead-img{
        max-width: 750px;
        width: 100%;
        height: auto;
      }
      .pxl-banranimation-image-one {
        top: 100px;
        left: 40px;
    }
    .pxl-banranimation-image-two {
        top: 100px;
        right: 40px;
    }
}

@media(max-width:767.98px) {
    .pxl-btn {
        padding: 6px 15px;
        min-width: 130px;
        font-size: 14px;
    }
    .pxl-banner-title {
        font-size: 26px;
        line-height: 1.2;
    }
    .pxl-banner-content .pxl-dual-btn .pxl-btn:first-of-type,
    .pxl-banner-content .pxl-dual-btn .pxl-btn {
        margin-bottom: 10px;
    }
    .pxl-row {
        grid-template-columns: repeat(1, 1fr);
    }
    .pxl-banner-wrapper:before {
        content: unset;
    }
    .pxl-banner-wrapper {
        text-align: center;
        padding: 180px  0 30px;
    }
    .pxl-dual-btn {
        margin: 20px 0 20px !important;
        justify-content: center;
    }
    .pxl-banner-img img {
        max-height: 380px;
    }
    .pxl-pugin-highlighters {
        padding: 40px 0;
    }
    .pxl-highliter-box {
        padding: 10px 15px;
    }
    .pxl-lead-content h3 {
        font-size: 20px;
    }
    .pg-header-parent {
        flex-direction: column;
        padding: 20px 0;
    }
    .pp-toggle-btn {
        display: block;
        position: absolute;
        right: 15px;
        top: 60px;
      }
      .pp-toggle-btn span {
        width: 30px;
        height: 4px;
        background-color: var(--pxl-white);
        margin-bottom: 5px;
        display: block;
        margin-left: auto;
        margin-top: -17px;
        transition: all 0.3s ease-in-out;
      }
      .menu-open .pp-toggle-btn {
        top: 55px;
      }
      .menu-open .pp-toggle-btn span {
        margin-top: -13px;
      }
      .menu-open .pp-toggle-btn > span:nth-child(2) {
        transform: translateX(20px);
        visibility: hidden;
        opacity: 0;
      }
      .menu-open .pp-toggle-btn > span:nth-child(1) {
        transform: rotate(45deg);
        transform-origin: 24px -1px;
      }
      .menu-open .pp-toggle-btn > span:nth-child(3) {
        transform: rotate(-45deg);
      }
      .pxl-steps-wrapper .pxl-rowone{
        text-align: center;
      }
      .pxl-faq-wrapper,
      .pxl-features-wrapper{
        padding: 50px 0px;
      }
      .pxl-happy-customers-heading h1 {
        font-size: 28px;
    }
    .pxl-happy-customers-heading h2 {
        font-size: 30px;
    }
    .pxl-happy-customers-heading p {
        font-size: 18px;
    }
    .demo{
        font-size: 60px;
    }
    .carousel-wrapper {
        --width: 370px;
        --ani-speed: 20s;
     
    }
    .pxl-happy-customers-heading.aos-init.aos-animate a{
        font-size: 16px;
    }
    .pxl-footer-widget p{
        font-size: 14px;
    }
    .pxl-banranimation-image-two {
        top: 110px;
        right: 20px;
        max-width: 90px;
    }
    .pxl-banranimation-image-one {
        left: 20px;
        top: 110px;
        max-width: 90px;
    }
    .pxl-steps-section{
        max-width: 320px;
        margin: 0 auto 22px;
    }
    .pxl-pugin-highlighters-section{
        max-width: 400px;
    }
    .pxl-title h2{
        font-size: 22px;
    }
    .pxl-custmize-image-two{
        right: 0px;
        width: 50px;
    }
}

@media(max-width:575.98px) {
    .pxl-video-shapes ul li {
        width: 45%;
    }
    .pxl-video-shapes ul li:nth-child(2) {
        bottom: -50px;
        right: 0;
    }
    .pxl-lead-icons ul li img {
        width: 60%;
    }
    .pxl-btn,
    section .pxl-btn {
        padding: 4px 15px;
        min-width: 120px;
    }
    .pxl-banner-sub-title span {
        font-size: 14px;
        padding: 6px 15px;
    }
    .pxl-pugin-highlighters-section {
        grid-gap: 20px;
        grid-template-columns:unset ;
    }
    .pxl-tabs-content {
        width: 100%;
    }
    .pxl-tabs-nav {
        max-width: 100%;
        padding: 0;
    }
    .pxl-colimg{
        order: 2;
    }
    .pxl-happy-customers-heading.aos-init.aos-animate a{
        font-size: 14px;
        padding: 10px 20px;  
        border: 1px solid rgba(255, 255, 255, 0.12); 
    }
    .demo{
        font-size: 42px;
    }
    .pxl-footer-copyright p{
        font-size: 15px;
    }
    .carousel-wrapper {
        --width: 220px;
        --ani-speed: 20s;
    }
    .pxl-title h2{
        font-size: 22px;
    }
    .pxl-steps-section h4{
        font-size: 17px;
    }
    .pxl-steps-section p{
        font-size: 15px;
    }
    .pxl-banner-sub-title span:after{
        display: none;
    }
    .pxl-banner-sub-title span:before {
        top: 8px;
        width: 5px;
    }
    .pxl-banner-title {
        font-size: 24px;
    }
    .pxl-happy-customers-heading img{
        max-width: 180px;
        width: 100%;
    }
}
@media(max-width:480.98px){
    .pxl-feature-section {
        flex: 0 0 100%;
      }
      .pxl-banner-sub-title span {
        font-size: 11px;
    }
    .pxl-banner-title {
        font-size: 22px;
    }
    .pxl-banner-content .pxl-dual-btn {
        grid-gap:10px;
    }
}
@media(max-width:425.98px){
    .pxl-happy-customers-heading.aos-init.aos-animate a{
        font-size: 10px;
        padding: 5px 7px;  
        border: 1px solid rgba(255, 255, 255, 0.12); 
    }
    .demo{
        font-size: 30px;
        gap: 15px;
    }
    .pxl-custmize-image-two {
        top: 10px;
        right: 10px;
        width: 50px;
    }
    .pxl-custmize-image-three {
        top: 20px;
        left: 20px;
        width: 50px;
    }
    .pxl-custmize-image-four {
        bottom: 0px;
        right: 20px;
        width: 50px;
    }
    .pxl-custmize-image-one {
        display: none;
    }
    .pxl-banranimation-image-two {
        top: 110px;
        right: 20px;
        max-width: 65px;
    }
    .pxl-banranimation-image-one {
        left: 20px;
        top: 110px;
        max-width: 70px;
    }
    .pxl-banner-title {
        font-size: 20px;
    }
} 