/*
[Master Stylesheet] 
Project:Pixel Pages
-------------------------------------------------------------------*/
/********************************************************
1. body start
 *******************************************************/
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;	  	
	-webkit-font-smoothing: antialiased;
    overflow-x:hidden;
    font-family: 'Heebo', sans-serif;
}
html {
  scroll-behavior: smooth;
}
*,*:before,*:after{
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}
a, a:hover, a:focus{	
	text-transform: capitalize;
	text-decoration: none;
	-webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
h1, h2, h3, h4, h5, h6{	
	-webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
	margin:0;
	padding:0;	
	word-break: break-word;
}
img, video {
	max-width: 100%;
}
input, textarea, select, button, label, svg, svg path, svg rect, svg polygon, img, a, :after, :before, :hover, :focus, .form-control:focus{
	outline: none !important;
	box-shadow:none;
}
ul{
	padding:0;
	margin:0;
	list-style-type: none;
}
p {
  margin: 0px;
  word-break: break-word;  
}
/* Scroll */
::-webkit-scrollbar {
    width: 8px;
} 
::-webkit-scrollbar-track {
    background-color: #fff;
    -webkit-border-radius: 10px;    
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    height: 100px;
    background-image: linear-gradient(9.36deg, #FF479F -1.5%, #FF783F 107.24%);
}
/* Scroll */
/* Bottom To Top CSS Start */
.cv_top_icon a {
    display: flex;
    background-image: linear-gradient(9.36deg, rgb(255, 71, 159) -1.5%, #FF783F 107.24%);
    filter: drop-shadow(0 0 15px rgba(255, 71, 159,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);        
    }
}
.cv_top_icon a svg {
    fill: #fff;
    transform: rotate(270deg);
}
.cv_top_icon a.show {
    opacity: 1;
    visibility: visible;
}
/* Bottom To Top CSS End */

/* Botton CSS Start */
.pp-btn {
    display: inline-block;
    min-width: 140px;
    text-align: center;
    background: linear-gradient(9.36deg, #FF479F -1.5%, #FF783F 107.24%);
    padding: 15px 30px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-transform: capitalize;
    transition: all 0.3s;
    border: none;
}
.pp-btn:hover{
    letter-spacing: 1px;
}
/* Botton CSS End */

/* Banner CSS Start */
.pp-banner-wrapper {
    background-image: url(../images/banner-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 150px 15px 100px;
    position: relative;
}
.pp-banner-logo {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1330px;
    margin: auto;
    padding: 0 15px;
    grid-gap: 20px;
}
.pp-login-btn {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    grid-gap: 15px;
}
.pp-btn.pp-btn-border {
    background: #252A56;
}
.pp-btn.pp-btn-border:hover {
    background: linear-gradient(9.36deg, #FF479F -1.5%, #FF783F 107.24%);
}
.pp-banner-heading {
    text-align: left;
    position: relative;
    max-width: 600px;
}
.pp-banner-heading img.banner-circle {
    position: absolute;
    left: 10px;
    top: -10px;
    border-radius: 50%;
    animation: shadow-pulse 2s infinite;
    z-index: 1;
}
@keyframes shadow-pulse {
    0% {
        box-shadow: 0 0 0 0 rgb(255 120 63 / 70%)
    }
    100% {
        box-shadow: 0 0 0 30px rgb(255 255 0 / 0%);        
    }
}
.pp-banner-heading h1 {
    font-size: 40px;
    font-weight: 700;
    color: #252A56;
    text-transform: capitalize;
    padding: 25px 0 10px;
}
.pp-banner-heading h1 span {
    background-color: #F9E8BE;
    border: 1px solid #FF7D46;
    border-radius: 30px;
    font-size: 25px;
    font-weight: 700;
    color: #FF7D46;
    transform: rotate(-15deg);
    display: inline-block;
    padding: 5px 10px;
    animation: 2.5s rotate linear infinite;
}
@keyframes rotate {
	0% {
		transform: rotate(-15deg);
	}
	50% {
		transform: rotate(10deg);
	}
}
.pp-banner-box {
    position: relative;
    z-index: 1;
}
.pp-banner-box-inner {    
    background-color: #FFA9784D;    
    backdrop-filter: blur(10px);
    border-radius: 60px;
    padding: 20px 0 40px 0px;
    position: relative;
    z-index: 1;
}

.pp-banner-box-heading {
    position: relative;
}
.pp-banner-box-heading h4 {
    background: linear-gradient(9.36deg, #FF479F -1.5%, #FF783F 107.24%);
    border-radius: 10px;
    display: inline-block;
    padding: 10px 30px;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    max-width: 530px;
    text-align: center;
}
.pp-banner-box >img{
    position: absolute;
    z-index: -1;
    animation: rotation 5s linear infinite;
}
.pp-banner-box>img:first-child {
    bottom: 100px;
    left: -30px;    
}
.pp-banner-box>img:nth-child(2) {
    top: 50px;
    right: -30px;
    z-index: 2;        
}
@keyframes rotation {
    from {
        transform: rotate(0deg)
    }
    to {
        transform: rotate(360deg);
    }
}
.pp-banner-abst-img img {
    display: block;
}
.pp-banner-abst-img img:last-child {
    margin: -100px 0 0 10px;
}
.banner-two img:first-child{
    margin-left: 90px;
}
.banner-two img:last-child, .banner-three img:last-child {
    margin: -50px 0 0 0px;
}
.banner-three img:first-child {
    margin-left:120px;
}
.banner-four img:last-child {
    margin: -90px 0 0 100px;
}
.pp-banner-abst-img{
    position: absolute;
}
.banner-one{
    top: 100px;
    left: 30px;
}
.banner-two{
    top: 100px;
    right: 20px;
}
.banner-three {
    bottom: 20px;
    left: 10px;
}
.banner-four {
    bottom: 20px;
    right: 10px;
}
img.pp-down-arrow {
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 1;
    animation: topbottom 2s linear infinite alternate;    
}
@keyframes topbottom {
    0% {
        transform: translateY(0px);        
    }
    50% {
        transform: translateY(-10px);        
    }
}
.pp-banner-btn {
    text-align: center;
    margin-top: 30px;
}
.pp-banner-btn a {
    padding: 15px 50px;
    font-size: 18px; 
}
/* Banner CSS End */

/* Credential CSS Start */
section.pp-crendlt-wrapper {
    padding: 100px 0;
}
.ps-admin-crendl-box {
    max-width: 1200px;
    position: relative;
}
.ps-admin-crdntl-heading {
    position: relative;
}
.ps-admin-crdntl-heading > h4 {
    display: inline-block;
    text-align: center;
    border-radius: 10px;
    background: linear-gradient(9.36deg, #FF479F -1.5%, #FF783F 107.24%);
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-transform: capitalize;
    padding: 10px 20px;
}
.ps-admin-crdntl-heading h1 {
    margin: 15px 0;
    font-weight: 700;
}
.ps-admin-crdntl-heading p {
    color: #797979;
}
/* Credential CSS End */


/* app-pricing-section start */
.pp-demos-wrapper{
    background-color: #F7EDFF;
    padding: 100px 0;
}
.pp-demos-heading h4 {
    font-size: 42px;
    font-weight: 800;
    color: #252A56;
    text-transform: capitalize;
    margin: 0 auto 50px;
    text-align: center;
}
.app-pricing-section {
    padding: 20px 0px 80px 0px;
    background-color: #faf5ff;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  .pricing-box {
    background-color: #fff;
    padding: 40px;
    position: relative;
    border-radius: 10px;
    margin: 0 15px;
}
.pricing-box ul li span {
    font-size: 16px;
    color: #222222;
    font-weight: 400;
}
.pricing-text span {
    font-size: 42px;
    color: #222222;
    font-weight: 900;
    background: linear-gradient(9.36deg, #FF479F -1.5%, #FF783F 107.24%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.pricing-text sub {
    font-size: 16px;
    color: #222222;
    font-weight: 400;
    position: relative;
    bottom: 3px;
}
  .pricing-box p {
    font-size: 15px;
    color: #797979;
    font-weight: 400;
    margin-top: 10px;
  }
  .border-content {
    text-align: left;
  }
  .pricing-box ul {
    padding: 20px 0;
}
  .pricing-box ul li {
    padding: 10px 0;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease-in-out;
}
  
.pricing-box .pricing-btn1 {
    text-transform: capitalize;
    color: #222222;
    font-size: 30px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 20px;
}
  /* app-pricing-section end */



/* Builder Section CSS Start */
.pp-builder-wrapper{
    background: #1E1334;
    padding: 100px 0;
}
.pp-gred-heading {
    background: linear-gradient(180deg, #EDE4FF 0%, rgba(255, 255, 255, 0.1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 50px;
    font-weight: 800;
    text-transform: capitalize;
    text-align: center;
}
.bf_swiper_slider .swiper-pointer-events {
    overflow: hidden;
    position: relative;
}
.pp-build-image{    
    text-align: center;
    position: relative;
    padding: 50px 0;
}
.bf_testimonial_wrapper {
    border-radius: 10px;
    background-color: #271a3e;
    padding: 40px 20px 20px;
    margin-top: 50px;
    position: relative;
    transition: all 0.3s ease-in-out;
}
.bf_profile_detail {
    display: flex;
    align-items: center;
    grid-gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}
.bf_suggestions_image img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 100px;
    border: solid 5px #382a53;
}
.bf_suggestions_text h6 {
    color: #ffffff;
    font-weight: 900;
    background: linear-gradient(9.36deg, #FF479F -1.5%, #FF783F 107.24%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 18px;
}
.bf_suggestions_text p {
    color: #ffffff;
}
.pp-client-text p {
    background-color: #1e1334;
    color: #9a9a9a;
    margin-top: 30px;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}
.bf_swiper_slider .swiper-container {
    padding-bottom: 70px;
}
.bf_swiper_slider .swiper-pagination-bullet {
    width: 16px;
    height: 8px;
    background-color: #fff;
    border-radius: 4px;
  }
  .bf_swiper_slider .swiper-pagination-bullet-active {
    width: 26px;
    height: 8px;
    border-radius: 4px;
    background-color: #a9a9a9;
  }
  .bf_swiper_slider .swiper-slide {
    transition: all 0.3s ease-in-out;
  }
img.pp-build-shape1, img.pp-build-shape2, img.pp-build-shape3, img.pp-build-shape4, img.pp-build-shape5, img.pp-build-shape6{
    position: absolute;
    animation: 2.5s rotate-build linear infinite;
}
@keyframes rotate-build {
	0% {
		transform: rotate(0deg);
	}
	50% {
		transform: rotate(20deg);
	}
}
img.pp-build-shape1{
    top: -70px;
    right: 180px;
}
img.pp-build-shape2 {
    bottom: 50px;
    left: 140px;
}
img.pp-build-shape3 {
    top: -70px;
    left: 180px;
}
img.pp-build-shape4 {
    bottom: 50px;
    right: 150px;
}
img.pp-build-shape5 {
    top: 35%;
    left: 0;
}
img.pp-build-shape6 {
    top: 35%;
    right: 0;
}
.pp-build-text h2{
    background: linear-gradient(175.86deg, #6821F2 -34.54%, #DA42DF 136.17%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 70px;
    font-weight: 900;
    text-transform: capitalize;
    text-align: center;
}
.pp-build-text h2 span{
    display: block;
}
/* Builder Section CSS End */

/* Choose Section CSS Start */
.pp-choose-wrapper{
    background-color: #fff;
    padding: 100px 0;
}
.pp-choose-wrapper .container {
    max-width: 900px;
}
.pp-choose-heading {
    text-align: center;
    margin-bottom: 50px;
}
.pp-choose-heading h4 {
    font-size: 24px;
    font-weight: 700;
    color: #252A56;
    text-transform: capitalize;
    display: inline-block;
    position: relative;
    margin-top: 10px;
    background: linear-gradient(9.36deg, #FF479F -1.5%, #FF783F 107.24%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.pp-choose-heading h2 {
    color: #252A56;
    font-size: 42px;
    font-weight: 800;
    text-transform: capitalize;
    line-height: 1;
}
.mt_form_input {
    margin-bottom: 15px;
}
.mt_form_input label {
    margin-bottom: 5px;
}
.mt_form_input input {
    background-color: transparent;
    height: 50px;
    border-radius: 6px;
    padding: 0 20px;
    color: #222222;
    font-size: 16px;
    font-weight: 400;
    border: solid 1px rgb(0 0 0 / 6%);
    width: 100%;
    transition: all 0.3s;
}
.mt_form_input textarea {
    background-color: transparent;
    border: solid 1px rgb(0 0 0 / 6%);
    border-radius: 6px;
    padding: 18px 20px;
    color: #222222;
    font-size: 16px;
    font-weight: 400;
    width: 100%;
    transition: all 0.3s;
    resize: none;
    min-height: 120px;
}
/* Choose Section CSS End */



/* Copyright Section CSS Start */
.pp-copyright-wrapper{
    background-color:#1E1334;
    padding: 20px 0;
}
.pp-copyright-text {
    display: flex;
    align-items: center;
    grid-gap: 20px;
    justify-content: space-between;
}
.pp-copyright-text p{
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}
.pp-copyright-text ul {
    display: flex;
    grid-gap: 30px;
    flex-wrap: wrap;
    align-items: center;
}
.pp-copyright-text ul li a {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
}
.pp-copyright-text ul li a:hover {
    background: linear-gradient(9.36deg, #FF479F -1.5%, #FF783F 107.24%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* Copyright Section CSS End */

/* Responsive CSS Start */
@media(max-width:1800px){
    .banner-one { 
        left: 0;
    }
    .banner-two {
        top: 50px;
        right: 0px;
    }
    .banner-three {     
        left: -20px;
    }
    .banner-four {     
        right: 0;
    }
    
}
@media(max-width:1750px){
    .pp-choose-img-right {
        margin-left: 30px;
    }
    .pp-choose-img img, .flex-four .pp-choose-img img {
        height: auto;     
    }
}
@media(max-width:1700px){
    .pp-banner-heading img.banner-circle {
        top: 0px;
    }
    .pp-banner-abst-img {     
        width: 300px;
        height: 300px;
    }
    .banner-two img:first-child {
        margin-left: 0;     
    }
    .banner-three img:first-child {
        margin-left: 40px;
    }
    .banner-four img:last-child {
        margin: -90px 0 0 0px;
    }
}
@media(max-width:1550px){
    .banner-four img:last-child {
        margin: -90px 0 0 0px;
    }
    
    
    .pp-banner-box {
        max-width: 800px;
    }
}
@media(max-width:1500px){
    .pp-temp-heading h4 {
        font-size: 50px;
    }
    .pp-temp-main-head h1 {
        font-size: 55px;
    }
    .pp-temp-main-head h2 {
        font-size: 40px;
    }
}
@media(max-width:1440px){
    .pp-goal-main ul li {
        flex: 0 0 30%;     
    }
    .pp-goal-main ul li img {
        height: 250px;
    }
    .pp-tesmnl-parent ul li {
        flex: 0 0 40%;     
    }
}
@media(max-width:1350px){
    .pp-footer-wrapper .banner-one {
        top: 30px;
        left: 30px;
    }
    .pp-footer-wrapper .banner-two {
        top: 30px;
        right: 30px;
    }
    .pp-footer-wrapper .banner-three {     
        left: 30px;
    }
    .pp-footer-wrapper .banner-four{
        right: 30px;
    }
    .pp-footer-wrapper .banner-three img:first-child {
        margin-left: 0px;
    }
}
@media(max-width:1300px){
    .pp-banner-abst-img {
        width: 250px;
        height: 250px;
    }
    .pp-temp-main ul li img {
        height: 150px;
    }
}
@media(max-width:1199px){
    
      
    .pp-goal-main ul li {
        flex: 0 0 40%;     
    }
    .pp-temp-heading h4 {
        font-size: 35px;
    }
    .pp-temp-main-head::before {
        width: 420px;
        height: 420px;
    }
    .pp-temp-heading p {
        font-size: 18px;
        font-weight: 500;
        padding-top: 0; 
    }    
    img.pp-build-shape2, img.pp-build-shape3 {     
        left: 0;
    }
    img.pp-build-shape1, img.pp-build-shape4 {     
        right: 0;
    }
    .pp-tesmnl-parent ul li {
        flex: 0 0 50%;
        margin-right: 20px;
    }
    ul.pp-tesmnl-bottom {
        margin-top: 20px;     
    }
    .pp-gred-heading{
        font-size: 60px;
    }
    .pp-tesmnl-heading h1 {
        font-size: 90px;
        margin-top: -25px;
    }
    .pp-temp-main-head h1 {
        font-size: 45px;
    }
    .pricing-box {
        margin: 0 0;
    }
}
@media(max-width:1024px){
    .pp-banner-abst-img{
        display: none;
    }
}
@media(max-width:991px){
    
    .pp-goal-main ul li img {
        height: 220px;
    }
    .pp-temp-main {
        display: flex;
        flex-direction: column;
    }
    .pp-temp-left-one, .pp-temp-left-two {        
        display: flex;
        align-items: center;
    }
    .pp-temp-main ul li {        
        margin-right: 15px;
        flex: 0 0 33%;
    }
    .pp-temp-main ul li img {
        height: 210px;
    }
    .pp-temp-head-parent {     
        margin-top: 0;
    }
    
    .pp-temp-head-parent{
        display: none;
    }
    .pp-temp-responsive{
        display: block;
        padding-bottom: 50px;
    }
    .pp-temp-main-head {
        padding-top: 10px;
    }
    .pp-temp-main-head h2 {
        padding-bottom: 30px;
    }
    @keyframes scroll-top {
        100% {
          -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
        }
        0% {
          -webkit-transform: translate3d(-50%, 0, 0);
          transform: translate3d(-50%, 0, 0);
        }
    }
    @keyframes scroll-bottom {
        0% {
          -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
        }
        100% {
          -webkit-transform: translate3d(-50%, 0, 0);
          transform: translate3d(-50%, 0, 0);
        }
    }
    .pp-gred-heading {
        font-size: 60px;
    }
    img.pp-build-shape5 {     
        left: -30px;
    }
    img.pp-build-shape2, img.pp-build-shape3 {
        left: -30px;
    }
    img.pp-build-shape1, img.pp-build-shape4 {
        right: -20px;
    }
    img.pp-build-shape6 {
        top: 30%;
        right: -20px;
    }
    .pp-build-text h2 {
        font-size: 40px;
    }
    .pp-choose-img-right {
        margin-left: 20px;
    }
    .pp-choose-flex {
        margin-bottom: 20px;
    }    
    .pp-tesmnl-parent ul li {
        flex: 0 0 70%;     
    }
    ul.pp-tesmnl-bottom {
        margin-top: 0;
    }
    .ps-admin-crdntl-heading > h4 {
        font-size: 20px;
        font-weight: 600;
        padding: 15px 35px;
        top: -30px;
    }
    .ps-crendlt-box {
        padding: 55px 10px 30px 0;
    }
    .ps-purple-box {
        margin-top: 40px;
    }
    .ps-admn-purple h4 {
        top: 10px;
    }
    .pp-banner-wrapper {
        padding: 120px 0 70px;
    }
    .pp-banner-heading {
        text-align: center;
        max-width: 100%;
    }
    .pp-banner-heading h1 {
        font-size: 30px;
    }
    .pp-banner-box>img:nth-child(2) {
        top: 0;
        right: 0;
    }
    .pp-banner-box>img:first-child {
        bottom: 0;
        left: 0;
        z-index: 2;
    }
    section.pp-crendlt-wrapper {
        padding: 70px 0;
    }
    .pp-demos-heading h1 {
        font-size: 80px;
    }
    .pp-demos-heading h4 {
        font-size: 40px;
    }
    .ps-admin-crdntl-heading {
        text-align: center;
        margin-top: 40px;
    }
    .pp-banner-box-inner {
        border-radius: 20px;
        margin-top: 40px;
    }
    .pp-demos-wrapper {
        padding: 70px 0;
    }
    .pp-builder-wrapper {
        padding: 70px 0;
    }
    .pp-choose-wrapper {
        padding: 70px 0;
    }
}
@media(max-width:768px){
    
    .pp-banner-box-heading h4 {
        font-size: 18px;
    }
    
    .pp-goal-main ul li img {
        height: 180px;
    }
    .pp-goal-heading h4 {
        font-size: 40px;
        max-width: 550px;
    }    
    .pp-temp-main ul li {     
        flex: 0 0 40%;
    }    
    img.pp-build-shape1, img.pp-build-shape2, img.pp-build-shape3, img.pp-build-shape4, img.pp-build-shape5, img.pp-build-shape6{
        display: none;
    }
    .pp-copyright-text {
        grid-gap: 10px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    
    .pp-choose-img-right {
        margin-left: 10px;
    }
    .pp-choose-flex {
        margin-bottom: 10px;
    }
    
    
    
    .pp-testimonial-wrapper .pp-gred-heading {
        font-size: 40px;
    }
    .pp-tesmnl-heading h1 {
        font-size: 70px;
        margin-top: -15px;
    }
    .pp-tesmnl-parent::before, .pp-tesmnl-parent::after {
        width: 100px;
    }
    .pp-tesmnl-parent ul li {
        flex: 0 0 100%; 
    }
    .pp-temp-main-head h1 {
        font-size: 40px;
    }
    .pp-temp-main-head {
        padding-top: 10px;
    }
    .pp-temp-heading h4 {
        font-size: 30px;
    }
    
    .pp-demos-heading h1 {
        font-size: 60px;
    }
    .pp-demos-heading h4 {
        font-size: 30px;
        margin-bottom: 20px;
    }
    .pp-gred-heading {
        font-size: 30px;
    }
    .bf_testimonial_wrapper {
        padding: 30px 20px 20px;
        margin-top: 30px;
    }
    .pp-choose-heading {
        margin-bottom: 30px;
    }
    .pp-choose-heading h2 {
        font-size: 30px;
    }
    .pp-banner-wrapper {
        padding: 200px 0 70px;
    }
    .pp-banner-logo {
        flex-direction: column;
    }
    
}
@media(max-width:575px){
    .pp-banner-box >img{
        display: none;
    }
    .pp-goal-main ul li {
        flex: 0 0 50%;
    }
    .pp-goal-main ul li img {
        height: 170px;
    }
    .pp-goal-heading h4 {
        font-size: 30px;
        max-width: 450px;
    }
    .pp-temp-main ul li img {
        height: 160px;
    }
    .ps-crendlt-box a {
        font-size: 18px;
        font-weight: 400;
        padding-left: 30px;
    }
    .ps-crendlt-box p, .ps-crendlt-box span {
        font-size: 18px; 
        font-weight: 300;    
    }
    .ps-crendlt-box p {     
        font-weight: 400;        
    }
    .ps-username img, .ps-passwrd img {
        width: 20px;
        margin-left: 10px;     
    }
    .pp-banner-heading img.banner-circle {
        z-index: 0;
    }
    
}
@media(max-width:480px){
    .pp-banner-heading img.banner-circle {     
        left: 0;
    }
    .pp-banner-box-heading h4 {
        font-size: 16px;
        border-radius: 10px;
        padding: 8px 15px;
    }
    
    .pp-goal-main ul li img {
        height: 140px;
    }
    .pp-temp-main ul li img {
        height: 140px;
    }
    .pp-gred-heading {
        font-size: 40px;
    }
    .pp-build-text h2 {
        font-size: 30px;
    }
    .pp-build-image {
        padding: 20px 0;
    }
    
    .pp-testimonial-wrapper .pp-gred-heading {
        font-size: 30px;
    }
    .pp-tesmnl-heading h1 {
        font-size: 50px;
        margin-top: -10px;
    }
    .pp-tesmnl-parent::before, .pp-tesmnl-parent::after {
        width: 50px;
    }
    .pp-footer-logo {
        width: 250px;
        height: 250px;
    }
    .pp-footer-logo img {
        width: 190px;
        height: auto;
    }
    .pp-footer-content h1 {
        font-size: 40px;
    }
    
    .ps-admin-crdntl-heading > h4 {
        font-size: 16px;
        font-weight: 500;
        padding: 12px 25px;
        top: -20px;
    }
    .ps-purple-box {
        margin-top: 30px;
    }
    .ps-admn-purple h4 {
        top: 10px;
    }
    
}
@media(max-width:425px){
    
    
    .pp-banner-logo a img {
        width: 200px;
        height: auto;
    }
    .pp-goal-main ul li img {
        height: 120px;
    }
    .pp-goal-main {
        padding-top: 30px;
    }
    .pp-goal-heading h4 {
        font-size: 25px;
        max-width: 300px;
    }
    .pp-template-wrapper, .pp-freature-wrapper, .pp-demos-wrapper, .pp-builder-wrapper, .pp-choose-wrapper, .pp-testimonial-wrapper, .pp-footer-wrapper {     
        padding: 40px 0;
    }
    .pp-goal-wrapper {     
        padding: 40px 0 0px 0;
    }  
    ul.pp-goal-bottom {     
        padding-bottom: 40px;
    }         
    .pp-temp-main-head h2 {
        padding-bottom: 20px;
        font-size: 30px;
    }
    .pp-temp-heading h4 {
        font-size: 30px;
    }
    .pp-temp-main-head h1 {
        font-size: 35px;
    }
    .pp-temp-heading p {
        font-size: 16px;
        font-weight: 400;     
    }
    .pp-temp-main ul li p {
        font-size: 14px;
        font-weight: 400;
    }
    .pp-temp-main ul li {
        flex: 0 0 50%;
    }
    .pp-temp-main ul li img {
        height: 150px;
    }
    .pp-gred-heading {
        font-size: 35px;
    }
    .pp-build-text h2 {
        font-size: 26px;
    }
    .pp-choose-flex {     
        flex-direction: column;
    }
    .pp-choose-img {
        margin-bottom: 10px;
    }
    .pp-choose-img-right {
        margin-left: 0;
    }
    .pp-tesmnl-parent::before, .pp-tesmnl-parent::after{
        display: none;
    }
    .pp-testimonial-wrapper .pp-gred-heading {
        font-size: 27px;
    }
    .pp-footer-logo {
        width: 180px;
        height: 180px;
        border-radius: 20px;
    }
    .pp-footer-logo img {
        width: 130px;
        height: auto;
    }
    .pp-footer-content h4 {
        font-size: 25px;
        padding: 50px 0 10px 0;
    }
    .pp-footer-content h1 {
        font-size: 33px;
    }
    .pp-footer-content a {
        max-width: 200px;
        height: 60px;
        font-size: 18px;
        font-weight: 500;
    }
    .pp-copyright-wrapper p {
        font-size: 14px;
        font-weight: 400;
    }
    .ps-crendlt-box a {
        font-size: 17px;
        padding: 5px 0 5px 20px;
    }
    .ps-crendlt-box p, .ps-crendlt-box span {
        font-size: 16px;     
    }
    .ps-crendlt-box span {
        padding-left: 20px;
    }
    .ps-crendlt-box {
        padding: 45px 10px 25px 0;
        border-radius: 10px;
    }
    section.pp-crendlt-wrapper {
        padding-top: 50px;
    }
    .ps-crendlt-box p {     
        padding-bottom: 5px;
    }
    .pricing-box {
        padding: 30px 20px;
    }
}
@media(max-width:375px){
    .pp-goal-main ul li img {
        height: 100px;
    }
    .pp-temp-main ul li img {
        height: 120px;
    }
    .pp-freature-wrapper .pp-gred-heading {
        font-size: 27px;     
    }
    
    .ps-admin-crdntl-heading > h4 {
        font-size: 15px;
        padding: 10px 25px;
    }
    .ps-crendlt-box a {
        font-size: 16px;
        padding: 4px 0 4px 15px;
    }
    .ps-crendlt-box span {
        padding-left: 15px;
    }
    .ps-crendlt-box p, .ps-crendlt-box span {
        font-size: 14px;
    }
    .ps-username img, .ps-passwrd img {
        width: 17px;
        margin-left: 8px;
    }
    .pp-temp-heading h4 {
        font-size: 25px;
    }
    .pp-temp-main-head h1 {
        font-size: 28px;
    }
    .pp-temp-main-head a {
        margin-top: 20px;
        padding: 12px 30px;
        font-size: 15px;
        font-weight: 400;
    }
    .pp-login-btn {
        grid-gap: 8px;
    }
}
/* Responsive CSS End */