.body-wrapper:has(.pwr-header--transparent):not(:has(.pwr-header-top--transparent)) .pwr-sec--first-with-header, .pwr-sec--first-with-header.pwr-sec--first-with-transparent-header {
    padding-top: 140px;
}

.rc-anchor-invisible {
    height: 30px !important;
    width: 128px !important;
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: flex !important;
}

.rc-anchor-invisible-text {
    background: #1a73e8 !important;
    color: white !important;
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: flex !important;
    -webkit-flex-basis: 166px !important;
    flex-basis: 166px !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
    flex-direction: column !important;
    -webkit-box-flex: 1 !important;
    -webkit-flex-grow: 1 !important;
    flex-grow: 1 !important;
    font-family: 'Manrope', Roboto, helvetica, arial, sans-serif !important;
    font-size: 8px !important;
    font-weight: 400 !important;
    height: 100% !important;
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
    justify-content: center !important;
    line-height: 20px !important;
    padding: 0 16px !important;
    white-space: nowrap !important;
}

.rc-anchor-invisible-nohover .rc-anchor-logo-img-large,
.rc-anchor-invisible-hover-hovered .rc-anchor-logo-img-large {
    -webkit-background-size: 24px 24px !important;
    background-size: 24px !important;
    margin: 8px 13px 0 13px !important;
    height: 24px !important;
    width: 24px !important;
}


/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

/* custom style for homepage bento grid for problem */
.problem-custom-box {
  background-color: #FCFBFF; /* background */
  border: 1px solid rgba(245, 245, 245, 0.04); /* F5F5F5 stroke with 96% transparency */
  padding: 16px; /* adjust as needed */
  border-radius: 6px; /* optional for smoother edges */
}



