@import url("../libs/bootstrap/css/bootstrap.min.css");
@import url("../libs/fontawesome/css/all.min.css");
@import url("../css/general.css");
@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:wght@100..900&family=Outfit:wght@100..900&display=swap");

:root {
  --font-family: "Onest", sans-serif;
}

 

.cwp-builders-hero {
    background-color: #FAFAFA;
}


/* header css */

nav.cwp-nav-menu label.cwp-menu-close {
  display: none;
}


.cwp-main-header {
  width: 100%;
  background: #fff;
  padding: 22px 10px;
  z-index: 9999999999;
  position: relative;
}

.cwp-container {
  display: flex;
  align-items: center;
  justify-content: space-between;

}

.cwp-main-header .container {
  max-width: 1375px;
  width: 100%;
}


.cwp-nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}

.cwp-nav-list a {
  text-decoration: none;
  font-family: Inter Tight;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #000000;
  transition: 0.3s;
}


.cwp-dropdown-menu {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 164px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
  list-style: none;
  z-index: 1;
  border-radius: 10px;
  padding: 10px 9px 10px 9px;
}

.cwp-has-dropdown:hover .cwp-dropdown-menu {
  display: block;
}

.cwp-dropdown-menu li a {
  color: #000;
  line-height: 36px !important;
  padding: 0;
  margin: 0;
  font-family: Inter Tight;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0%;
  width: 100%;
  display: flex;
  justify-content: start;
  border-radius: 10px;
  padding: 0px 8px;
  margin: 5px 0;
}

.cwp-dropdown-menu li a:hover {
  background: #5641F3;
  color: #fff;
}

.cwp-nav-list a:hover {
  color: #5641F3;
}


.cwp-nav-item.cwp-has-dropdown a svg {
  margin-left: 11px;
}


.cwp-btn-download {
  color: #5641F3;
  text-decoration: none;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  text-align: center;
  padding: 20px 32px;
  border: 1px solid transparent;
  background:
    linear-gradient(white, white) padding-box,
    linear-gradient(90deg, #9810FA 0%, #155DFC 100%) border-box;

  border-radius: 120px;
  display: inline-block;
  transition: 0.3s;
}


.cwp-btn-download:hover {
  background: #5641F3;
  color: #fff;
}

.cwp-account-link {
  color: #000000;
  text-decoration: unset;
  font-family: Outfit;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  transition: 0.3s;
}

.cwp-account-link:hover {
  color: #5641F3;
}

.cwp-header-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}


.cwp-nav-toggle,
.cwp-menu-icon,
.cwp-mobile-only {
  display: none;
}

@media (max-width: 992px) {

  .cwp-header-actions,
  .cwp-account-link {
    display: none;
  }

  .cwp-menu-icon {
    display: block;
    cursor: pointer;

  }


  .cwp-menu-icon span::before {
    content: "";
    top: -8px;
    position: absolute;
  }

  .cwp-menu-icon span::after {
    content: "";
    top: 8px;
    position: absolute;
  }

  .cwp-nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 310px;
    height: 100vh;
    background: #fff;
    padding: 80px 30px;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
    transition: 0.4s ease-in-out;
    z-index: 1000;
  }


  .cwp-main-header {
    width: 100%;
    background: #fff;
    padding: 14px 10px;
    z-index: 9999999999;
    position: relative;
  }


  nav.cwp-nav-menu label.cwp-menu-close {
    padding: 0;
  }


  nav.cwp-nav-menu i.fa-solid.fa-xmark {
    color: #5641F3;
    font-size: 20px;
    font-weight: 600;
  }


  nav.cwp-nav-menu label.cwp-menu-close {
    display: block;
  }


  header.cwp-main-header i.fa-solid.fa-bars {
    color: #5641F3;
    font-size: 20px;
  }

  .cwp-nav-list {
    flex-direction: column;
    gap: 25px;
  }

  .cwp-nav-list a {
    font-size: 16px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
    width: 100%;
    display: flex;
    justify-content: space-between;
  }

  .cwp-mobile-only {
    display: block;
  }

  .cwp-nav-toggle:checked~.cwp-nav-menu {
    left: 0;
  }

  .cwp-nav-toggle:checked~.cwp-menu-icon span {
    background: transparent;
  }

  .cwp-nav-toggle:checked~.cwp-menu-icon span::before {
    transform: rotate(45deg);
    top: 0;
  }

  .cwp-nav-toggle:checked~.cwp-menu-icon span::after {
    transform: rotate(-45deg);
    top: 0;
  }



  .cwp-menu-close {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: #000;
    padding: 20px;
    text-align: right;
  }


  @media (max-width: 991px) {
    .cwp-menu-close {
      display: block;
      position: absolute;
      top: 10px;
      right: 15px;
      z-index: 1001;
    }


    .cwp-nav-toggle:checked~.cwp-nav-menu {
      left: 0;
      display: block;
    }
  }
}

