@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Spline+Sans:wght@300..700&display=swap');

:root {
  --primary: #5F57FF;
  --secondary: #0B0C1F;
  --bgLightBlue: #D8EBFD;
  --bgCard: #040719;
  --textLight: #E7E7E7;
  --textWhite: 255, 255, 255;
}

.text_light {
  color: var(--textLight);
}

.text_dark {
  color: var(--secondary);
}

.text_primary {
  color: var(--primary);
}

.bg_light {
  background: var(--bgLightBlue);
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #fff;
  line-height: 1.3;
  background: #000111;
}

.font_italic {
  font-style: italic;
}

.fw_400 {
  font-weight: 400 !important;
}

.fw_500 {
  font-weight: 500 !important;
}

.fw_600 {
  font-weight: 600 !important;
}

.fw_700 {
  font-weight: 700 !important;
}

p:last-child {
  margin: 0;
}

.p_14 {
  font-size: 14px !important;
}

.p_16 {
  font-size: 16px !important;
}

.p_18 {
  font-size: 18px !important;
}

.p_20 {
  font-size: 20px !important;
}

.p_22 {
  font-size: 22px !important;
}

.p_24 {
  font-size: 24px !important;
}


/* .

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

h1,
.h1 {
  font-size: 54px;
}

h2,
.h2 {
  font-size: 46px;
}

h3,
.h3 {
  font-size: 36px;
}

h4,
.h4 {
  font-size: 24px;
}

h5,
.h5 {
  font-size: 18px;
}

h6,
.h6 {
  font-size: 16px;
}

p {
  font-size: 18px;
  margin: 0 0 15px;
}

ul li {
  font-size: 18px;
}

a {
  color: var(--primary);
  transition: 0.5s ease;
  text-decoration: none;
}

a:hover {
  color: var(--primary);
}

img {
  max-width: 100%;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
 */


.btn_primary {
  cursor: pointer;
  background-image: linear-gradient(#0d152e, #14213e);
  border: 1px solid #ffffff1f;
  justify-content: center;
  align-items: center;
  padding: .75rem 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  transition-property: all;
  transition-duration: .2s;
  transition-timing-function: ease;
  display: inline-flex;
  gap: 8px;
  text-decoration: none !important;
  transition: 0.5s ease;
  color: rgba(var(--textWhite), 1);
  border-radius: 8px;
}

.btn_primary:hover {
  border-color: rgba(var(--textWhite), 1);
  color: rgba(var(--textWhite), 1);
}

.btn_gray {
  cursor: pointer;
  background-image: rgba(var(--textWhite), 0.05);
  border: 1px solid rgba(var(--textWhite), 0.12);
  justify-content: center;
  align-items: center;
  padding: .75rem 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  transition-property: all;
  transition-duration: .2s;
  transition-timing-function: ease;
  display: inline-flex;
  gap: 8px;
  text-decoration: none !important;
  transition: 0.5s ease;
  color: rgba(var(--textWhite), 1);
  border-radius: 8px;
}

.btn_gray:hover {
  border-color: rgba(var(--textWhite), 1);
  color: rgba(var(--textWhite), 1);
}


.btn_border {
  background: transparent;
  color: var(--secondary);
  border: 1px solid var(--secondary);
  padding: 12px 25px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn_border:hover {
  background: var(--secondary);
  color: var(--textWhite);
}

.btn_border:hover img {
  filter: brightness(0) invert(1);
}

.btn_border_white {
  background: transparent;
  color: var(--textWhite);
  border: 1px solid var(--textWhite);
  padding: 12px 25px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn_border_white:hover {
  background: var(--textWhite);
  color: var(--secondary);
}

.button_wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  padding: 0;
  transition: 0.5s ease;
  background: #000111;
  border-bottom: 1px solid #ffffff1a;
}

.navbar {
  padding: 0;
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.navbar-nav .nav-item .nav-link {
  padding: 35px 15px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--textWhite), 1);
  transition: 0.5s ease;
  position: relative;
}

.navbar-nav .nav-item .nav-link.active {
  color: rgba(var(--textWhite), 1);
}

.navbar-nav .nav-item .nav-link:hover {
  color: rgba(var(--textWhite), 1);
}

.navbar-nav .nav-item .nav-link.active:hover {
  color: rgba(var(--textWhite), 1);
}

.navbar-nav .nav-item.has_dropdown .nav-link {
  padding-right: 35px;
}

.navbar-nav .nav-item.has_dropdown .nav-link:before {
  content: "\F282";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  color: #fff;
  font-family: "bootstrap-icons";
  transition: 0.2s ease;
}

.navbar-nav .nav-item.has_dropdown .nav-link:hover:before {
  transform: translateY(-50%) rotate(180deg);
}

.navbar-nav .nav-item .nav-link.affiliate_link {
  padding-right: 70px;
}

.affiliate_link .navbar7_link-discount {
  position: absolute;
  right: 10px;
}

.banner_wrapper {
  position: relative;
  overflow: hidden;
  z-index: 9;
}

/* 
.banner_wrapper:before {
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(#00011000 57%, #000110 86%);
  position: absolute;
  inset: 0%;
  z-index: 1;
} */

.banner_img_wrapper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: -1;
}