.chip-resultsv3-badge {
  padding: 4px 8px;
  border-radius: 14px;
  background: linear-gradient(90deg, #DFE7F8, #D7E0FF);
  display: inline-block;
  line-height: 1.2;
  font-weight: 600;
  font-family: 'Rubik', sans-serif;
  font-size: 11px;
}

.chip-resultsv3-text {
  background: linear-gradient(90deg, #0B49F4, #1f228a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Keep it lightweight; the JS drives the opacity */
.fade-on-exit {
  transition: opacity 160ms ease; /* subtle smoothing */
  will-change: opacity;
}

/* Optional: respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .fade-on-exit { transition: none; }
}


.magic-link{
  position: relative;
  display: inline-block;
  color: #111;                 /* base text color */
  text-decoration: none;
  padding-bottom: 2px;         /* breathing room for the stroke */

  /* Two layered underlines:
     1) a subtle base line (currentColor)
     2) a gradient line that animates in on hover */
  background-image:
    linear-gradient(currentColor, currentColor),
    linear-gradient(90deg, #5ab4ff 0%, #2e8ef7 50%, #006dd9 100%);
  background-repeat: no-repeat, no-repeat;
  background-position: 0 100%, 0 100%;
  background-size: 100% 2px, 0% 2px;   /* gradient starts hidden */

  transition:
    color .28s ease,
    background-size .44s cubic-bezier(.2,.8,.2,1);
}

/* Custom code for links with stroke below and  */
 /* ===== Magic Link ===== */
    .magic-link{
      /* tweakables */
      --link-base: #13151B;   /* text color at rest */
      --link-hover: #006dd9;  /* text color on hover */
      --underline-w: 80%;
      --underline-h: 1px;
      color: #13151B !important;
      position: relative;
      display: inline-block;
   font-weight:700!important;
      font-family: 'Rubik', sans;
      text-decoration: none;
      padding-bottom: 2px;             /* space for underline */

      /* Layer 1: base underline (visible at rest, 70% width)
         Layer 2: gradient underline (animates in on hover) */
      background-image:
        linear-gradient(var(--link-base), var(--link-base)),
        linear-gradient(90deg, #5ab4ff 0%, #2e8ef7 50%, #006dd9 100%);
      background-repeat: no-repeat, no-repeat;
      background-position: left 100%, left 100%;
      background-size: var(--underline-w) var(--underline-h), 0% var(--underline-h);

      transition:
        color .28s ease,
        background-size .44s cubic-bezier(.2,.8,.2,1);
    }

    /* Arrow appears only on hover */
    .magic-link::after{
      content: "→";
      margin-left: .4em;
      opacity: 0;
      transform: translateX(-.25em);
      transition: opacity .28s ease, transform .28s ease;
    }

    /* Hover: swap underline to the gradient and change text color */
    .magic-link:hover{
      color: #006dd9!important;
      background-size: 0% var(--underline-h), var(--underline-w) var(--underline-h);
    }

    .magic-link:hover::after{
      opacity: 1;
      transform: translateX(0);
    }

    /* Optional: center the underline instead of left-align */
    /* .magic-link{ background-position: center 100%, center 100%; } */

    /* Accessibility: keyboard focus */
    .magic-link:focus-visible{
      outline: 2px solid var(--link-hover);
      outline-offset: 2px;
    }

    /* Respect reduced motion */
    @media (prefers-reduced-motion: reduce){
      .magic-link, .magic-link::after{ transition: none; }
    }


/* Wrapper */
.bb-simple-bullets {
  --bb-bullet-color: #333333;
  --bb-bullet-size: 0.375em;   /* ~6px at 16px; scales with text */
  --bb-indent: 1rem;
  --bb-gap: 0.4em;
  --bb-lh: 1.6;                /* <-- set to your LI line-height */
  --bb-nudge: 6px;             /* fine-tune up/down if needed */
  font-size: 0.8em;            /* your 20% smaller text */
}

/* Neutralize HubSpot's ::before bullets in this scope */
.bb-simple-bullets ul li::before,
.bb-simple-bullets ol li::before,
.bb-simple-bullets ul:not(.inputs-list):not([style*="list-style-type"]) li::before {
  content: none !important;
}

/* Base list reset */
.bb-simple-bullets ul,
.bb-simple-bullets ol {
  list-style: none !important;
  padding-left: 0 !important;
  margin: 0;
}

.bb-simple-bullets li {
  position: relative;
  margin: var(--bb-gap) 0;
  padding-left: calc(var(--bb-indent) + var(--bb-bullet-size));
  line-height: var(--bb-lh);   /* controls first-line height */
}

/* Dot centered to the FIRST line only */
.bb-simple-bullets li::after {
  content: "";
  position: absolute;
  left: 0;
  width: var(--bb-bullet-size);
  height: var(--bb-bullet-size);
  background: var(--bb-bullet-color);
  border-radius: 50%;
  /* half of the first line-height (in em) */
  top: calc((var(--bb-lh) * 1em) / 2);
  transform: translateY(calc(-50% + var(--bb-nudge)));
}

/* Optional: nested lists */
.bb-simple-bullets li ul,
.bb-simple-bullets li ol {
  margin-top: 0.25em;
  padding-left: var(--bb-indent);
}

/* Optional: tighten markdown-style <li><p> */
.bb-simple-bullets li > p { margin: 0; }



/* Animation on hover for bento grid sections: shadow, scale and brightness */
.pwr-adc__content-wrapper--border-radius {
  position: relative;
  display: block;
  isolation: isolate;
  transition: box-shadow 0.25s ease;
}

/* dark overlay */
.pwr-adc__content-wrapper--border-radius::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 60, 140, 0);  /* start transparent */
  transition: background 0.25s ease;
  pointer-events: none;
  z-index: 1;
}

.pwr-adc__content-wrapper--border-radius:hover {
  box-shadow: 0 12px 9px rgba(64, 119, 255, 0.15); /* subtle blue glow */
}

.pwr-adc__content-wrapper--border-radius:hover::after {
  background: rgba(20, 60, 140, 0.06); /* darker tint on hover */
}




/* Animation on hover for bento grid sections */



@media (max-width: 767px) {
  .desktop-breaks {
    display: none;
  }
}

.responsive-text {
    width: 62%; /* 50% width on desktop */
}


/* add pading */

    .padding-text-bento {
   
      padding-right:20px;
      padding-left:20px;
      padding-top:10px;
      
    }
}

/* Make the text 100% width on mobile */
@media (max-width: 850px) {
    .responsive-text {
        width: 100% !important;
      padding:30px;
    }
}

.bento-grid-shadow {

  background: #fff!important;
  box-shadow: 0px 4px 12.87px rgba(39, 29, 141, 0.06)!important;
border: 1px solid #DEDEE9!important;
  
 
}


.mobile-spacer {
    display: none; /* Hide by default */
  }

  @media (max-width: 767px) {
    /* Show spacer on mobile devices with max-width 767px */
    .mobile-spacer {
      display: block;
      height: 45px;
    }
  }




.mobile-spacer {
    display: none; /* Hide by default */
  }

  @media (max-width: 767px) {
    /* Show spacer on mobile devices with max-width 767px */
    .mobile-spacer {
      display: block;
      height: 45px;
    }
  }

 .desktop-spacer {
    display: none; /* Hide by default */
  }

  @media (min-width: 768px) {
    /* Show spacer on desktop devices with min-width 768px */
    .desktop-spacer {
      display: block;
      height: 15px;
    }
  }

.pwr-image-box {

  background: #fff!important;
  box-shadow: 0px 4px 12.87px rgba(39, 29, 141, 0.06)!important;
border: 1px solid #DEDEE9!important;
  border-radius:10px!important;
 
}


.blue-gradient-text {
  background: linear-gradient(to right, #006DD9, #560AF6);
  -webkit-background-clip: text;
  color: transparent;
  background-clip: text;
}

.pwr-sec-image-boxes__intro-sec {
    margin-bottom: 20px!important;
  
}

.hs-form-b66943ed-d62f-4697-9a26-a8f8e09bfff6_3b0a66d9-0c94-4cd5-b7e3-57bbcd9a568e .legal-consent-container .hs-richtext, .hs-form-b66943ed-d62f-4697-9a26-a8f8e09bfff6_3b0a66d9-0c94-4cd5-b7e3-57bbcd9a568e .legal-consent-container label:not(.hs-error-msg) {
   
    color: #33475b;
font-size: .500rem !important!
    margin: 0 0 1.4rem!important!
     font-family: 'Manrope', sans-serif;
}


#hsForm_b66943ed-d62f-4697-9a26-a8f8e09bfff6 .hs-submit {
    display: inline-block!important;
  margin-top: 5px!important;
    padding: 0 !important;
}

#hsForm_b66943ed-d62f-4697-9a26-a8f8e09bfff6 .hs-form-field {
    margin-bottom: 2px!important;
 background:  #0e1926!important;

}