/* header css */

/* Bannner css */

.banner-t-ai-wrapper {
  display: flex;
  align-items: center;
  gap: 9px;
  justify-content: center;
}


.banner-ai-text {
  position: relative;
  display: flex;
  padding: 8px 25px 8px 16px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border-radius: 60px;
  border: 1px solid #DBDFE9;
  
  background: linear-gradient(90deg, #9810FA, #155DFC);
  color: #FFF;
  font-family: "Inter Tight";
  font-size: 32px;
  font-style: italic;
  font-weight: 500;
  line-height: 55.166px;
  letter-spacing: -0.881px;
  height: 52px;
  
  z-index: 1;
 
  overflow: visible; 

  animation: 
      floating 3s ease-in-out infinite,
      outerGlow 3s ease-in-out infinite;
   
}


 
.banner-ai-text::before {
  content: '';
  position: absolute;
  inset: 0; 
  border-radius: inherit; 
  padding: 2px; 
  -webkit-mask: 
      linear-gradient(#fff 0 0) content-box, 
      linear-gradient(#fff 0 0);
  mask: 
      linear-gradient(#fff 0 0) content-box, 
      linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  
  animation: rotateGlow 2.5s linear infinite;
  z-index: 2;
  pointer-events: none;
}


@keyframes outerGlow {
  0%, 100% { box-shadow: 0 0 15px rgba(152, 16, 250, 0.5); }
  50% { box-shadow: 0 0 35px rgba(21, 93, 252, 0.8); }
}

@keyframes rotateGlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes floating {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.banner-ai-text span, 
.banner-ai-text svg {
  position: relative;
  z-index: 3;
}

section.cwp-banner-wrapper {
  position: relative;
  overflow: hidden;
}


section.cwp-banner-wrapper {
  position: relative;
  overflow: hidden;
}

section.cwp-banner-wrapper::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 237px;
  background: linear-gradient(180deg, rgba(250, 250, 250, 0) 0%, #FAFAFA 100%);
  z-index: 2;
  pointer-events: none;
}

.cwp-banner-wrapper {
  width: 100%;
  min-height: 532px;
  display: flex;
  align-items: start;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-image: url(..//images/pricing-plan/banner-background.png);
  object-fit: cover;
  background-repeat: no-repeat;
  background-position: top center;
  justify-content: center;
  align-items: center;
}

h1.cwp-banner-title img {
  margin: 0px 0px -12px -11px;
}


.cwp-banner-container {
  z-index: 10;
  max-width: 800px;
  padding: 20px;
}

.cwp-banner-title {
  color: #000000;
  font-family: Inter Tight;
  font-weight: 500;
  font-size: 52px;
  line-height: 62.6px;
  letter-spacing: -1px;
  text-align: center;
  vertical-align: middle;
  margin: 0;
}

.cwp-banner-ai-tag {
  background: linear-gradient(90deg, #9810FA 0%, #155DFC 100%);
  padding: 6px 18px;
  border-radius: 50px;
  color: #FFFFFF;
  font-family: Inter Tight;
  font-weight: 500;
  font-size: 30px;
  line-height: 55.17px;
  letter-spacing: -0.88px;
}

p.cwp-banner-description {
  color: #000000;
  font-family: Inter Tight;
  font-weight: 400;
  font-size: 20px;
  line-height: 37px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  margin-top: 22px;
}





.cubewp-pricing-banner-tab-slider {
  position: absolute;
  top: 8px;
  left: 8px;
  height: calc(100% - 16px);
  width: calc(50% - 8px);
  background-color: var(--primary-purple);
  border-radius: 40px;
  box-shadow: 0 8px 20px rgba(94, 66, 243, 0.3);
  transition: transform var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

#annual:checked~.cubewp-pricing-banner-tab-slider {
  transform: translateX(0);
}

#lifetime:checked~.cubewp-pricing-banner-tab-slider {
  transform: translateX(100%);
}

#annual:checked~label[for="annual"],
#lifetime:checked~label[for="lifetime"] {
  color: #ffffff;
  box-shadow: 0px 10px 15px -3px #0000004D;
  background: #5641F3;
}

.cubewp-pricing-banner-tab-icon {
  font-size: 18px;
}

.cwp-banner-btn {
  display: inline-block;
  padding: 22px 38px;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s;
  font-family: Inter Tight;
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #FFFFFF;
  background: #FF6900;
  border: 1px solid #FF6900;
  margin-top: 32px;
  box-shadow: none;
}


.cwp-banner-btn:hover {
  cursor: pointer;
  box-shadow: 0px 25px 50px -12px #00000040;
}

a.cwp-banner-btn svg {
  margin-left: 8px;
}


.cwp-banner-float {
  position: absolute;
  z-index: 5;
  animation: floatAnimation 6s ease-in-out infinite;
}

.cwp-banner-img-1 {
  top: 2%;
  left: 35%;
  animation-delay: 0s;
}

.cwp-banner-img-2 {
  top: 53%;
  right: 20%;
  animation-delay: 1s;
}

.cwp-banner-img-3 {
  bottom: 29%;
  left: 22%;
  animation-delay: 2s;
}

.cwp-banner-img-4 {
  bottom: 0;
  right: 19%;
  animation-delay: 3s;
}



@keyframes floatAnimation {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(2deg);
  }

  100% {
    transform: translateY(0px) rotate(0deg);
  }
}


@media screen and (max-width: 768px) {
  .cwp-banner-wrapper {
    text-align: center;
    overflow: hidden;
    position: relative;
    min-height: 300px;
  }

  .banner-ai-text {
    font-size: 20px;
    height: 32px;
    animation: none !important;
}

.banner-ai-text svg {
  width: 19px;
  
}


  .cwp-banner-ai-tag {
    font-size: 16px;
  }


  .cwp-banner-float {
    display: none;
  }

  .cwp-banner-container {
    width: 100% !important;
    max-width: 100%;
  }

  .cwp-banner-title {
    font-size: 28px !important;
    line-height: 1.2;
    margin: 0;
  }

  .cwp-banner-title br,
  .cwp-banner-description br {
    display: none;
  }

  .cwp-banner-description {
    font-size: 16px !important;
    line-height: 23px !important;
    margin: 15px 0;
  }





  .cwp-banner-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 13px;
    box-sizing: border-box;
    font-size: 16px;
  }
}

/* Bannner css */



/* cwp builders css */


.cwp-builders-container .container {
  max-width: 1375px;
  width: 100%;
}

.cwp-builders-container {
  padding: 100px 20px;
  overflow: hidden;
  background: linear-gradient(178.57deg, rgba(255, 255, 255, 0) 1.22%, #FFFFFF 69.25%);
}

.cwp-builders-content {
  width: 100%;
  max-width: 492px;
}

.cwp-builders-title {
  color: #000000;
  font-family: Inter Tight;
  font-weight: 500;
  font-size: 44px;
  line-height: 48.6px;
  letter-spacing: 0px;
  vertical-align: middle;
  margin-bottom: 12px;
}

.cwp-builders-title span {
  color: #5641F3;
  font-weight: 600;
}

.cwp-builders-description {
  margin-bottom: 22px;
  color: #666666;
  font-family: Inter Tight;
  font-weight: 400;
  font-size: 20px;
  line-height: 37px;
  letter-spacing: 0%;
  vertical-align: middle;
}

.cwp-builders-label {
  margin: 0;
  color: #F54900;
  font-family: Inter Tight;
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0px;
}

.cwp-builders-price {
  color: #000000;
  margin: 16px 0 0 0;
  font-family: Inter Tight;
  font-weight: 500;
  font-size: 38px;
  line-height: 64.11px;
  letter-spacing: 0px;
}

.cwp-builders-price span {
  margin: 0;
  color: #666666;
  font-family: Inter Tight;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
}

.cwp-builders-actions {
  display: flex;
  gap: 12px;
  margin-top: 55px;
}

a.cwp-builders-btn.cwp-builders-btn-outline {
  font-family: Inter Tight;
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #5641F3;
  padding: 22px 38px;
  border: 1px solid #5641F3;
  border-radius: 120px;
  background: transparent;
  transition: 0.3s;
}

.cwp-builders-actions a {
  text-decoration: unset;
}

.cwp-builder-inner-wrraper {
  display: flex;
  justify-content: space-between;
}

a.cwp-builders-btn.cwp-builders-btn-primary:hover svg path {
  stroke: #5641F3;
}

a.cwp-builders-btn.cwp-builders-btn-outline:hover svg path {
  stroke: #fff;
}

.cwp-builders-actions a {
  display: flex;
  align-items: center;
  gap: 8px;
}

a.cwp-builders-btn.cwp-builders-btn-outline:hover {
  background: #5641F3;
  color: #fff;

}

a.cwp-builders-btn.cwp-builders-btn-primary {
  font-family: Inter Tight;
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #fff;
  padding: 22px 38px;
  border: 1px solid #5641F3;
  border-radius: 120px;
  background: #5641F3;
  transition: 0.3s;
}

a.cwp-builders-btn.cwp-builders-btn-primary:hover {
  color: #5641F3;
  border-color: #5641F3;
  background: transparent;
}

.cwp-builders-btn-outline {
  background: transparent;
  color: #5641F3;
  border: 1px solid #5641F3;
}


.cwp-builders-container.light {
  background: #FFFFFF;
}

.cwp-builders-media {
  width: 100%;
  max-width: 680px;
}

.cwp-builders-image-wrapper {
  position: relative;
  width: 100%;
}

.cwp-builders-main-img {
  width: 100%;
  height: auto;

}

.cwp-builders-floating-ui {
  position: absolute;
  top: 20%;
  left: -15%;
  width: 60%;
  z-index: 2;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.15));
  animation: floating 3s ease-in-out infinite;
}

.cwp-builders-floating-ui img {
  width: 100%;
}

@keyframes floating {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

@media screen and (max-width: 1024px) {
  .cwp-builders-container {
    padding: 60px 20px;
  }

  .cwp-builder-inner-wrraper {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 50px;
  }

  .cwp-builders-content {
    max-width: 100%;
  }

  .cwp-builders-title {
    font-size: 38px;
    line-height: 1.2;
  }

  .cwp-builders-media {
    max-width: 100%;
  }

  .cwp-builders-floating-ui {
    left: 5%;
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  .cwp-builders-container {
    padding: 40px 15px;
  }

  .cwp-builders-title {
    font-size: 30px;
    line-height: 1.2;
  }

  .cwp-builders-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .cwp-builders-price {
    font-size: 32px;
    line-height: 1.2;
    margin-top: 10px;
  }

  .cwp-builders-actions {
    flex-direction: column;
    margin-top: 35px;
    width: 100%;
  }

  a.cwp-builders-btn.cwp-builders-btn-primary,
  a.cwp-builders-btn.cwp-builders-btn-outline {
    width: 100%;
    justify-content: center;
    padding: 16px 20px;
    font-size: 16px;
  }

  .cwp-builders-floating-ui {
    width: 70%;
    left: 0;
    top: 15%;
  }

  .cwp-builder-inner-wrraper {
    gap: 40px;
  }

  .cwp-price-growth-header h2.cwp-price-growth-title {
    font-size: 21px !important;
    margin: 0 !important;
  }

  .cwp-price-growth-header p.cwp-price-growth-subtitle {
    font-size: 16px !important;
    line-height: 27px !important;
  }
}

@media screen and (max-width: 480px) {
  .cwp-builders-title {
    font-size: 26px;
  }

  .cwp-builders-price {
    font-size: 28px;
  }

  .cwp-builders-description {
    font-size: 15px;
  }
}

/* cwp builders css */




/* Cwp-faq css */


.cwp-faq-section {
  padding: 100px 20px;
  background: #F5F4FF;
}

.cwp-price-growth-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

section.cwp-faq-section .container {
  max-width: 947px;
  width: 100%;
}



.cwp-faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.cwp-faq-badge {
  background: #EBEBFF;
  color: #6366F1;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  text-transform: uppercase;
}

.cwp-faq-title {
  font-size: 32px;
  font-weight: 700;
  margin: 20px 0 10px;
  color: #111;
}

.cwp-faq-title span {
  color: #6366F1;
}

.cwp-faq-desc {
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}


.cwp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 55px;
}

.cwp-faq-item {
  overflow: hidden;
  transition: 0.3s ease;
}

.cwp-faq-question {
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: #FFFFFF;
  border-radius: 20px;
}

span.cwp-faq-icon svg {
  width: 15px;
}

.cwp-faq-question h3 {
  font-family: Inter Tight;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #000000;
  margin: 0;
}


.cwp-faq-icon {
  width: 40px;
  height: 40px;
  background: transparent;
  border-radius: 50%;
  position: relative;
  transition: 0.3s;
  border: 1px solid #DBDFE9;
  display: flex;
  align-items: center;
  justify-content: center;
}


.cwp-faq-item.active .cwp-faq-icon svg path {
  stroke: #fff;
  fill: #fff;
}


.cwp-faq-item.active .cwp-faq-icon {
  transform: rotate(180deg);
  background: #6366F1;
}

.cwp-faq-item.active .cwp-faq-icon::before {
  color: #fff;
}

.cwp-faq-answer {
  display: none;
  padding: 30px;
  color: #666666;
  font-family: Inter Tight;
  font-weight: 500;
  font-size: 16px;
  line-height: 180%;
  letter-spacing: 0%;
  vertical-align: middle;
}

.cwp-faq-answer p {
  margin: 0;
}

@media screen and (max-width: 1024px) {
  .cwp-faq-section {
    padding: 80px 20px;
  }

  .cwp-faq-title {
    font-size: 28px;
  }

  section.cwp-faq-section .container {
    margin: 0;
    padding: 0;
  }

  .cwp-pricing-plan-container {
    margin-top: 0;
    padding: 40px 20px;
  }

  .cwp-pricing-plan-container-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .cwp-pricing-plan-container-inner .cwp-pricing-plan-card {
    max-width: 45%;
    flex: 1 1 45%;
    padding: 25px;
  }

  .cwp-pricing-plan-card-main {

    margin: 0;
  }

  .cwp-banner-wrapper {

    min-height: auto;

  }

  .cwp-pricing-plan-card.cwp-featured {
    width: 100% !important;
    max-width: 100%;
  }

  .cwp-pricing-plan-price {
    font-size: 42px;
  }

  .cwp-price-growth-section {
    padding: 60px 20px;
  }

  .cwp-price-growth-title {
    font-size: 36px;
    line-height: 1.2;
  }

  .cwp-price-growth-item {
    padding: 30px 20px;
  }

  .cwp-money-back-main {
    padding: 100px 20px;
  }

  .cwp-money-back-guarantee-section {
    max-width: 90%;
    padding: 40px;
  }

  .cwp-growth-counter-section {
    height: auto;
    margin-top: 0;
    padding: 60px 20px;
    justify-content: center;
  }

  .cwp-growth-counter-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .cwp-growth-counter-stat-item:nth-child(2n)::after {
    display: none;
  }

  .cwp-trusted-bussiness-section {
    padding: 80px 20px;
  }

  .cwp-trusted-bussiness-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .cwp-trusted-bussiness-section h2.cwp-price-growth-title {
    font-size: 34px;
  }
}

@media screen and (max-width: 767px) {
  .cwp-faq-section {
    padding: 50px 15px;
  }

  .cwp-faq-header {
    margin-bottom: 30px;
  }

  .cwp-faq-title {
    font-size: 24px;
    line-height: 1.2;
  }

  .cwp-faq-desc {
    font-size: 14px;
    line-height: 1.5;
  }

  .cwp-faq-list {
    margin-top: 30px;
    gap: 15px;
    padding: 0 px;
  }

  .cwp-faq-question {
    padding: 20px;
    border-radius: 15px;
  }

  .cwp-faq-question h3 {
    font-size: 16px;
    line-height: 1.4;
    padding-right: 15px;
  }

  .cwp-faq-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }

  .cwp-faq-answer {
    padding: 0 20px 20px;
    font-size: 14px;
    line-height: 1.6;
  }

  .cwp-faq-badge {
    font-size: 10px;
    padding: 4px 12px;
  }

  .cwp-pricing-plan-container {
    padding-bottom: 60px;
  }

  .cwp-pricing-plan-container-inner .cwp-pricing-plan-card {
    max-width: 100%;
    flex: 1 1 100%;
    padding: 20px;
  }

  .cwp-pricing-plan-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .cwp-pricing-plan-price {
    font-size: 36px;
    line-height: 1.2;
  }

  .cwp-old-price {
    font-size: 22px;
  }

  .cwp-pricing-plan-button {
    font-size: 16px;
    padding: 15px;
  }

  .cwp-bonus-box {
    width: 100%;
    box-sizing: border-box;
    padding: 20px;
  }

  .cwp-pricing-plan-card-main {
    margin-top: 0;
  }

  .cwp-price-growth-section {
    padding: 40px 15px;
  }

  .cwp-price-growth-title {
    font-size: 28px;
    line-height: 1.2;
    margin-top: 15px;
  }

  .cwp-price-growth-subtitle {
    font-size: 16px;
    line-height: 1.5;
  }

  .cwp-price-growth-item {
    flex-direction: column;
    text-align: center;
    padding: 25px 15px;
    gap: 15px;
  }

  .cwp-price-growth-btn {
    width: 100%;
    justify-content: center;
    font-size: 16px;
    padding: 14px 20px;
  }

  .cwp-money-back-main {
    padding: 60px 15px;
  }

  .cwp-money-back-guarantee-section {
    padding: 30px 20px;
    margin-bottom: 20px;
    text-align: center;
  }

  .cwp-money-back-guarantee-content-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .cwp-money-back-guarantee-signature-area {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .cwp-growth-counter-section {
    padding: 50px 15px;
    padding-bottom: 50px;
  }

  .cwp-growth-counter-stats-grid {
    grid-template-columns: 1fr;
    margin-bottom: 40px;
  }

  .cwp-growth-counter-stat-item::after {
    display: none;
  }

  .cwp-growth-counter-feature-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    gap: 12px;
  }

  .cwp-trusted-bussiness-section {
    padding: 60px 15px;
  }

  .cwp-trusted-bussiness-grid {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .cwp-trusted-bussiness-section h2.cwp-price-growth-title {
    font-size: 26px;
    line-height: 1.2;
  }
}

@media screen and (max-width: 480px) {
  .cwp-faq-question h3 {
    font-size: 15px;
  }

  .cwp-faq-title {
    font-size: 22px;
  }

  .cwp-pricing-plan-price {
    font-size: 32px;
  }

  .cwp-price-growth-title {
    font-size: 24px;
  }

  .cwp-growth-counter-number,
  .cwp-growth-counter-suffix {
    font-size: 28px;
  }

  .cwp-trusted-bussiness-section h2.cwp-price-growth-title {
    font-size: 22px;
  }

  .cwp-price-growth-title {

    text-align: center;
  }
}


/* Cwp-faq css */





/* Cwp-ready-to-unlock  css */
.cwp-ready-top-unlock-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  background-image: url(..//images/cubewp-home/ready-to-unlock.png);
  height: 544px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: -94px;
}

.cwp-ready-top-unlock-container {
  margin: 0 auto;
  padding-top: 150px;
  position: relative;
}

.cwp-ready-top-unlock-shape {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
}

.cwp-ready-top-unlock-title {
  color: #FFFFFF;
  font-family: Inter Tight;
  font-weight: 500;
  font-size: 64px;
  line-height: 58px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  margin-bottom: 22px;
}

.cwp-ready-top-unlock-stroke {
  display: block;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.6);
  margin-top: 13px;
}

.cwp-ready-top-unlock-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 22px 38px;
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  position: relative;
  transition: all 0.3s ease;
  background: linear-gradient(90deg, rgba(152, 16, 250, 0.2) 0%, rgba(21, 93, 252, 0.2) 100%);
  font-family: Inter Tight;
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: capitalize;
}


.cwp-ready-top-unlock-btn:hover {
  background: linear-gradient(90deg, #4F46E5, #7C3AED);
  box-shadow: 0px 10px 20px rgba(79, 70, 229, 0.4);
  transform: translateY(-2px);
}


@media screen and (max-width: 1024px) {
  .cwp-ready-top-unlock-section {
    height: auto;
    min-height: 450px;
    margin-top: 0;
    padding: 80px 20px;
  }

  .cwp-ready-top-unlock-container {
    padding-top: 0;
  }

  .cwp-ready-top-unlock-title {
    font-size: 48px;
    line-height: 1.1;
  }
}

@media screen and (max-width: 767px) {
  .cwp-ready-top-unlock-section {
    height: auto;
    min-height: 400px;
    padding: 60px 15px;
    margin-top: 0;
    background-size: cover;
    background-position: center;
  }

  .cwp-ready-top-unlock-container {
    padding: 0;
  }

  .cwp-ready-top-unlock-title {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .cwp-ready-top-unlock-stroke {
    font-size: 30px;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.6);
    margin-top: 8px;
  }

  .cwp-ready-top-unlock-btn {
    width: 100%;
    max-width: 300px;
    padding: 18px 25px;
    font-size: 16px;
    justify-content: center;
  }

  .cwp-ready-top-unlock-shape {
    width: 150px;
    top: -50px;
  }

  .cwp-foooter-top-bar {
    padding: 30px 15px;
  }
}

@media screen and (max-width: 480px) {
  .cwp-ready-top-unlock-section {
    min-height: 350px;
    padding: 50px 15px;
  }

  .cwp-ready-top-unlock-title {
    font-size: 26px;
  }

  .cwp-ready-top-unlock-stroke {
    font-size: 24px;
  }

  .cwp-foooter-top-item {
    font-size: 12px;
    text-align: center;
  }
}


/* Cwp-ready-to-unlock css */





/* cwp footer top css */

.cwp-foooter-top-bar {
  background-color: #1F183C;
  padding: 100px 20px;
}

.cwp-foooter-top-container {
  max-width: 1118px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.cwp-foooter-top-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #FFFFFF;
  font-family: Inter Tight;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0%;
  vertical-align: middle;
}



@media screen and (max-width: 1024px) {
  .cwp-foooter-top-bar {
    padding: 60px 20px;
  }

  .cwp-foooter-top-container {
    justify-content: center;
    gap: 30px;
  }
}

@media screen and (max-width: 767px) {
  .cwp-foooter-top-bar {
    padding: 40px 15px;
  }

  .cwp-foooter-top-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    max-width: 280px;
    margin: 0 auto;
  }

  .cwp-foooter-top-item {
    font-size: 15px;
    line-height: 1.4;
    gap: 10px;
  }

  .cwp-foooter-top-item img,
  .cwp-foooter-top-item svg {
    width: 20px;
    height: 20px;
  }
}

@media screen and (max-width: 480px) {
  .cwp-foooter-top-bar {
    padding: 35px 15px;
  }

  .cwp-foooter-top-item {
    font-size: 14px;
  }
}


/* cwp footer top css */



/* cwp footer css */


.cwp-footer-col ul li {
  margin-bottom: 12px;
}

.cwp-footer-col ul li a {
  text-decoration: none;
  color: #FFFFFF;
  font-family: Inter Tight;
  font-weight: 400;
  font-size: 16px;
  line-height: 38px;
  letter-spacing: 0%;
  vertical-align: middle;
}

.cwp-footer-section {
  padding: 50px 0;
  background: #171130;
}

.cwp-footer-container {
  max-width: 1358px;
  margin: 0 auto;

}

.cwp-footer-top {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 50px;
  align-items: center;
}

.cwp-footer-brand {
  max-width: 449px;
  width: 100%;
}

.cwp-footer-logo {

  margin-bottom: 22px;
}

.cwp-footer-brand-text {
  color: #FFFFFF;
  font-family: Inter Tight;
  font-weight: 400;
  font-size: 16px;
  line-height: 22.65px;
  letter-spacing: 0%;
  vertical-align: middle;
  margin-bottom: 66px;
}


.cwp-footer-newsletter label {
  display: block;
  color: #FFFFFF;
  font-family: Inter Tight;
  font-weight: 500;
  font-size: 17px;
  line-height: 25px;
  letter-spacing: 0%;
  text-align: left;
  margin-bottom: 31px;
}

.cwp-footer-input-group {
  display: flex;
  padding-bottom: 20px;
  border-bottom: 1.38px solid #FFFFFF;
}


.cwp-footer-input-group button {
  border: unset;
  background: transparent;
}

.cwp-footer-input-group input {
  background: transparent;
  border: none;
  width: 100%;
  outline: none;
  color: #DBDFE980;
  font-family: Inter Tight;
  font-weight: 400;
  font-size: 18px;
  line-height: 30.33px;
  letter-spacing: 0%;
}


.cwp-footer-links-grid {
  display: flex;
  gap: 40px;
  flex: 2;
  max-width: 682px;
  justify-content: space-between;
}

.cwp-footer-col h4 {
  margin-bottom: 22px;
  color: #FFFFFF;
  font-family: Inter Tight;
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0%;
  vertical-align: middle;
}

.cwp-footer-col ul {
  list-style: none;
  padding: 0;
}

.cwp-footer-col ul li {
  margin-bottom: 12px;
}

 

.cwp-footer-col ul li a:hover {
  color: #ffffff;
}

.cwp-footer-awards {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  background: #1F183C;
  padding: 50px;
}


span.cwp-price-growth-badge {
  padding: 8px 17px;
  border-radius: 50px;
  display: inline-block;
  background: linear-gradient(90deg, #F3E8FF 0%, #DBEAFE 100%);
  font-family: Inter Tight;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
  text-transform: uppercase;
  color: #9810FA;
}

.cwp-price-growth-header h2.cwp-price-growth-title {
  color: #000000;
  font-family: Inter Tight;
  font-weight: 500;
  font-size: 44px;
  line-height: 48.6px;
  letter-spacing: 0px;
  vertical-align: middle;
  margin-top: 22px;
  margin-bottom: 12px;
}

.cwp-price-growth-header h2.cwp-price-growth-title span {
  color: #5641F3;
  font-weight: 700;
}


.cwp-price-growth-header p.cwp-price-growth-subtitle {
  color: #666666;
  font-family: Inter Tight;
  font-weight: 400;
  font-size: 20px;
  line-height: 37px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  margin: 0;
}

.cwp-footer-bottom {
  padding-top: 24px;
  color: #FFFFFF;
  font-family: Inter Tight;
  font-weight: 400;
  font-size: 16px;
  line-height: 22.65px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
}

.cwp-footer-bottom p {
  margin: 0;
}

.cwp-footer-bottom a {
  text-decoration: none;
  color: #fff;
}




@media (max-width: 1024px) {
  .cwp-footer-top {
    flex-direction: column;
    gap: 60px;
  }

  .cwp-footer-brand {
    max-width: 100%;
  }
}


@media (max-width: 768px) {
  .cwp-footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .cwp-footer-links-grid {
    grid-template-columns: 1fr;
  }

  .cwp-footer-awards {
    gap: 10px;
  }

  .cwp-award-item img {
    height: 60px;
  }
}


@media (max-width: 991px) {
  .cwp-footer-top {
    flex-direction: column;
    gap: 40px;
  }

  .cwp-footer-brand {
    max-width: 100%;
    text-align: center;
  }

  .cwp-footer-logo {
    margin: 0 auto 20px;
  }

  .cwp-footer-input-group {
    margin: 0 auto;
    max-width: 400px;
  }

  .cwp-footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}


@media (max-width: 767px) {
  .cwp-footer-section {
    padding: 60px 20px 20px;
  }

  .cwp-footer-links-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cwp-footer-col ul {
    padding: 0;
    list-style: none;
  }

  .cwp-footer-awards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 30px 0;
    border-top: 1px solid #eee;
    margin-top: 40px;
  }

  .cwp-award-item img {
    height: 40px;
    width: auto;
  }

  .cwp-footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 13px;
  }

  .cwp-footer-bottom p {
    line-height: 1.6;
  }
}