.banner_img_wrapper img {
  width: 100%;
  object-fit: cover;
}

.banner_content {
  text-align: center;
  position: relative;
  z-index: 2;
}


body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Focus state style for keyboard navigation for the focusable elements */
*[tabindex]:focus-visible,
input[type="file"]:focus-visible {
  outline: 0.125rem solid #4d65ff;
  outline-offset: 0.125rem;
}

/* Set color style to inherit */
.inherit-color * {
  color: inherit;
}

/* Get rid of top margin on first element in any rich text element */
.w-richtext> :not(div):first-child,
.w-richtext>div:first-child> :first-child {
  margin-top: 0 !important;
}

/* Get rid of bottom margin on last element in any rich text element */
.w-richtext>:last-child,
.w-richtext ol li:last-child,
.w-richtext ul li:last-child {
  margin-bottom: 0 !important;
}


/* Make sure containers never lose their center alignment */
.container-medium,
.container-small,
.container-large {
  margin-right: auto !important;
  margin-left: auto !important;
}


/* Apply "..." after 3 lines of text */
.text-style-3lines {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

/* Apply "..." after 2 lines of text */
.text-style-2lines {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* These classes are never overwritten */
.hide {
  display: none !important;
}

@media screen and (max-width: 991px) {

  .hide,
  .hide-tablet {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .hide-mobile-landscape {
    display: none !important;
  }
}

@media screen and (max-width: 479px) {
  .hide-mobile {
    display: none !important;
  }
}

.margin-0 {
  margin: 0rem !important;
}

.padding-0 {
  padding: 0rem !important;
}

.spacing-clean {
  padding: 0rem !important;
  margin: 0rem !important;
}

.margin-top {
  margin-right: 0rem !important;
  margin-bottom: 0rem !important;
  margin-left: 0rem !important;
}

.padding-top {
  padding-right: 0rem !important;
  padding-bottom: 0rem !important;
  padding-left: 0rem !important;
}

.margin-right {
  margin-top: 0rem !important;
  margin-bottom: 0rem !important;
  margin-left: 0rem !important;
}

.padding-right {
  padding-top: 0rem !important;
  padding-bottom: 0rem !important;
  padding-left: 0rem !important;
}

.margin-bottom {
  margin-top: 0rem !important;
  margin-right: 0rem !important;
  margin-left: 0rem !important;
}

.padding-bottom {
  padding-top: 0rem !important;
  padding-right: 0rem !important;
  padding-left: 0rem !important;
}

.margin-left {
  margin-top: 0rem !important;
  margin-right: 0rem !important;
  margin-bottom: 0rem !important;
}

.padding-left {
  padding-top: 0rem !important;
  padding-right: 0rem !important;
  padding-bottom: 0rem !important;
}

.margin-horizontal {
  margin-top: 0rem !important;
  margin-bottom: 0rem !important;
}

.padding-horizontal {
  padding-top: 0rem !important;
  padding-bottom: 0rem !important;
}

.margin-vertical {
  margin-right: 0rem !important;
  margin-left: 0rem !important;
}

.padding-vertical {
  padding-right: 0rem !important;
  padding-left: 0rem !important;
}

/* ---------- CUSTOM ADDONS ---------- */

.swiper.logo1-loop-wrapper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.iti {
  width: 100% !important;
}

.iti__dropdown-content {
  background-color: #14213e !important;
}

.iti--inline-dropdown .iti__dropdown-content {
  border: var(--iti-border-width) solid #ffffff12 !important;
}

.iti__search-input {
  background-color: #1d2c4d !important;
}

pre.w-code-block {
  padding: 0 36px 0 0 !important;
  border-radius: 12px;
  background: #000111 !important;
  font-size: 16px;
}

span.comment.linenumber.react-syntax-highlighter-line-number {
  background-color: #0C102D !important;
  margin-right: 0.625rem !important;
  color: #d5d7da94;
}

figure {
  margin: 3rem 0rem;
}

.step_box {
  border: 1px solid rgba(var(--textWhite), 0.07);
  border-radius: 30px;
  padding: 10px;
  box-shadow: 0 10px 22px -1.75px rgba(0, 0, 0, 0.16);
}

.step_box_inner {
  padding: 25px;
  background: radial-gradient(circle, rgba(15, 9, 18, 1) 0%, rgba(12, 9, 18, 0.15) 100%);
  box-shadow: inset 0px 10px 5px -1px rgba(79, 26, 214, 0.15);
  border-radius: 22px;
}

.step_box .icon {
  background: radial-gradient(circle, rgba(15, 9, 18, 1) 0%, rgba(12, 9, 18, 0.15) 100%);
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0px 10px 5px -1px rgba(79, 26, 214, 0.15);
  border: 1px solid rgba(79, 26, 214, 0.15);
  margin: 0 0 20px;
}

.step_img_wrapper {
  border: 1px solid rgba(var(--textWhite), 0.07);
  background: #080808;
  border-radius: 30px;
  padding: 10px;
  position: sticky;
  top: 100px;
}

.step_img_wrapper img {
  border: 1px solid rgba(var(--textWhite), 0.1);
  aspect-ratio: 1/1;
  object-fit: cover;
  width: 100%;
  border-radius: 20px;
}

img {
  max-width: 100%;
}

.account_banner {
  background: url(../images/cta_bg-1.jpg);
  background-size: 100%;
  background-position: top center;
  background-repeat: no-repeat;
  padding: 80px 20px 60px;
  border-radius: 24px;
}

.account_banner h2 {
  font-weight: 400;
}

.account_banner h2 span {
  color: rgba(var(--textWhite), 0.6);
}

.account_banner p {
  max-width: 520px;
  color: rgba(var(--textWhite));
	opacity: .6;
}

.contact-card .p {
  line-height: 24px;
}

.cta_banner ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  list-style: none;
}

.cta_banner ul li {
  padding: 10px 24px;
  border: 1px solid #5F57FF;
  background: rgba(var(--textWhite), 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.accordion .accordion-item {
  padding: 30px;
  background: transparent;
  border: 1px solid rgba(var(--textWhite), 0.15);
  border-radius: 20px;
  margin: 0 0 20px;
}

.accordion-button {
  background: transparent;
  color: #fff;
  padding: 0;
  box-shadow: none !important;
  padding-right: 30px;
  font-size: 18px;
}

.accordion-item:first-of-type>.accordion-header .accordion-button {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.accordion-button:not(.collapsed) {
  color: #fff;
  background-color: transparent;
  box-shadow: none;
}

.accordion-body {
  padding: 10px 0 0;
  margin: 10px 0 0;
  color: #A6A6A6;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-button:not(.collapsed)::after {
  background-image: inherit;
  transform: inherit;
}

.accordion-button::after {
  flex-shrink: 0;
  width: 14px;
  height: 2px;
  margin-left: auto;
  content: "";
  background-image: inherit;
  background-repeat: no-repeat;
  background: #fff;
  position: absolute;
  right: 0;
}

.accordion-button::before {
  content: "";
  width: 2px;
  height: 14px;
  background: #fff;
  position: absolute;
  right: 6px;

}

.accordion-button:not(.collapsed):before {
  display: none;
}


.cta_taboola {
  background: url(../images/cta-bg.png);
  padding: 140px 20px;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 20px;
}

.cta_outbrain {
  background: url(../images/cta-bg2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.cta_taboola .header3-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.cta_banner ul {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: wrap;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  list-style: none;
}

.cta_banner ul li {
  grid-column-gap: 0.5rem;
  grid-row-gap: 1rem;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  text-align: left;
  letter-spacing: -.25px;
  background-color: #00011166;
  border: 1px solid #ffffff24;
  border-radius: 15px;
  justify-content: flex-start;
  align-items: center;
  padding: .625rem 1.5rem .625rem .625rem;
  font-size: 1rem;
  font-weight: 400;
  display: flex;
}

.cta_banner ul li .icon {
  width: 50px;
  height: 50px;
  background: url(../images/icon-bg.svg);
  background-size: 50px;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.affiliate_wrapper {
  border: 1px solid rgba(var(--textWhite), 0.1);
  border-radius: 20px;
  padding: 30px;
}

.affiliate_wrapper img {
  border: 0;
  object-fit: contain;
}

.testimonialThumb .swiper-slide {
  width: 65px !important;
  height: 65px;
  border-radius: 50%;
  border: 1px solid #fff;
  overflow: hidden;
/*   margin-top: 6px; */
  position: relative;
	transform:scale(0.8) !important;
}

.testimonialThumb .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-slide>img {
  width: 100%;
}

.testimonialThumb .swiper-slide.swiper-slide-thumb-active {
  width: 65px !important;
  height: 65px;
/*   margin-top: 0; */
  border: 0;
  padding: 6px;
	transform:scale(1) !important;
	border-radius: 50%;
}

.testimonialThumb .swiper-slide.swiper-slide-thumb-active img {
  width: 100%;
  height: 100%;
	object-fit:cover;
}

.testimonialThumb {
  max-width: 365px;
  margin: 20px auto 0;
}

.testimonialMain {
  padding-bottom: 20px !important;
  padding-top: 35px !important;
}

.testimonial_content {
  padding: 90px 60px 50px;
  background: linear-gradient(180deg, rgba(6, 11, 35, 1) 0%, rgba(36, 80, 130, 1) 100%);
  border-radius: 40px;
  max-width: 1020px;
  margin: 0 auto;
  position: relative;
}

.testimonial_content:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 40px;
  padding: 1px;
  background: linear-gradient(180deg, #60AEFF, #005CBB);
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
}

.testimonial_content:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -18px;
  background: url(../images/testimonial-shape.svg);
  width: 64px;
  height: 19px;
  background-size: 64px;
}

.testimonial_content h4 {
  font-size: 22px;
  font-weight: 500;
  text-align: center;
  margin: 0 0 50px;
}

.testimonial_content h6 {
  font-size: 22px;
  font-weight: 500;
  text-align: center;
  margin: 0 0 5px;
}

.testimonial_content p {
  font-size: 17px;
  font-weight: 500;
  text-align: center;
}

.thumb-progress {
  position: absolute;
  inset: -6px;
  transform: rotate(-90deg);
  pointer-events: none;
}

.thumb-progress circle {
  fill: none;
  stroke: #5F57FF;
  stroke-width: 4;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
}

/* animate ONLY active slide */
.swiper-slide-thumb-active .thumb-progress circle {
  animation: circleFill 4s linear forwards;
}

@keyframes circleFill {
  to {
    stroke-dashoffset: 0;
  }
}

.affiliate-testimonial_wrapper {
  background: url(../images/testimonial-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 50px;
}

.testimonial_content .rating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: #000111;
  border-radius: 50px;
  border: 1px solid #fff;
  padding: 10px 18px;
  box-shadow: 0 0 15px 4px rgba(86, 166, 248, 0.5);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -23px;
}

.testimonialMain .swiper-button-next,
.testimonialMain .swiper-button-prev {
  background-color: #040719;
  border: 1px solid #ffffff26;
  border-radius: 99px;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  display: flex;
}

.testimonialMain .swiper-button-next {
  right: 30px !important;
}

.testimonialMain .swiper-button-prev {
  left: 30px !important;
}

.testimonialMain .swiper-button-next svg,
.testimonialMain .swiper-button-prev svg {
  display: none;
}

.testimonialMain .swiper-button-next:after {
  content: "\F138";
  font-family: "bootstrap-icons" !important;
}

.testimonialMain .swiper-button-prev:after {
  content: "\F12F";
  font-family: "bootstrap-icons" !important;
}

.cta_banner ul {
  padding: 0;
}

.blog-rich-text h2 {
  font-family: var(--headings);
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 500;
  line-height: 125%;
}

.blog-rich-text h3 {
  font-family: var(--headings);
  color: #fff;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 500;
  line-height: 125%;
}

.blog-rich-text p,
.blog-rich-text ol {
  font-family: var(--paragraph);
  color: var(--neutral--200);
  font-size: 16px;
  line-height: 160%;
  margin-bottom: 20px;

}

.blog-rich-text ul {
  color: var(--neutral--200);
  font-size: 16px;
  line-height: 180%;
}

.share-article-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: sticky;
  top: 140px;
  bottom: 40px;
}

.share-buttons {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.copy-link {
  border-style: solid;
  border-width: 1px;
  border-color: #ffffff4a #ffffff4a #ffffff4a var(--grey-border);
  color: #fff;
  border-radius: 8px;
  width: 48px;
  height: 48px;
  display: flex;
  overflow: visible;
}

.share-link-block {
  color: var(--neutral--white);
  width: 24px;
  height: 24px;
  margin: 12px;
}

.share-li {
  border-style: solid;
  border-width: 1px;
  border-color: #ffffff4a #ffffff4a #ffffff4a var(--grey-border);
  color: #fff;
  border-radius: 8px;
  width: 48px;
  height: 48px;
  display: flex;
}

.share-x {
  border-style: solid;
  border-width: 1px;
  border-color: #ffffff4a #ffffff4a #ffffff4a var(--grey-border);
  color: #fff;
  border-radius: 8px;
  width: 48px;
  height: 48px;
  display: flex;
}

.share-fb {
  border-style: solid;
  border-width: 1px;
  border-color: #ffffff4a #ffffff4a #ffffff4a var(--grey-border);
  color: #fff;
  border-radius: 8px;
  width: 48px;
  height: 48px;
  display: flex;
}

.blog-single-view-content-grid {
  gap: 40px;
}

.testimonial_slider .swiper-wrapper {
  transition-timing-function: linear;
}

.testimonial_slider .swiper-slide {
  max-width: 420px;
}

.compare1_wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  border: 1px solid #000;
  border-bottom-style: none;
  border-radius: 0;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.compare1_card {
  background: url(../images/card-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 24px;
  padding: 10px;
  border: 1px solid rgba(255, 228, 235, 0.09);
  background-color: #080808;
}

.compare1_card .compare1_card-top {
  text-align: center;
  padding: 25px;
  width: 100%;
}

.compare1_card-content {
  padding: 20px;
  width: 100%;
  background: #101010;
  border: 1px solid rgba(230, 233, 238, 0.08);
  border-radius: 20px;
}

.product-pricing {
  overflow: hidden;
  padding: 0px 0px 40px;
  gap: 24px;
  background: rgba(7, 8, 23, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.21);
  border-radius: 16px;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-color: #070817bf;
  border: 1px solid #ffffff36;
  border-radius: 16px;
  flex-flow: column;
  width: auto;
  min-width: 100%;
  max-width: none;
  height: 100%;
  min-height: auto;
  margin-left: auto;
  margin-right: auto;
  padding: 0 0 40px;
  display: flex;
}

.price-items-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 32px;
}

.pricing-hero-title {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  gap: 16px;
  align-self: center;
  align-items: center;
  display: flex;
}

.price-block {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border-bottom: 1px solid #ffffff1a;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  margin-left: 32px;
  margin-right: 32px;
  padding-bottom: 24px;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
}

.price-block .p-14 {
  color: #ffffffea;
  font-weight: 400;
}

.div-hero-pricing-block-wrap {
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.price-items {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.pricing-buttons {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.mt-50 {
  margin-top: 50px !important;
  padding-bottom: 110px !important;
}

.services-selector-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
  display: flex;
  margin-top: 30px;
  margin-bottom: 0px;
}

.services-btn {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  background-color: #ffffff1a;
  border: 1px solid #ffffff26;
  border-radius: 8px;
  flex-flow: column;
  width: 200px;
  min-height: 120px;
  padding: 16px;
  text-decoration: none;
  transition: all 0.2s;
  display: flex;
}

.services-btn .img-logo-btn {
  width: 24px;
}

.block-img {
  max-width: 550px;
  width: 100%;
}

.glow-img {
  position: relative;
}

.glow-img::before {
  top: 24%;
  content: "";
  right: -50px;
  z-index: -1;
  position: absolute;
  width: 261px;
  height: 320px;
  background: linear-gradient(180deg, #60aeff 0%, #005cbb 139.3%);
  opacity: 0.7;
  filter: blur(95.65px);
}

.fs-12 {
  font-size: 12px;
}

.price-block.highlight {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px;
  background: #12130C;
  border: 1px solid #CDF638;
  border-radius: 8px;
}

.highlight-badge {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 5.5px 12px 6.5px;
	background: #9AB82F;
	border-radius: 4px;
	color: rgba(var(--textWhite), 1);
	font-size: 12px;
	line-height: 18px;
	font-weight: 500;
}

.div-hero-sub-img {
  max-width: 605px;
}

.list-2-column-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: grid;
}

.icon-1x1-2-125 {
  flex: none;
  width: 2.125rem;
  height: 2.125rem;
}

.score-card-img {
  min-width: 229px;
  width: 100%;
}

.benefit1_card {
  position: relative;
  overflow: hidden;
}

.benefit1_card::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: auto;
  background-image: url(../images/b-card-bg.svg);
  background-size: auto;
  background-position: center;
  pointer-events: none;
}

.testimonila_heading_lg {
  max-width: 950px;
  margin: 30px auto;
}

.testimonila-score-wrapper {
  padding: 10px 20px;
  gap: 10px;
  background: rgba(10, 14, 45, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.t-score-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.testimonila-score-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.t-score-right {
  width: 70%;
}

.t-score-left {
  width: 30%;
  text-align: right;
}

.t-score-left .t-score-title {
  justify-content: end;
}

.t-score-left>span {
  margin-top: 10px;
  opacity: .8;
  display: block;
  font-size: 14px;
}

.progress_wrapper {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.progress_wrapper span {
  opacity: .2;
}

.progress-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.donate-progress {
  --value: 0;
  --color: #ff2b2b;
  /* default red */

  width: 14px;
  height: 14px;
  border-radius: 50%;
  position: relative;

  background: conic-gradient(var(--color) calc(var(--value) * 1deg),
      #ffffff 0);
	    
}
.progress_wrapper .progress-item:first-child .donate-progress{
	transform: rotate(-225deg);
}
.donate-progress::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: #0b1020;
  border-radius: 50%;
}

.feedback-score-guarantee-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.feedback-score-guarantee {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  background-color: #040719;
  background-image: radial-gradient(circle, #2f3fb259, #0000 64%);
  border: 1px solid #ffffff1a;
  border-radius: 16px;
  flex-flow: column;
  width: 100%;
  max-width: 860px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
	position: relative;
}

.guarantee-badge {
  max-width: 152px;
  height: 100%;
  aspect-ratio: 152/164;
  width: 100%;
}

.effect-card {
  padding: 24px;
  border: 1px solid #ffffff28;
  border-radius: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-position: bottom center;
  background-size: cover;
}

.effect-card.card-1 {
  background-image: url(../images/effect-bg-1.png);
}

.effect-card.card-2 {
  background-image: url(../images/effect-bg-2.png);
}

.effect-card.card-3 {
  background-image: url(../images/effect-bg-3.png);
}

.effect-card.card-4 {
  background-image: url(../images/effect-bg-4.png);
}

.effect-card h5 {
  font-size: 24px;
  font-weight: 500;
}

.effect-card p {
  font-size: 16px;
  opacity: .8;
  font-weight: 400;
  line-height: 150%;
  margin-top: 10px;
}

.effect-card .score {
  display: block;
  font-size: 42px;
  font-weight: 800;
  line-height: 100%;
  margin-top: 100px;
}

.cta-containetr {
  background-image: url('https://scaleadagency.com/wp-content/uploads/2026/02/image-cta-scaled.jpg');
  background-size: cover;
  background-position: top center;
  padding: 100px 24px;
  border-radius: 24px;
  border: 1px solid #292C3B;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-containetr .cta-inner {
  text-align: center;
  max-width: 840px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  justify-content: center;
}

.usp-div {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: wrap;
  margin-top: 16px;
  margin-bottom: 30px;
}

.facebook-unban-usp {
  grid-column-gap: 6px;
  grid-row-gap: 12px;
  align-items: center;
}

.check {
  height: 24px;
}

.max-width-877 {
  max-width: 877px;
}

.flex-block-2 {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center stretch;
  display: grid;
}

.pricing-title-div {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  width: 70%;
}

.hw-illustartor {
  max-width: 594px;
  width: 100%;
  border-radius: 16px;
  border: 1px solid #ffffff28;
  overflow: hidden;
}

.step-card {
  display: flex;
  flex-direction: column;
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-color: #040719;
  border: 1px solid #ffffff26;
  border-radius: 16px;
  width: 100%;
  padding: 24px;
  height: 100%;
}

.step-icon {
  height: 52px;
  max-width: 52px;
  flex-shrink: 0;
  margin-bottom: 12px;
}

.step-card .step-highlight {
  color: #fff9;
}

.div-flex-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 500px;
}


.benefit1_asset-wrapper img {
  width: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}


.benefit1-item:hover .benefit1_asset-wrapper .bg_service_img {
  transform: scale(1.2);
}

.benefit1_asset-wrapper {
  position: relative;
}

.benefit1_asset-wrapper .service_logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 115px;
}

.how_it_works {
  position: relative;
}

.how_it_works:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  max-width: 1280px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0) 100%);
}

.how_it_works:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  max-width: 1280px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0) 100%);
}

.step_wrapper .step_box:last-child {
  margin-bottom: 0 !important;
}
.get-free-btn {
    margin-top: 50px;
}
.page-template-page-affiliate .benefits-card b {
    color: #fff;
}
.page-template-page-unban-services .trusted1-tag {
    background-color: transparent;
}
.page-template-page-other-services #products {
    margin-top: 80px;
}
.how_it_works_left .title-wrapper p {
    opacity: 1;
}

/* 18-2-26 */

.services-btn {
  position: relative;
  border-radius: 16px;
  background: #111426; /* your card bg */
  overflow: hidden;
}

.services-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;

  background:
    linear-gradient(120deg, rgba(95,87,255,1) 0%, rgba(95,87,255,0) 40%) top left,
    linear-gradient(280deg, rgba(95,87,255,1) 0%, rgba(95,87,255,0) 40%) bottom right;

  background-size: 100%;
  background-repeat: no-repeat;

  -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  opacity: 0;
  transition: 0.4s ease;
}

.services-btn:hover::before {
  opacity: 1;
}

.new-section p {
    width: fit-content;
    margin: 0 auto;
}
#pricing-section-new h2.text-color-gradient {
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(#fff, #99a0ae);
    -webkit-background-clip: text;
    background-clip: text;
}
#benefits .eyebrow {
    text-transform: capitalize;
}
#benefits .header2-wrapper{
	align-items: center;
}
.page-template-page-other-services .service2_hero-container a:first-child, .page-template-page-health-assessment-services .service2_hero-container a:first-child{
    background-color: rgba(4, 18, 31, 0.12);
    background-image: none;
}
.page-template-page-unban-services .service2_hero-container a:last-child{
	background-color: rgba(4, 18, 31, 0.12);
    background-image: none;
}
footer.site-footer {
    margin-top: 100px;
}