#hsForm_b66943ed-d62f-4697-9a26-a8f8e09bfff6  .hs-button, .hs-form-b66943ed-d62f-4697-9a26-a8f8e09bfff6_3b0a66d9-0c94-4cd5-b7e3-57bbcd9a568e .hs-button:hover, .hs-form-b66943ed-d62f-4697-9a26-a8f8e09bfff6_3b0a66d9-0c94-4cd5-b7e3-57bbcd9a568e .hs-button:hover:not(.inactive), .hs-form-b66943ed-d62f-4697-9a26-a8f8e09bfff6_3b0a66d9-0c94-4cd5-b7e3-57bbcd9a568e .hs-button:focus, .hs-form-b66943ed-d62f-4697-9a26-a8f8e09bfff6_3b0a66d9-0c94-4cd5-b7e3-57bbcd9a568e .hs-button:active, .hs-form-b66943ed-d62f-4697-9a26-a8f8e09bfff6_3b0a66d9-0c94-4cd5-b7e3-57bbcd9a568e .hs-button:active:not(.inactive):not(.link) {
    background: #006DD9!important;
    border-color: #006DD9!important;
    color: #ffffff!important;
    font-size: 12px!important;!important;
    line-height: 12px!important;
    font-family: 'Manrope', sans-serif!important;
      padding: 12px 18px!important;
  border-radius: 4px !important;
    border-bottom-right-radius: 4px!important;
  border-top-right-radius: 4px!important;
  border-bottom-left-radius: 4px!important;
  border-top-left-radius: 4px!important;
}


#hsForm_b66943ed-d62f-4697-9a26-a8f8e09bfff6 form input[type=color], form input[type=date], form input[type=datetime-local], form input[type=datetime], form input[type=email], form input[type=file], form input[type=month], form input[type=number], form input[type=password], form input[type=search], form input[type=tel], form input[type=text], form input[type=time], form input[type=url], form input[type=week], form select, form textarea {
    background-color: rgba(var(--clr-base-dk-rgb), .05);
    border: 0;
    border-radius: var(--br-input);
    padding: 12px 17px;
  font-size: 12px;
}

.legal-consent-container, .legal-consent-container p {

    font-size: 8px!important;
    
}




body .hs-form-field {
    margin-bottom: 5px;
    text-align: left;
}

.dnd_area-row-0-background-image {
  /*  background-color: #010d1a; /* Fallback color in case the image doesn't load */
}

.plyr__controls {
    display: none !important;
}

.plyr__control{
    display: none !important;
}


.pwr-sec-services {
    border-radius: 40px;
}

.pwr-social-icon {
    fill:#ffffff;
    color: #ffffff;
    display: inline-block;
    padding: 0 0.3em;
  margin-top:10px;
    vertical-align: middle;
}

.pwr-footer-company-info__icons {
    font-size: 30px;
}

.pwr-footer-advanced .pwr-footer-company-info__icons .pwr-adc-content__social-icon {
    font-size: 30px;
}


.pwr-sec__title-intro {
  font-family: Rubik, sans-serif;
    color: #9398a8;
}


.pwr-sec-cta {
 border-radius: 10px;
    padding-right: 40px;
padding-left: 40px;
  padding-top: 40px;
padding-bottom: 40px;
}

.content-containerx2 {
  display: flex;
  flex-wrap: wrap;
}

.content-boxx2 {
  width: 49%;
  box-sizing: border-box;
  padding: 20px;
}

@media (max-width: 991px)
.pwr-sec-mockup {
    padding-top: 10px;
  padding-bottom: 10px;
}
.element.style {
    height: 100% !important;
}



@media screen and (max-width: 768px) {
  .content-boxx2 {
    width: 100%;
    padding: 2px;
  }
}

.pwr-sec-form__intro-sec--hor-boxed {
    width: 40%;
}

.pwr-sec-form__form-wrapper--hor-boxed {
    margin-left: 7%;
    width: 50%;
}

/* Fix spacing on mobile */

@media only screen and (max-width: 600px) {
  
  .pwr-sec--first-with-header {
  
  padding-top: 55px!important;
  padding-bottom: 1px!important;
  }
  
  .pwr-sec-mockup {
    padding-top: 10px;
  padding-bottom: 10px;
}
  
  .height100 {
  height: 100%;!important;}
  
  
.element.style {
    height: 100% !important;}
  
  .pwr-sec-mockup__mockup-wrapper{
    
    
    height: 95%  !important;
    
  }
  .sec-mockup-content-height{
    height: 95%  !important;
    
  }
  
  .element.style {
    height: 100% !important;
}
  .pwr-sec-mockup__content--pos-vert{
    padding-bottom: 0px !important;
}
  
  
  }

/* Hide on mobile and tablet devices */

@media only screen and (max-width: 1024px) {
  .mobiletablet-hide {
    display: none;
  }
}