@media (max-width: 1024px) {
  .cwp-footer-links-grid {
    width: 100%;
  }

  .cwp-footer-section {
    padding: 50px 20px;

  }

  .cwp-footer-newsletter label {
    text-align: center;
  }
}

/* cwp footer css */
 
.cwp-builders-container .cwp-builders-image-wrapper {
    text-align: center; 
    padding: 50px;
    border-radius: 50px;
    max-height: 400px;
}

.cwp-builders-container .cwp-builders-image-wrapper  .cwp-builders-main-img {
    width: auto;
    height: 100%;
}

 
.cwp-builders-container.cubewp-frontend .cwp-builders-image-wrapper { 
    background-color: #fcda9e; 
}

.cwp-builders-container.cubewp-payments .cwp-builders-image-wrapper { 
    background-color: #9eeafd; 
}
 .cwp-builders-container.cubewp-inbox .cwp-builders-image-wrapper { 
    background-color: #efcfff; 
}

 .cwp-builders-container.cubewp-reviews .cwp-builders-image-wrapper { 
    background-color: #9efdf3; 
}

.cwp-builders-container.cubewp-booster .cwp-builders-image-wrapper { 
    background-color: #fdbd9e; 
}
.cwp-builders-container.cubewp-bookings .cwp-builders-image-wrapper { 
    background-color: #9ecbfd; 
}
 