/* 19-2-26 */
.uproas-section h2.text-color-gradient {
    -webkit-text-fill-color: #fff;
/*     background-image: linear-gradient(#fff, #99a0ae);
    -webkit-background-clip: text;
    background-clip: text; */
}
#benefits h2.heading-style-h3 {
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(#fff, #99a0ae);
    -webkit-background-clip: text;
    background-clip: text;
}
.page-id-36 .service1_hero-title h1 {
    max-width: 500px;
}

.page-id-40 #pricing-section-new ul {
    margin-top: 10px;
}

.page-id-40 #pricing-section-new .account_banner {
    padding-block: 142px 90px;
}
.div-text-img-content-wrapper .div-card-content p:not(:last-child) {
    margin-bottom: 25px;
}

.benefit1_card::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url('https://scaleadagency.com/wp-content/uploads/2026/02/service-card-bg-stroke.png');
    background-size: auto;
    background-position: center;
    pointer-events: none;
}
.next-btn-sec {
    margin-top: -30px;
}
.page-template-page-facebook-feedback-score-services .logo1-loop-list {
    margin-left: 16px;
}
.blog footer.site-footer {
    margin-top: 0;
}
.blog .footer2_container {
    padding-top: 40px;
}
.feedback-score-guarantee::after {
    content: '';
	position: absolute;
	width: 445px;
	height: 1px;
	left: 292.77px;
	top: auto;
	bottom: 0;
	background: linear-gradient(90deg, rgba(79, 26, 214, 0) 0%, #4F1AD6 50%, rgba(79, 26, 214, 0) 100%);
	flex: none;
	order: 5;
	flex-grow: 0;
	z-index: 5;
}

.feedback-score-guarantee::before {
    content: '';
    position: absolute;
    width: 445px;
    height: 1px;
    left: 100.77px;
    top: 0;
    background: linear-gradient(90deg, rgba(79, 26, 214, 0) 0%, #4F1AD6 50%, rgba(79, 26, 214, 0) 100%);
    flex: none;
    order: 4;
    flex-grow: 0;
    z-index: 4;
}
.page-template-page-facebook-feedback-score-services #pricing-section-new {
    margin-bottom: 170px;
}
.other-ser-sec h2 {
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(#fff, #99a0ae);
    -webkit-background-clip: text;
    background-clip: text;
}
.why-us-list-sec h2.heading-style-h3 {
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(rgb(255, 255, 255), rgb(153, 160, 174));
    background-clip: text;
}
.agency-top-header {
    text-align: center;
    margin-block: 80px 56px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.agency-top-header h2.agency-top-title {
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(rgb(255, 255, 255), rgb(153, 160, 174));
    background-clip: text;
}

.page-template-page-facebook-feedback-score-services .cta-title-wrap {
    width: 100%;
}

.page-template-page-facebook-feedback-score-services .cta-title-wrap p {
    width: 80%;
}
.page-template-page-reviews .logo1-loop {
    padding-block: 64px 0;
}

.new-section .text-color-gradient {
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.69) 0%, rgba(255, 255, 255, 1) 100%);
}
.testimonial3_card:after, .testimonial2_card-component::after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	background-image: url('https://scaleadagency.com/wp-content/uploads/2026/02/dot-bg-img.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	width: 100%;
	height: 100%;
	pointer-events: none;
}
.testimonial2_card-component > div:nth-child(2) p:last-child{
	position: relative;
}

.testimonial2_card-component > div:nth-child(2) p:last-child:after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: auto;
    bottom: -22px;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0) 100%);
}