/* Hide on mobile devices */
@media only screen and (max-width: 600px) {
  .mobile-hide {
    display: none;
  }

  .show-on-mobile {
    display: block !important;
  }
  
  .pwr-adc__content-wrapper--ix-0-3-1{
    display: none;
    padding:0px!important;
  }
  
  .pwr-adc__content-wrapper--ix-0-4-1{
    display: none;
    padding:0px!important;
  }
  
  .pwr-adc__content-wrapper--padding, div[class*=adc__col--width-] {
    padding: 5px!important;
}
  
}

.pwr-touch-btn.pwr-touch-btn--dark {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}


/* Hide on tablet devices */
@media only screen and (min-width: 601px) and (max-width: 990px) {
  .tablet-hide {
    display: none;
  }

  .show-on-tablet {
    display: block !important;
  }
  
  
  #hs_cos_wrapper_module_17314049812936 > div > div.pwr-sec-mockup__mockup-wrapper  {
    display: none;
  }
  
}

/* Hide on desktop devices */
@media only screen and (min-width: 991px) {
  .desktop-hide {
    display: none;
  }
}


/* Hide on desktop and tablet devices */
@media only screen and (min-width: 601px) {
  .desktop-tablet-hide {
    display: none;
  }
  
  
  
  #hs_cos_wrapper_module_17417821360417, #hs_cos_wrapper_module_17417821360416,  #hs_cos_wrapper_module_17398288902613, #hs_cos_wrapper_module_1739828893143, #hs_cos_wrapper_module_17404174390375, #hs_cos_wrapper_module_17404187356723{
    display: none;
}


/* Hide both modules on desktop and tablet */
@media (min-width: 768px) {
  #hs_cos_wrapper_module_17307261760987 {
    display: none;
  }
}


  



@media (min-width: 768px) {
 #hs_cos_wrapper_module_173140573376411{
    display: none;
  }
}

/* Home 2024 template - Hide both modules on desktop and tablet */
@media (min-width: 768px) {
  #hs_cos_wrapper_module_17314057337649 {
    display: none;
  }
}




@media (min-width: 768px) {
 #hs_cos_wrapper_module_1730726579509{
    display: none;
  }
}


.button:hover {
  border-radius: 100px 100px 0 100px; /* Set the lower right corner to 0 on hover */
}


.cta_button:hover {
  border-radius: 100px 100px 0 100px; /* Set the lower right corner to 0 on hover */
}

.attributes__col-item:hover {
  border-radius: 100px 100px 0 100px; /* Set the lower right corner to 0 on hover */
  box-shadow: 0 0 10px rgba(0, 109, 217, 0.1);
}
/*
.pwr--colored-box.pwr--dark {
 background: rgba(47, 47, 47, 0.3)!important;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1)!important;
backdrop-filter: blur(5px)!important;
-webkit-backdrop-filter: blur(5px)!important;

}




.pwr--colored-box {
  background: rgba(47, 47, 47, 0.3);
   background: transparent!important;

}*/






.engage-gradient {
	--x: 50%;
	--y: 50%;
	padding: 0.6em 1em;
	color: white;
  font-size: 16px;
	outline: none;
	border-radius: 100px;
	border: 1.7px solid transparent;
	background: linear-gradient(#010d1a, #010d1a) padding-box, linear-gradient(90deg,#1337B7, #0D73BC) border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@600&display=swap');

.protect-gradient {
	--x: 50%;
	--y: 50%;
	padding: 0.6em 1em;
	color: white;
	outline: none;
  font-size: 16px;
	border-radius: 100px;
	border: 1.7px solid transparent;
	background: linear-gradient(#010d1a, #010d1a) padding-box, linear-gradient(90deg,#B71313, #BC760D) border-box;
}


.analyze-gradient {
	--x: 50%;
	--y: 50%;
	padding: 0.6em 1em;
  font-size: 16px;
	color: white;
	outline: none;
	border-radius: 100px;
	border: 1.7px solid transparent;
	background: linear-gradient(#010d1a, #010d1a) padding-box, linear-gradient(90deg,#8313B7, #B80DBC) border-box;
}


.engages-gradient {
	--x: 50%;
	--y: 50%;
	padding: 0.5em 1em;
  font-weight: 500; /* Semi-bold */
	font-family: 'Rubik', sans-serif; /* Rubik font */
	color: #006DD9; /* Blue for engage */
	font-size: 14px;
	outline: none;
	border-radius: 100px;
	border: 1.55px solid transparent;
	background: linear-gradient(#EEF4FE, #EEF4FE) padding-box, linear-gradient(90deg,#006DD9, #006DD9) border-box;
}

.protects-gradient {
	--x: 50%;
	--y: 50%;
	padding: 0.5em 1em;
	color: #D33334; /* Red for protect */
  font-weight: 500; /* Semi-bold */
	font-family: 'Rubik', sans-serif; /* Rubik font */
	outline: none;
	font-size: 14px;
	border-radius: 100px;
	border: 1.55px solid transparent;
	background: linear-gradient(#FCEDED, #FCEDED) padding-box, linear-gradient(90deg,#D33334, #D33334) border-box;
}

.analyzes-gradient {
	--x: 50%;
	--y: 50%;
	padding: 0.5em 1em;
	font-size: 14px;
  font-weight: 500; /* Semi-bold */
	font-family: 'Rubik', sans-serif; /* Rubik font */
	color: #0f0f0f; /* Purple for analyze */
	outline: none;
	border-radius: 100px;
	border: 1.55px solid transparent;
	background: linear-gradient(#f2f2f3, #f2f2f3) padding-box, linear-gradient(90deg,#0f0f0f, #0f0f0f) border-box;
}

.crisis-gradient {
	--x: 50%;
	--y: 50%;
	padding: 0.5em 1em;
	font-size: 14px;
  font-weight: 500; /* Semi-bold */
	font-family: 'Rubik', sans-serif; /* Rubik font */
	color: #E95B06; /* Purple for analyze */
	outline: none;
	border-radius: 100px;
	border: 1.55px solid transparent;
	background: linear-gradient(#faede5, #faede5) padding-box, linear-gradient(90deg,#E95B06, #E95B06) border-box;
}

.inbox-gradient {
	--x: 50%;
	--y: 50%;
	padding: 0.5em 1em;
	font-size: 14px;
  font-weight: 500; /* Semi-bold */
	font-family: 'Rubik', sans-serif; /* Rubik font */
	color: #31AFDD; 
	outline: none;
	border-radius: 100px;
	border: 1.55px solid transparent;
	background: linear-gradient(#EBF7FC, #EBF7FC) padding-box, linear-gradient(90deg,#31AFDD, #31AFDD) border-box;
}


.publish-gradient {
	--x: 50%;
	--y: 50%;
	padding: 0.5em 1em;
	font-size: 14px;
  font-weight: 500; /* Semi-bold */
	font-family: 'Rubik', sans-serif; /* Rubik font */
	color: #19A890; 
	outline: none;
	border-radius: 100px;
	border: 1.55px solid transparent;
	background: linear-gradient(#E8F7F4, #E8F7F4) padding-box, linear-gradient(90deg,#19A890, #19A890) border-box;
}

.sentiment-gradient {
	--x: 50%;
	--y: 50%;
	padding: 0.5em 1em;
	font-size: 14px;
  font-weight: 500; /* Semi-bold */
	font-family: 'Rubik', sans-serif; /* Rubik font */
	color: #F456D2; 
	outline: none;
	border-radius: 100px;
	border: 1.55px solid transparent;
	background: linear-gradient(#FFECFB, #FFECFB) padding-box, linear-gradient(90deg,#F456D2, #F456D2) border-box;
}


.outbound-gradient {
	--x: 50%;
	--y: 50%;
	padding: 0.5em 1em;
	font-size: 14px;
  font-weight: 500; /* Semi-bold */
	font-family: 'Rubik', sans-serif; /* Rubik font */
	color: #651DC9; 
	outline: none;
	border-radius: 100px;
	border: 1.55px solid transparent;
	background: linear-gradient(#EBDCFF, #EBDCFF) padding-box, linear-gradient(90deg,#651DC9, #651DC9) border-box;
}


.pwr--dark ul:not(.hs-error-msgs):not(.inputs-list) li:before {
    background-color: #bdbdbd!important;
}



.menuhover:hover{
  background-color: #f2f4f9;
  border: 9px solid #f2f4f9;
border-radius: 6px;
   color: #006dd9!important;
   
}

.menuhover{
  border: 9px solid #fff;
 
}


.phover{
  color: #252525!important;
  font-size: 13.5px;
  font-weight:700;
   
}

.phover:hover{
  color: #006dd9!important;
   
}


.case-stud-bottom {
    backdrop-filter: blur(.40rem)!important;


    border: 0px solid hsla(0, 0%, 100%, .3)!important;
    border-radius: 8px!important;
}

.pwr-filter {
    background-color: #f4f6fa!important;

}


.pwr-post-featured {
    background-color: #010d1a!important;
}

.case-stud-links{
    font-size:0.7rem!important;

}



.body-container-wrapper--blog-post{ background-color: #010d1a!important;
}


.blacheaderblog{ background-color: #010d1a!important;
}

.body-wrapper.hs-blog-id-4189531857.hs-blog-listing.pwr-v--35.line-numbers .hs-content-id-157832603748 .hs-blog-post .hs-blog-id-4189531857 .body-container-wrapper--blog-post{
    background-color: #fff!important;
}



.pwr-post-featured .vanilla .pwr-post-featured--small .lazyloaded .pwr-post-featured--transparent-header{
    background-color: #010d1a!important;
}


.hs-blog-id-112741023319 .hs-blog-listing 
    .pwr-v--35 .line-numbers {
    background-color: #fff!important;
}.hs-blog-id-112741023319 .hs-blog-listing 
    .pwr-v--35 .line-numbers {
    background-color: #fff!important;
}

.line-numbers {
    background-color: #fff!important;
}

.pwr-v--35 {
    background-color: #fff!important;
}

.hs-blog-listing {
    background-color: #fff!important;
}

.hs-blog-id-112741023319 {
    background-color: #fff!important;
}

 .pwr-comparison-table {
    --compt-1st-col-width: 400px!important;
}

.pwr-comparison-table {
    --compt-2nd-col-width: 150px!important;
}

.pwr-comparison-table {
    --compt-3rd-col-width: 150px!important;
}

.pwr-comparison-table {
    --compt-4th-col-width: 150px!important;
}


@media only screen and (min-width: 601px)  {

.pwr-sec-form__intro-sec--hor-boxed {
    width: 50%;
}
.pwr-sec-form__intro-sec--hor-boxed {
    width: 50%;
} }
}

.pwr-sec-image-boxes__intro-sec {
    margin-bottom: 20px!important;
  
}


@media (max-width: 767px ) {
   .pwr-sec-form__intro-sec--hor-boxed {
    width: 100%;
}
.pwr-sec-form__intro-sec--hor-boxed {
    width: 100%;
} 


.pwr-sec-form__form-wrapper--hor-boxed {
 margin-left:0%!important;
    width: 100%!important;
}

}
}



@media {
    .pwr-touch-btn {
        display: !important;
    } }

  
  .pwr-touch-btn {
        display: !important; }
    
    
    
    .pwr-touch-btn__icon {
        display: !important; }


@media (max-width: 767px) {
  .dew_logos_marquee {
    display: none;
  }
}

/* Default style for inactive tabs (grayscale and 80% opacity) */
.features-tabber .features-tabber-item {
  opacity: 0.35;

  color: #8698b2;
}

/* Style for the active tab (full color and 100% opacity) */
.features-tabber .features-tabber-item.active {
  opacity: 1;
  filter: none;
  color: inherit;
}

.heading.heading-2 {
  max-width: 650px;
}


/* Style for rounded left side only */
.features-tabber-item {
  border-left-width: 4px;
  border-left-style: solid;
  padding: 16px 24px;
  cursor: pointer;
  border-left-color: transparent; /* Default state */
  border-top-left-radius: 3px; /* Round top-left corner */
  border-bottom-left-radius: 3px; /* Round bottom-left corner */
border-bottom-right-radius: 0px; /* Round bottom-left corner */
 border-top-right-radius: 0px;
  margin-bottom: 16px; /* Space between items */
  transition: background-color 0.3s ease, border-left-color 0.3s ease;
}

/* Non-active tabs */
.features-tabber .features-tabber-item {
  padding: 20px 44px;
  background-color: transparent; /* Non-active tab background */
  

  
}

.features-tabber-item-description p {
   
  color: #677489;
font-family: Rubik, sans-serif !important;
}


.features-tabber-item-description{
   
  color: #677489;
font-family: Rubik, sans-serif!important;
}

.features-tabber-item {
   
    padding: 20px 44px;
}

/* Active tab */
.features-tabber .features-tabber-item.active {
  
 
  box-shadow: 0px 4px 13px rgba(0, 0, 0, 0.01); /* Active tab shadow */
 
}

/* Hover effect for all tabs */
.features-tabber .features-tabber-item:hover {
  transform: scale(1.02); /* Slight size increase on hover */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01); /* Enhanced shadow effect on hover */
}

.container_bb_way {
  
    background: #FFFFFF;
    box-shadow: 0px 4px 6px rgba(35, 42, 182, 0.25);
  border-radius: 8px;
  border: 1px solid #F2F7FF;

}



.container_the_hard_way {
   background: #FFFFFF;
    border: 1px solid #DDDDDD;
    border-radius: 8px;
   
}


.hard_way_tag {
    background-color: #E6E6E6;
    border-radius: 10px;
    justify-content: center;
    align-self: center;
    align-items: center;
    height: 30px;
    padding: 8px 12px;
    font-weight: 600;
    display: flex;
  color: #303030;
}

.features-tabber-col-sm-6 {
        width: 60%;
        float: left;
    }
}


.heading {
    margin: 0 0 30px;
}


.solution-chip {
	--x: 50%;
	--y: 50%;
	padding: 0.4em 1.2em;
	font-size: 14px;
  font-weight: 550; /* Semi-bold */
	font-family: 'Rubik', sans-serif; /* Rubik font */
	color: #508CF4; 
	outline: none;
	border-radius: 100px;
	border: 1.55px solid transparent;
	background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg,#D0D0D0, #D0D0D0) border-box;
}


#hs_cos_wrapper_module_1729942909493 .features-tabber-row {
    margin-left: -15px;
    margin-right: -15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    flex-direction: row-reverse; /* Inverts the order */
align-items: center; /* Vertically aligns items */
}

.features-tabber-row {
   
align-items: center; /* Vertically aligns items */
}



#hs_cos_wrapper_widget_1729939696134 .features-tabber .features-tabber-item.active {
  /* Different colors for each row when active */
}
#hs_cos_wrapper_widget_1729939696134 .features-tabber .features-tabber-item:nth-child(1).active {
  border-left-color: #006DD9!important; /* Replace xxx with the desired color for the first row */
}

#hs_cos_wrapper_widget_1729939696134 .features-tabber .features-tabber-item:nth-child(2).active {
  border-left-color: #D33334!important; /* Replace yyy with the desired color for the second row */
}

#hs_cos_wrapper_widget_1729939696134 .features-tabber-item:nth-child(3).active {
  border-left-color: #651DC9!important; /* Replace zzz with the desired color for the third row */
}



#hs_cos_wrapper_module_1729942909493 .features-tabber .features-tabber-item.active {
  /* Different colors for each row when active */
}
#hs_cos_wrapper_module_1729942909493 .features-tabber .features-tabber-item:nth-child(1).active {
  border-left-color: #F456D2!important; /* Replace xxx with the desired color for the first row */
}

#hs_cos_wrapper_module_1729942909493 .features-tabber .features-tabber-item:nth-child(2).active {
  border-left-color: #31AFDD!important; /* Replace yyy with the desired color for the second row */
}