/* 20-2-26 */
.testimonial_content-wp {
    position: relative;
}

.testimonial_content-wp::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 440px;
    left: 0px;
    right: auto;
    top: 0px;
    mix-blend-mode: color-dodge;
	pointer-events: none;
}

.testimonial_content-wp::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 440px;
    left: auto;
    right: 0;
    top: 0px;
    mix-blend-mode: color-dodge;
	pointer-events: none;
}
.page-id-36 .header3-wrapper h3 {
    -webkit-text-fill-color: #fff;
    background-image: none;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output,.wpcf7 form.spam .wpcf7-response-output {
    border: none;
    color: #dc3232;
	padding: 0;
}
.wpcf7 form.sent .wpcf7-response-output{
	border: none;
	color: #46b450
}

@media (max-width: 1399px){
	.page-template-page-other-services #products {
   		margin-top: 60px;
	}
	.page-template-page-facebook-feedback-score-services #pricing-section-new {
    	margin-bottom: 100px;
	}
}
@media (max-width: 1199px){
	.page-template-page-other-services #products {
   		margin-top: 40px;
	}
	footer.site-footer {
    	margin-top: 80px;
	}
	.page-id-40 #pricing-section-new .account_banner {
    	background-size: cover;
    	border-radius: 0;
    	background-position: center;
 	}
	 .page-id-40 #pricing-section-new .account_banner .header3-wrapper {
		padding-block: 50px;
	}
		.page-id-40 #pricing-section-new ul {
		margin-top: 10px;
	}
	.page-id-40 #pricing-section-new .account_banner {
		padding-block: 0;
	}
}

@media (max-width: 991px){
	.page-template-page-other-services #products {
   		margin-top: 20px;
	}
	footer.site-footer {
    	margin-top: 0px;
	}
	.div-text-img-content-wrapper .div-card-content p:not(:last-child) {
    	margin-bottom: 15px;
	}
	.page-id-36 .service1_hero-title h1 {
    	max-width: 100%;
	}
	.blog .footer2_container {
    	padding-top: 0;
	}
	.page-template-page-facebook-feedback-score-services #pricing-section-new {
    	margin-bottom: 0;
	}
	.page-template-page-reviews .logo1-loop {
    	padding-block: 50px 0;
	}
}
@media (max-width: 767px){

	.feedback-score-guarantee::after,.feedback-score-guarantee::before{
		width: 100%;
		left: 0;
	}
	.agency-top-header {
    	margin-block: 60px 50px;
	}
}
@media (max-width: 575px){
	 .page-id-40 #pricing-section-new .account_banner .header3-wrapper {
		padding-block: 0 30px;
	}

}
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content p {
    margin-bottom: 20px;
}