#hs_cos_wrapper_module_1729942909493 .features-tabber .features-tabber-item:nth-child(3).active {
  border-left-color: #19A890!important; /* Replace zzz with the desired color for the third row */*/
}

/* Home 2024 */
#hs_cos_wrapper_module_17314053256988 .features-tabber .features-tabber-item.active {
  /* Different colors for each row when active */
}
#hs_cos_wrapper_module_17314053256988 .features-tabber .features-tabber-item:nth-child(1).active {
  border-left-color: #006DD9!important; /* Replace xxx with the desired color for the first row */
}

#hs_cos_wrapper_module_17314053256988 .features-tabber .features-tabber-item:nth-child(2).active {
  border-left-color: #D33334!important; /* Replace yyy with the desired color for the second row */
}

#hs_cos_wrapper_module_17314053256988 .features-tabber-item:nth-child(3).active {
  border-left-color: #651DC9!important; /* Replace zzz with the desired color for the third row */
}



/* Home 2025 - first module  protection */
#hs_cos_wrapper_module_1739459702063 .features-tabber .features-tabber-item.active {
  /* Different colors for each row when active */
}
#hs_cos_wrapper_module_1739459702063 .features-tabber .features-tabber-item:nth-child(1).active {
  border-left-color: #006DD9!important; /* Replace xxx with the desired color for the first row */
}

#hs_cos_wrapper_module_1739459702063 .features-tabber .features-tabber-item:nth-child(2).active {
  border-left-color: #e76302!important; /* Replace yyy with the desired color for the second row */
}
}

/* Home 2025 - second module  engage  */
#hs_cos_wrapper_module_1739459711300 .features-tabber .features-tabber-item.active {
  /* Different colors for each row when active */
}
#hs_cos_wrapper_module_1739459711300 .features-tabber .features-tabber-item:nth-child(1).active {
  border-left-color: #006dd9!important; /* Replace xxx with the desired color for the first row */
}

#hs_cos_wrapper_module_1739459711300 .features-tabber .features-tabber-item:nth-child(2).active {
  border-left-color: #8d14e7!important; /* Replace yyy with the desired color for the second row */
}

/* Home 2025 - second module  engage - reverse  */

#hs_cos_wrapper_module_1739459711300 .features-tabber-row {
    margin-left: -15px;
    margin-right: -15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    flex-direction: row-reverse; /* Inverts the order */
align-items: center; /* Vertically aligns items */
}


}

/* Home 2025 - third  module  manage  */
#hs_cos_wrapper_module_1739362872050 .features-tabber .features-tabber-item.active {
  /* Different colors for each row when active */
}
#hs_cos_wrapper_module_1739362872050 .features-tabber .features-tabber-item:nth-child(1).active {
  border-left-color: #1ca991!important; /* Replace xxx with the desired color for the first row */
}

#hs_cos_wrapper_module_1739362872050 .features-tabber .features-tabber-item:nth-child(2).active {
  border-left-color: #f56dd7!important; /* Replace yyy with the desired color for the second row */
  

}
}






 /* Home 2024 */

#hs_cos_wrapper_module_173140532569810 .features-tabber .features-tabber-item.active {
  /* Different colors for each row when active */
}
#hs_cos_wrapper_module_173140532569810 .features-tabber .features-tabber-item:nth-child(1).active {
  border-left-color: #F456D2!important; /* Replace xxx with the desired color for the first row */
}

#hs_cos_wrapper_module_173140532569810 .features-tabber .features-tabber-item:nth-child(2).active {
  border-left-color: #31AFDD!important; /* Replace yyy with the desired color for the second row */
}

#hs_cos_wrapper_module_173140532569810 .features-tabber .features-tabber-item:nth-child(3).active {
  border-left-color: #19A890!important; /* Replace zzz with the desired color for the third row */*/
}






/* Home 2024 */
#hs_cos_wrapper_module_173140532569810 .features-tabber-row {
    margin-left: -15px;
    margin-right: -15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    flex-direction: row-reverse; /* Inverts the order */
align-items: center; /* Vertically aligns items */
}


@media (min-width: 1040px) {
.app-filters-with-search-app-filters-apps {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr!important;
    padding-left: 10px;
}}

.app-filters-btn {
    display: none;
}

 .app-filters-polyimg {
    display: none!important;
}


.app-filters-with-search-app-filters-search {
    display: none!important;
}


#hs_cos_wrapper_widget_1730495450954 .app-filters-with-search-app-filters-filters p {
    display: none!important;
}

.app-filters-with-search ul li {
    padding: 10px ;
    cursor: pointer;
    color: #171B25; /* Inactive color */
    background-color: transparent;
    border-radius: 5px;
}

.app-filters-with-search ul li.active {
    color: #171B25; /* Active text color */
    background-color: #EBF2FE; /* Active background color */
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.app-filters-with-search ul li:hover {
    background-color: #D8E6FF; /* Hover background color */
}

#hs_cos_wrapper_widget_1730495450954 .app-filters-with-search-app-filters-filters {
    margin: 5px 0;
    float: left;
    position: sticky;
    top: 0;
    background: #FFFFFF;
    padding: 20px;
    filter: drop-shadow(3px 3px 32px rgba(0, 9, 0, 0.))!important;
    border: 0px solid #cbcbcb!important;
    border-radius: 15px;
    z-index: 9999;
}



    .pwr-sec--boxed-w-content-in {
        padding-left: 30px!important;
        padding-right: 30px!important;
    
}



/* === BrandBastion Glass + Sparkle === */
/* ===== BrandBastion Glass (subtle shadows) + Rounded Gradient Stroke on Hover ===== */

.bb-glass {
  position: relative;
  overflow: hidden;
  border-radius: 16px;

  /* brand channels (for tiny blue tint if needed) */
  --bb-blue: 0, 109, 217;    /* #006DD9 */
  --bb-indigo: 98, 90, 245;  /* #625AF5 */
  --bb-violet: 113, 98, 252; /* #7162FC */

  /* base glassmorphism */
  background:
    radial-gradient(120% 120% at 100% -20%, rgba(77,135,228,.14), transparent 60%),
    radial-gradient(120% 120% at -20% 120%, rgba(0,76,239,.08), transparent 60%),
    rgba(255,255,255,0.65),
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.30) 1px, transparent 1px); /* faint noise */
  background-size: auto, auto, auto, 3px 3px;
  background-blend-mode: normal, normal, normal, overlay;

  backdrop-filter: blur(14px) saturate(118%);
  -webkit-backdrop-filter: blur(14px) saturate(118%);

  /* toned-down depth */
  border: 1px solid #fff;
 /*  box-shadow:
    0 1px 0 rgba(255,255,255,0.22) inset,        
    0 6px 16px rgba(var(--bb-blue), 0.12),      
    0 2px 8px rgba(20, 40, 90, 0.10);            /* neutral support */

  /* motion */
  transform-origin: center;
  transition:
    transform 200ms cubic-bezier(.2,.8,.2,1),
    box-shadow 200ms ease,
    border-color 120ms ease,
    background 140ms ease;
  will-change: transform;
}

/* quiet idle sparkles */
.bb-glass::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(5px 5px at 22% 32%, rgba(255,255,255,.75), rgba(255,255,255,0) 60%),
    radial-gradient(4px 4px at 68% 24%, rgba(255,255,255,.7),  rgba(255,255,255,0) 60%),
    radial-gradient(3px 3px at 42% 76%, rgba(255,255,255,.65), rgba(255,255,255,0) 60%),
    radial-gradient(3px 3px at 86% 66%, rgba(255,255,255,.7),  rgba(255,255,255,0) 60%);
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 2px rgba(255,255,255,.35));
  animation: bb-sparkle-float 8s linear infinite;
  opacity: .32;
}

/* HOVER/FOCUS: gentle lift + tiny scale + rounded gradient stroke */
.bb-glass:hover,
.bb-glass:focus-visible {
  transform: translateY(-1px) scale(1.008);
  /*box-shadow:
    0 1px 0 rgba(255,255,255,0.26) inset,
    0 12px 28px rgba(var(--bb-blue), 0.18),   /* 
    0 6px 16px rgba(20, 40, 90, 0.12),        */
   /*  0 0 0 2px rgba(var(--bb-violet), 0.08);   */

  border-color: transparent; /* reveals gradient stroke layer below */

  /* stroke painted in border-box, glass in padding-box */
  background:
    linear-gradient(135deg, #006DD9, #625AF5, #7162FC) border-box,
    radial-gradient(120% 120% at 100% -20%, rgba(77,135,228,.14), transparent 60%) padding-box,
    radial-gradient(120% 120% at -20% 120%, rgba(0,76,239,.08), transparent 60%) padding-box,
    rgba(255,255,255,0.65) padding-box,
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.30) 1px, transparent 1px) padding-box;
  background-size: auto, auto, auto, auto, 3px 3px;
  background-blend-mode: normal, normal, normal, normal, overlay;

  animation: bb-pop 360ms cubic-bezier(.2,.8,.2,1);
}

/* smaller sparkle burst */
.bb-glass:hover::before,
.bb-glass:focus-visible::before {
  animation:
    bb-sparkle-float 8s linear infinite,
    bb-sparkle-burst .45s ease-out 1;
  opacity: .48;
}

/* keyframes (kept restrained) */
@keyframes bb-sparkle-float {
  0%   { background-position: 0% 100%, 40% 80%, 60% 0%, 100% 20%; opacity:.30; }
  50%  { background-position: 18% 42%, 58% 2%, 78% 58%, 38% 100%; opacity:.36; }
  100% { background-position: 0% 100%, 40% 80%, 60% 0%, 100% 20%; opacity:.30; }
}

@keyframes bb-pop {
  0%   { transform: translateY(0) scale(1); }
  35%  { transform: translateY(-1px) scale(1.01); }
  100% { transform: translateY(-1px) scale(1.008); }
}

@keyframes bb-sparkle-burst {
  0%   { filter: drop-shadow(0 0 0 rgba(255,255,255,0)); }
  40%  { filter: drop-shadow(0 0 6px rgba(255,255,255,.55)); }
  100% { filter: drop-shadow(0 0 0 rgba(255,255,255,0)); }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  .bb-glass { transition: none; animation: none !important; transform: none; }
  .bb-glass::before { animation: none !important; }
}