/* =============================================================================
   Versa Networks — VN Redesign Stylesheet
   Optimized: March 2026
   rem conversion: March 2026
   Changes from original:
   - All missing CSS variables declared in :root
   - Removed !important from body color
   - .first-section:after scoped to body.is-vn-redesign
   - Hardcoded #D0D4D5 replaced with var(--light-grey)
   - Hardcoded #93D500 replaced with var(--theme-green)
   - Duplicate .small-heading-card font-weight rule removed
   - Duplicate .arrow-btn.btn-small font-size rule removed
   - .btn-transparent line-height normalized to 1.2
   - Debug 'background: plum' replaced with transparent
   - Obsolete vendor prefixes removed (-khtml-, -moz-transition, -o-transition,
     -o-transform, -moz-transform, -ms-transform, -moz-box-sizing)
   - All staging asset URLs migrated to production
   - Selective px→rem conversion: font-size, letter-spacing, line-height (px),
     text-decoration-thickness, padding, margin, gap
   - letter-spacing converted to em (element-relative, not root-relative)
   - Borders, border-radius, widths, heights, breakpoints, noUiSlider: kept in px
   - Incorrect line-height rem values reverted to px or unitless where appropriate
   - Redundant font-style: normal declarations removed (browser default)
   - Hardcoded #22272B replaced with var(--secondary-color) throughout
   - Hardcoded #121619 replaced with var(--primary-color) throughout
   - Duplicate --versa-rich-black and --text-muted variables removed
   - Bare transition: 0.4s expanded to transition: all 0.4s ease
   - text-indent: 0px normalized to text-indent: 0
   - Double blank lines removed
   - .get-demo-bg background properties consolidated into shorthand
   - All remaining hardcoded hex colors extracted to CSS variables
     (neutrals, alpha variants, gradient palettes, focus rings, shadows)
============================================================================= */
:root {
  --primary-color: var(--primary-color);
  --versa-grey: #5e6278;
  --versa-grey-85: #6b6f82;
  --versa-light-grey: #D0D4D5;
  --versa-light-grey-85: #bbbfc0;
  --versa-emerald-green: #00a651;
  --letter-spacing-1: 0.05em;
  --secondary-color: #22272B;
  --theme-blue: #5BCAFF;
  --theme-green: #93D500;
  --light-grey: #D0D4D5;
  --off-white: #F4F8F9;

  /* --- Neutral palette --- */
  --color-white: #fff;
  --color-black: #000;
  --color-card-heading: #515254;
  --color-secondary-light: var(--color-secondary-light);
  --color-disabled: #BDBEBF;
  --color-btn-disabled-dark: #64686B;
  --color-nav-btn: #444;
  --color-border-light: #D5D5D5;
  --color-border-mid: #D9D9D9;
  --color-btn-white-active: var(--color-btn-white-active);
  --color-icon-box-bg: #E5E9EA;
  --color-search-btn-bg: #E7E8E8;

  /* --- Blues --- */
  --color-bullet-blue: #0094DA;
  --color-bullet-red: #FF4949;
  --color-btn-dark-navy: var(--color-btn-dark-navy);

  /* --- Alpha / transparent variants --- */
  --color-shadow-xs: #00000005;
  --color-shadow-sm: #0000001F;
  --color-shadow-md: #00000040;
  --color-focus-ring-dark: #22272B4D;
  --color-focus-ring-white: #FFFFFF4D;
  --color-btn-transparent-hover: #22272B0D;
  --color-nav-menu-text: #121619B2;

  /* --- Gradient palettes --- */
  --gradient-primary-start: #00a8ff;
  --gradient-primary-mid: #00c6ff;
  --gradient-primary-end: #00d084;
  --gradient-secondary-start: #93D505;
  --gradient-secondary-end: #0096D9;
  --gradient-btn-white-start: #DCFFD9;
  --gradient-btn-white-mid: #F7FFFD;
  --gradient-btn-white-end: #CCEBFF;
}

.light-gray-border {
  border: 1px solid var(--light-grey);
}

body.is-vn-redesign {
  --versa-azure-blue: #0095DA;
  --versa-sapphire-blue: #0071BC;
  --versa-dark: var(--primary-color);
  --bg-color: #f4f5f7;
  --text-sm: 0.875rem;
  --text-dark: #1a1f36;
  --star-color: #f5a623;
  --versa-text: #4a4a4a;
  --versa-link: #333333;
  --versa-link-hover: var(--color-black);
  --footer-bg: #f5f5f5;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1rem;
  color: var(--primary-color);
  background: var(--off-white);
}

body.is-vn-redesign .primary-color,
body.is-vn-redesign .accordion-content .accordion-item .accordion-button {
  color: var(--primary-color);
}

body.is-vn-redesign .secondary-color,
body.is-vn-redesign .btn-transparent {
  color: var(--secondary-color);
}

body.is-vn-redesign .theme-green {
  color: var(--theme-green);
}

body.is-vn-redesign .text-azure-blue,
body.is-vn-redesign .text-azure-blue:hover,
body.is-vn-redesign .text-azure-blue:focus {
  color: var(--versa-azure-blue);
  text-decoration: none;
}

body.is-vn-redesign .fs-14 {
  font-size: 0.875rem;
}

body.is-vn-redesign .fs-18 {
  font-size: 1.125rem;
}

body.is-vn-redesign .main-heading {
  font-weight: 600;
  line-height: 1.1;
  font-size: 4rem;
  letter-spacing: -0.0391em;
}

body.is-vn-redesign .big-heading-xl {
  font-weight: 700;
  line-height: 0.8;
  font-size: 4.375rem;
  letter-spacing: -0.0357em;
}

body.is-vn-redesign .big-heading {
  font-weight: 500;
  line-height: 1;
  font-size: 2.75rem;
  letter-spacing: -0.0455em;
}

body.is-vn-redesign .card-heading,
.card-heading {
  color: var(--color-card-heading);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 2.75rem;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.04em;
}

body.is-vn-redesign .gartner-chart-img,
.gartner-chart-img {
  height: auto;
}

@media (max-width: 991px) {
  body.is-vn-redesign .card-heading,
  .card-heading {
    font-size: 2.25rem;
    letter-spacing: -0.0333em;
  }
}

@media (max-width: 767.98px) {
  body.is-vn-redesign .card-heading,
  .card-heading {
    font-size: 1.875rem;
    letter-spacing: -0.0267em;
  }

}

body.is-vn-redesign .medium-heading {
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

body.is-vn-redesign .small-heading,
body.is-vn-redesign .small-heading-card {
  font-size: 1.5rem;
  line-height: 1.2;
}

body.is-vn-redesign .small-heading {
  font-weight: 500;
}

body.is-vn-redesign .big-text {
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 400;
}

body.is-vn-redesign .body-text {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}

body.is-vn-redesign .green-bullet li::marker {
  color: var(--theme-green);
}

body.is-vn-redesign .blue-bullet li::marker {
  color: var(--color-bullet-blue);
}

body.is-vn-redesign .red-bullet li::marker {
  color: var(--color-bullet-red);
}

body.is-vn-redesign .v-video-play {
  background-image: url("https://versa-networks.com/images/widgets/play-white.png");
  position: absolute;
  background-size: 30%;
  top: 0;
  left: 0;
  width: 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  height: 100%;
  opacity: .8;
}

body.is-vn-redesign .divider {
  display: block;
  height: 1px;
  background: var(--light-grey);
}

/* Centered icon: square container with border treatment */
body.is-vn-redesign .icon {
  display: inline-block;
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
  border: 1px solid var(--light-grey);
  border-radius: 8px;
  padding: 0.3125rem;
  box-sizing: border-box;
}

/* Feature card pattern: icon + label stacked, centered */
body.is-vn-redesign .feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem;
  text-align: center;
}

body.is-vn-redesign .feature-card .icon {
  width: 56px;
  height: 56px;
  border: 1px solid var(--light-grey);
  border-radius: 8px;
  padding: 0.3125rem;
  box-sizing: border-box;
}

/* Inline with text: border treatment + optical alignment */
body.is-vn-redesign .icon-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

body.is-vn-redesign .icon-inline img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border: 1px solid var(--light-grey);
  border-radius: 8px;
  padding: 0.3125rem;
  box-sizing: border-box;
  margin-top: -0.125rem;
}

body.is-vn-redesign .primary-gradient {
  background: linear-gradient(212deg, var(--gradient-primary-start) 0%, var(--gradient-primary-mid) 50%, var(--gradient-primary-end) 100%);
}

body.is-vn-redesign .secondary-gradient {
  background: linear-gradient(57.81deg, var(--gradient-secondary-start) 0%, var(--gradient-secondary-end) 100%);
}

body.is-vn-redesign .blue-card-small-heading {
  color: var(--versa-azure-blue);
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.2;
}

body.is-vn-redesign a.v-link {
  text-decoration: underline;
  text-underline-offset: 0.3rem;
  text-decoration-color: var(--versa-azure-blue);
  text-decoration-thickness: 0.125rem;
  display: inline-flex;
  width: fit-content;
}

body.is-vn-redesign ol.circle-check-list,
body.is-vn-redesign ul.circle-check-list {
  list-style-type: none;
}

body.is-vn-redesign ol.circle-check-list > li,
body.is-vn-redesign ul.circle-check-list > li {
  background-size: 1.2rem;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4NCjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTEyIDUxMiI+DQoJPHBhdGggZD0iTTI1NiA0OGEyMDggMjA4IDAgMSAxIDAgNDE2IDIwOCAyMDggMCAxIDEgMC00MTZ6bTAgNDY0QTI1NiAyNTYgMCAxIDAgMjU2IDBhMjU2IDI1NiAwIDEgMCAwIDUxMnpNMzY5IDIwOWM5LjQtOS40IDkuNC0yNC42IDAtMzMuOXMtMjQuNi05LjQtMzMuOSAwbC0xMTEgMTExLTQ3LTQ3Yy05LjQtOS40LTI0LjYtOS40LTMzLjkgMHMtOS40IDI0LjYgMCAzMy45bDY0IDY0YzkuNCA5LjQgMjQuNiA5LjQgMzMuOSAwTDM2OSAyMDl6IiBmaWxsPSIjMDA3MUJDIi8+DQo8L3N2Zz4=");
  background-position: left 0.15rem;
  background-repeat: no-repeat;
  padding-left: 1.7rem;
  margin-bottom: 0.7rem;
}

body.is-vn-redesign .export-table {
  --bs-table-bg: transparent;
}

body.is-vn-redesign .export-table > tbody > tr > * {
  background-color: transparent;
}

body.is-vn-redesign .export-table > thead > tr.export-table-header > * {
  background-color: var(--versa-sapphire-blue);
  color: var(--color-white);
}

body.is-vn-redesign .export-table > thead > tr.export-table-header > * h1,
body.is-vn-redesign .export-table > thead > tr.export-table-header > * h2,
body.is-vn-redesign .export-table > thead > tr.export-table-header > * h3,
body.is-vn-redesign .export-table > thead > tr.export-table-header > * h4,
body.is-vn-redesign .export-table > thead > tr.export-table-header > * h5,
body.is-vn-redesign .export-table > thead > tr.export-table-header > * h6 {
  color: inherit;
}

body.is-vn-redesign .arrow-btn,
body.is-vn-redesign .vn-button {
  line-height: 1.2;
  font-weight: 600;
}

body.is-vn-redesign .arrow-btn {
  --arrow-icon: url("https://versa-networks.com/wordpress/wp-content/themes/bootstrap-theme/assets/images/versa-rebrand/right-arrow.svg");
  color: var(--secondary-color);
  display: inline-block;
  width: fit-content;
  transition: all 0.4s ease;
}

body.is-vn-redesign .btn-black.arrow-btn,
body.is-vn-redesign .arrow-btn.text-white {
  --arrow-icon: url("https://versa-networks.com/wordpress/wp-content/themes/bootstrap-theme/assets/images/versa-rebrand/white-right-arrow.svg");
}

body.is-vn-redesign .arrow-btn::after {
  content: "";
  display: inline-block;
  transition: all 0.4s ease;
  position: relative;
  top: 1px;
  left: 0;
  width: 12px;
  height: 12px;
  margin-left: 0.625rem;
  background-image: var(--arrow-icon);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

body.is-vn-redesign .arrow-btn:hover::after,
body.is-vn-redesign .card-slider .card:hover .arrow-btn::after {
  left: 6px;
}

body.is-vn-redesign .btn-black,
body.is-vn-redesign .btn-transparent,
body.is-vn-redesign .btn-white,
body.is-vn-redesign .vn-button {
  padding: 1rem 1.5rem;
  border-radius: 12px;
}

body.is-vn-redesign .btn-black.disabled,
body.is-vn-redesign .btn-transparent.disabled,
body.is-vn-redesign .btn-white.disabled,
body.is-vn-redesign .arrow-btn.disabled {
  cursor: not-allowed;
  pointer-events: none;
}

body.is-vn-redesign .btn-black {
  border: unset;
  color: var(--color-white);
  background: var(--secondary-color);
}

body.is-vn-redesign .btn-black,
body.is-vn-redesign .btn-white {
  position: relative;
  overflow: hidden;
  z-index: 0;
}

body.is-vn-redesign .btn-black:before,
body.is-vn-redesign .btn-white:before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0;
  transition: all 0.4s ease;
}

body.is-vn-redesign .btn-black:before {
  background: linear-gradient(47.22deg, var(--secondary-color) 35.16%, var(--color-btn-dark-navy) 89.1%);
}

body.is-vn-redesign .btn-black:hover:before,
body.is-vn-redesign .btn-white:hover:before {
  opacity: 1;
}

body.is-vn-redesign .arrow-btn.btn-black.disabled {
  background: var(--color-disabled);
  color: var(--color-white);
}

body.is-vn-redesign .btn-black:focus {
  outline: 4px solid var(--color-focus-ring-dark);
}

body.is-vn-redesign .btn-transparent,
body.is-vn-redesign .vn-button {
  border: 2px solid var(--secondary-color);
}

body.is-vn-redesign .btn-transparent {
  line-height: 1.2;
}

body.is-vn-redesign .btn-transparent:hover {
  background-color: var(--color-btn-transparent-hover);
}

body.is-vn-redesign .arrow-btn.btn-transparent.disabled,
body.is-vn-redesign .arrow-btn.disabled {
  color: var(--color-disabled);
  border-color: var(--color-disabled);
}

body.is-vn-redesign .btn-transparent.disabled::after,
body.is-vn-redesign .arrow-btn.disabled::after {
  filter: brightness(0) saturate(100%) invert(94%) sepia(3%) saturate(93%) hue-rotate(169deg) brightness(83%) contrast(86%);
}

body.is-vn-redesign .btn-transparent.active,
body.is-vn-redesign .btn-transparent:active {
  border: 2px solid transparent;
  background: linear-gradient(var(--color-white), var(--color-white)) padding-box,
    linear-gradient(107.3deg, var(--secondary-color) 34.57%, var(--color-secondary-light) 84%) border-box;
}

body.is-vn-redesign .btn-transparent:focus {
  outline: 3px solid var(--color-focus-ring-dark);
}

body.is-vn-redesign .btn-white {
  background: var(--color-white);
}

body.is-vn-redesign .btn-white:before {
  background: linear-gradient(84deg, var(--gradient-btn-white-start) 0%, var(--gradient-btn-white-mid) 49.88%, var(--gradient-btn-white-end) 99.77%);
}

body.is-vn-redesign .arrow-btn.btn-white.disabled {
  background: var(--color-btn-disabled-dark);
}

body.is-vn-redesign .arrow-btn.btn-black.disabled::after,
body.is-vn-redesign .arrow-btn.btn-white.disabled::after {
  filter: unset;
}

body.is-vn-redesign .btn-white.active:before,
body.is-vn-redesign .btn-white:active:before {
  background: linear-gradient(111.44deg, var(--color-white) 29.09%, var(--color-btn-white-active) 74%);
  opacity: 1;
}

body.is-vn-redesign .btn-black.active:before,
body.is-vn-redesign .btn-black:active:before {
  background: linear-gradient(107.3deg, var(--secondary-color) 34.57%, var(--color-secondary-light) 84%);
  opacity: 1;
}

body.is-vn-redesign .btn-white:focus {
  outline: 4px solid var(--color-focus-ring-white);
}

body.is-vn-redesign .arrow-btn.btn-small,
body.is-vn-redesign .vn-button--secondary.vn-button--secondary__small {
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
}

body.is-vn-redesign a.nav-menu {
  color: var(--color-nav-menu-text);
  text-decoration: none;
  font-weight: 600;
  line-height: 1.2;
  font-size: 0.875rem;
  text-transform: uppercase;
  transition: all 0.4s ease;
}

body.is-vn-redesign a.nav-menu:hover,
body.is-vn-redesign a.nav-menu.active {
  background: linear-gradient(0deg, var(--primary-color), var(--primary-color)),
    linear-gradient(0deg, var(--primary-color), var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: underline;
}

body.is-vn-redesign .gradient-img-bg,
body.is-vn-redesign .gradient-img-bg-2 {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

body.is-vn-redesign .gradient-img-bg {
  background-image: url("https://versa-networks.com/wordpress/wp-content/themes/bootstrap-theme/assets/images/versa-rebrand/gradient-img.png");
}

body.is-vn-redesign .gradient-img-bg-2 {
  background-image: url("https://versa-networks.com/wordpress/wp-content/themes/bootstrap-theme/assets/images/versa-rebrand/gradient-img-2.webp");
}

body.is-vn-redesign .first-section,
body.is-vn-redesign .gradient-bg-img {
  position: relative;
}

body.is-vn-redesign .first-section:after {
  content: "";
  position: absolute;
  inset: 0;
  top: -100px;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(244, 248, 249, 1) 0%, rgba(244, 248, 249, 0) 25%, rgba(244, 248, 249, 0) 25%, rgba(244, 248, 249, 1) 100%);
}

body.is-vn-redesign .banner-validated {
  background: url("https://versa-networks.com/wordpress/wp-content/themes/bootstrap-theme/assets/images/versa-rebrand/validated-bg.jpg")
    no-repeat center center / cover;
}

body.is-vn-redesign .service-providers-section h2.big-heading {
  font-size: 2.25rem;
  max-width: 667px;
  margin-left: auto;
  margin-right: auto;
}

body.is-vn-redesign .service-card {
  background: url("https://versa-networks.com/wordpress/wp-content/themes/bootstrap-theme/assets/images/versa-rebrand/service-providers-bg.png")
    no-repeat center center / cover;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.5rem;
  color: var(--color-white);
}

body.is-vn-redesign .service-card-bottem .small-heading {
  letter-spacing: -0.06em;
  font-size: 1.125rem;
}

body.is-vn-redesign .fingertips-container {
  background: url("https://versa-networks.com/wordpress/wp-content/themes/bootstrap-theme/assets/images/versa-rebrand/fingertips-bg.jpg")
    no-repeat center center / cover;
}

body.is-vn-redesign .fingertips-container .service-providers-box .big-heading {
  font-weight: 600;
  font-size: 3.75rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

body.is-vn-redesign .marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

body.is-vn-redesign .marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee-scroll 60s linear infinite;
}

body.is-vn-redesign .marquee__track img {
  max-height: 120px;
  flex-shrink: 0;
  filter: invert(1);
  width: 200px;
  padding: 0 1.25rem;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
body.is-vn-redesign .card-slider .carousel-3up,
body.is-vn-redesign .testimonial-slider .carousel-3up,
body.is-vn-redesign .carousel-2up,
body.is-vn-redesign .feature-products .carousel-3up {
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

body.is-vn-redesign .card-slider .slider-track,
body.is-vn-redesign .testimonial-slider .slider-track,
body.is-vn-redesign .carousel-2up .slider-track,
body.is-vn-redesign .feature-products .carousel-3up .slider-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
  width: 100%;
}

body.is-vn-redesign .card-slider .slide {
  flex: 0 0 100%;
  padding: 0 0.5rem;
}

body.is-vn-redesign .card-slider .card {
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  padding: 2rem;
  border: none;
}

body.is-vn-redesign .card-slider .card-content,
body.is-vn-redesign .v-nav.navbar {
  position: relative;
  z-index: 3;
}

body.is-vn-redesign .card-slider .card-img {
  overflow: hidden;
}

body.is-vn-redesign .card-slider .card-img img {
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.4s ease;
}

body.is-vn-redesign .card-slider .card:hover .card-img img {
  transform: scale(1.1);
}

body.is-vn-redesign .slider-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

body.is-vn-redesign .slider-footer .dots {
  display: flex;
  gap: 0.5rem;
}

body.is-vn-redesign .slider-footer .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary-color);
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  opacity: 0.2;
  padding: 0;
}

body.is-vn-redesign .slider-footer .dot.active {
  opacity: 1;
}

body.is-vn-redesign .slider-footer .arrows {
  display: flex;
  gap: 0.75rem;
}

body.is-vn-redesign .slider-footer .arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-white);
  color: transparent;
  font-size: 0;
  line-height: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.4s ease;
  border: 1px solid var(--light-grey);
}

body.is-vn-redesign .slider-footer .arrow::before {
  content: none;
}

body.is-vn-redesign .slider-footer .arrow::after {
  content: "";
  width: 12px;
  height: 12px;
  display: block;
  background: url("https://versa-networks.com/wordpress/wp-content/themes/bootstrap-theme/assets/images/versa-rebrand/right-arrow.svg")
    no-repeat center / contain;
  transition: all 0.4s ease;
}

body.is-vn-redesign .slider-footer .prev::after {
  transform: rotate(180deg);
}

body.is-vn-redesign .slider-footer .arrow:hover {
  background: var(--secondary-color);
}

body.is-vn-redesign .slider-footer .arrow:hover::after {
  filter: invert(1);
}

body.is-vn-redesign .slider-footer .arrow img {
  display: none !important;
}

body.is-vn-redesign .hero-canvas,
.hero-canvas {
  position: absolute;
  inset: 0;
  top: -100px;
  height: calc(100% + 100px);
  width: 100%;
  z-index: 0;
  display: block;
  pointer-events: none;
}

body.is-vn-redesign .accordion-content .accordion-button {
  background: transparent;
  box-shadow: none;
  padding: 1.125rem 0;
  font-weight: 600;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  text-align: left;
  white-space: normal;
}

body.is-vn-redesign .accordion-content .accordion-button::after {
  display: none;
}

body.is-vn-redesign .accordion-content .icon-box {
  width: 48px;
  height: 48px;
  background: var(--color-icon-box-bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.8125rem;
}

body.is-vn-redesign .accordion-content .toggle-icon::before {
  content: "+";
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--primary-color);
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
}

body.is-vn-redesign .accordion-content .toggle-icon {
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  position: relative;
  margin-left: auto;
  flex: 0 0 20px;
  margin-top: 0.125rem;
}

body.is-vn-redesign .accordion-content .accordion-button:not(.collapsed) .toggle-icon::before {
  content: "\2212";
}

body.is-vn-redesign .accordion-content .accordion-item {
  border: none;
  border-bottom: 1px solid var(--light-grey);
}

body.is-vn-redesign .accordion-content .accordion-item:last-child {
  border-bottom: none;
}

body.is-vn-redesign .testimonial-slider .slide,
body.is-vn-redesign .carousel-2up .slide,
body.is-vn-redesign .feature-products .carousel-3up .slide {
  flex: 0 0 100%;
}

body.is-vn-redesign .testimonial-slider .slide {
  padding: 0 0.75rem;
}

body.is-vn-redesign .carousel-2up .box {
  height: 100%;
  padding: 3.75rem 3rem;
}

body.is-vn-redesign .carousel-2up .box img {
  max-width: 120px;
  max-height: 60px;
}

body.is-vn-redesign .feature-products .carousel-3up .slide {
  padding: 0 0.8125rem;
}

body.is-vn-redesign .feature-products .box {
  height: 100%;
  padding: 2rem;
}

body.is-vn-redesign .feature-products .box .icon-img {
  width: 80px;
  height: 80px;
  padding: 1.25rem;
}

body.is-vn-redesign .feature-products .box .icon-img img {
  width: 40px;
}

body.is-vn-redesign .feature-products .gradient-box {
  padding: 3rem 2rem;
}

body.is-vn-redesign .feature-products .gradient-box img {
  max-width: 140px;
}

body.is-vn-redesign .gradient-bg-img:after {
  position: absolute;
  content: "";
  right: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-image: url("https://versa-networks.com/wordpress/wp-content/themes/bootstrap-theme/assets/images/versa-rebrand/gradient-img-3.webp");
  z-index: -1;
  background-position: right;
  background-repeat: no-repeat;
}

@media (max-width: 1279px) {
  body.is-vn-redesign .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (max-width: 1023px) {
  body.is-vn-redesign .main-heading {
    font-size: 3.25rem;
  }

  body.is-vn-redesign .big-text {
    font-size: 1.125rem;
  }

  body.is-vn-redesign .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  body.is-vn-redesign .marquee__track img {
    width: 185px;
  }

  body.is-vn-redesign .card-slider .card {
    padding: 1.5rem;
  }

  body.is-vn-redesign .big-heading {
    font-size: 2.25rem;
  }

  body.is-vn-redesign .cta-1 .gradient-img-bg-2 {
    padding: 5rem;
  }
}
@media (max-width: 785px) {
  body.is-vn-redesign .main-heading {
    font-size: 2.625rem;
  }

  body.is-vn-redesign .big-text {
    font-size: 1rem;
  }

  body.is-vn-redesign .container {
    max-width: 100%;
    padding-left: 1.125rem;
    padding-right: 1.125rem;
  }

  body.is-vn-redesign .big-heading,
  body.is-vn-redesign .medium-heading {
    font-size: 2rem;
  }

  body.is-vn-redesign .cta-1 .gradient-img-bg-2 {
    padding: 3.75rem;
  }
}
@media (max-width: 575px) {
  body.is-vn-redesign .main-heading {
    font-size: 2.25rem;
  }

  body.is-vn-redesign .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  body.is-vn-redesign .small-heading,
  body.is-vn-redesign .small-heading-card {
    font-size: 1.25rem;
  }

  body.is-vn-redesign .big-heading {
    font-size: 1.75rem;
    letter-spacing: -0.0465em;
  }

  body.is-vn-redesign .carousel-2up .box {
    padding: 1.75rem;
  }

  body.is-vn-redesign .cta-1 .gradient-img-bg-2 {
    padding: 2.5rem;
  }

  body.is-vn-redesign .card-slider .slide {
    padding-left: 0;
    padding-right: 1rem;
  }

  body.is-vn-redesign .testimonial-slider .slide, body.is-vn-redesign .feature-products .carousel-3up .slide {
    padding-left: 0;
    padding-right: 1.5rem;
  }
}
@media (max-width: 420px) {
  body.is-vn-redesign .cta-1 .gradient-img-bg-2 {
    padding: 1.25rem;
  }
}

@media (max-width: 991px) {
  body.is-vn-redesign .fingertips-container .service-providers-box .big-heading {
    font-size: 2.625rem;
  }
}

body.is-vn-redesign .vn-button {
  text-align: center;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.2s ease;
}

body.is-vn-redesign .vn-button--secondary {
  background-color: transparent;
  color: var(--secondary-color);
  line-height:1;
}

body.is-vn-redesign .vn-button--secondary:hover {
  background-color: var(--secondary-color);
  color: var(--color-white);
  border-color: var(--secondary-color);
}

body.is-vn-redesign .vn-button__icon {
  width: 12px;
  height: 11px;
  flex-shrink: 0;
}

body.is-vn-redesign .vn-button--secondary:hover .vn-button__icon path:first-child {
  fill: var(--color-white);
}

body.is-vn-redesign .vn-button--secondary:hover .vn-button__icon path:last-child {
  stroke: var(--color-white);
}

body.is-vn-redesign .vn-button--secondary .vn-button__icon path:first-child {
  fill: var(--secondary-color);
}

body.is-vn-redesign .vn-button--secondary .vn-button__icon path:last-child {
  stroke: var(--secondary-color);
}

body.is-vn-redesign .mw-1300 {
  max-width: 1300px !important;
  width: 100% !important;
}

body.is-vn-redesign .navbar-expand-lg .navbar-nav .dropdown-menu {
  box-shadow: 0 0 20px 0 var(--color-shadow-md);
  padding: 0.9375rem;
}

body.is-vn-redesign .navbar-expand-lg .navbar-nav .nav-link {
  color: var(--versa-dark);
  padding-left: 0.125rem;
  padding-right: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 120%;
  text-transform: uppercase;
}

body.is-vn-redesign #s-1 {
  border: 1px solid var(--versa-light-grey-85);
  border-radius: 8px;
  padding: 0.9375rem;
  min-height: 50px;
  color: var(--versa-grey-85);
  width: 100%;
}

body.is-vn-redesign #s-1:focus-visible {
  outline-color: var(--versa-azure-blue);
  outline-offset: 4px;
}

body.is-vn-redesign #s-1 + .mglass {
  display: none;
  position: absolute;
  right: 12px;
  top: 8px;
  font-size: 1.5625rem;
  opacity: 0.8;
}

body.is-vn-redesign #s-1:placeholder-shown + .mglass {
  display: block;
}

body.is-vn-redesign .dropdown-item {
  color: var(--versa-grey-85);
  letter-spacing: 0.0625em;
  line-height: 1.5;
  font-size: var(--text-sm);
}

body.is-vn-redesign .dropdown-item:focus, body.is-vn-redesign .dropdown-item:hover, body.is-vn-redesign #language-dropdown:hover span {
  color: var(--versa-grey-85);
  background-color: transparent;
  text-decoration: underline 0.12em var(--versa-azure-blue);
  text-underline-offset: 0.25em;
}

body.is-vn-redesign .v-nav .navbar-nav:first-child .nav-link {
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 120%;
  text-transform: uppercase;
}

body.is-vn-redesign .v-nav.navbar .has-megamenu {
  position: static !important;
}

body.is-vn-redesign .v-nav.navbar .has-megamenu.selected span {
  text-decoration: underline 0.12em var(--versa-light-grey);
  text-underline-offset: 0.25em;
}

body.is-vn-redesign .v-nav.navbar .megamenu {
  left: 0;
  right: 0;
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
  padding: 2.5rem;
  box-shadow: 0 0 20px 0 var(--color-shadow-md);
  top: 90px;
  border-radius: 20px;
}

body.is-vn-redesign .v-nav.navbar .megamenu .row {
  gap: 1.375rem;
  margin: 0;
  padding: 0;
}

body.is-vn-redesign .v-nav .megamenu .col {
  padding: 0;
  margin: 0;
}

body.is-vn-redesign .v-nav .list-unstyled li {
  padding-bottom: 0.9375rem;
  letter-spacing: 0.0625em;
  line-height: 1.3;
  font-size: var(--text-sm);
}

body.is-vn-redesign .v-nav .list-unstyled li a {
  color: var(--versa-grey-85);
  font-size: 0.875rem;
  text-decoration: none;
}

body.is-vn-redesign .v-nav .carousel-item .list-unstyled li {
  padding-bottom: 1.5625rem;
  padding-right: 1.5625rem;
  font-size: 0.875rem;
}

body.is-vn-redesign .v-nav .title {
  border-bottom: 1px solid var(--color-border-mid);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  white-space: nowrap;
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.0933em;
}

body.is-vn-redesign .v-nav .subtitle, body.is-vn-redesign .v-nav .carousel-item .subtitle {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--primary-color);
  letter-spacing: 0.1em;
}

body.is-vn-redesign .v-nav .carousel-item .subtitle {
  color: var(--versa-grey-85);
  font-size: 1rem;
  display: flex;
  align-items: center;
}

body.is-vn-redesign .v-nav .dropdown-toggle[aria-expanded="true"]:after,
body.is-vn-redesign #language-dropdown:after {
  visibility: visible;
}

body.is-vn-redesign .v-nav .dropdown-toggle:after {
  display: inline-block;
  border: none;
  margin-left: 0;
  vertical-align: .03em;
  content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iOCIgdmlld0JveD0iMCAwIDEwIDgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+DQoJPHBhdGggZD0iTTAuMTI5ODA1IDAuNzc5MDc5TDEuMTg5ODEgLTMuNzYzNTVlLTA3TDQuNTk5OCAyLjUwNjI4QzQuNjk5OCAyLjU3OTc4IDQuODI5OCAyLjYxNjUzIDQuOTU5OCAyLjYxNjUzQzUuMDg5OCAyLjYxNjUzIDUuMjI5OCAyLjU3OTc4IDUuMzE5OCAyLjUwNjI4TDguNzM5OCAtNC42MzM0MWUtMDhMOS43OTk4IDAuNzc5MDc5TDYuMzg5OCAzLjI4NTM2QzYuMDA5OCAzLjU2NDY2IDUuNTA5OCAzLjcxOSA0Ljk2OTggMy43MTlDNC40Mjk4IDMuNzE5IDMuOTI5OCAzLjU2NDY2IDMuNTQ5OCAzLjI4NTM2TDAuMTM5ODA1IDAuNzc5MDc5TDAuMTI5ODA1IDAuNzc5MDc5WiIgZmlsbD0iI0I3QjZCNiIvPg0KPC9zdmc+DQo=");
  visibility: hidden;
}

body.is-vn-redesign .v-nav .nav-link {
  color: var(--versa-grey);
  text-transform: uppercase;
  font-size: var(--text-sm);
  letter-spacing: var(--letter-spacing-1);
}

body.is-vn-redesign .v-nav .navbar-nav .nav-link span {
  text-decoration: underline 0.12em rgba(0, 149, 218, 0);
  text-underline-offset: 0.25em;
  transition: text-decoration-color 300ms;
  font-weight: 600;
}

body.is-vn-redesign .v-nav .navbar-nav .nav-link:hover span, body.is-vn-redesign .v-nav .megamenu a:hover, body.is-vn-redesign .v-nav .offcanvas a:hover {
  text-decoration: underline 0.12em var(--versa-azure-blue);
  text-underline-offset: 0.25em;
}

body.is-vn-redesign .v-nav h6 a:hover {
  color: var(--versa-azure-blue);
}

body.is-vn-redesign .v-nav #demo-nav-link {
  font-size: var(--text-sm);
}

body.is-vn-redesign .v-nav .button {
  display: inline-block;
  margin: 0.25rem 0.125rem;
  font-size: 0.875rem;
  padding-left: 2rem;
  padding-right: 2rem;
  height: 26px;
  width: 26px;
  line-height: 30px;
  text-align: center;
  color: var(--color-nav-btn);
  text-decoration: none;
  cursor: pointer;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

body.is-vn-redesign .v-nav .button:hover, body.is-vn-redesign .v-nav .button:focus {
  transition-duration: 0.4s;
  -webkit-transition-duration: 0.4s;
  background-color: var(--color-nav-btn);
  color: var(--color-white);
}

body.is-vn-redesign .v-nav .search-container {
  position: relative;
  display: inline-block;
  height: 30px;
  width: 30px;
  vertical-align: bottom;
}

body.is-vn-redesign .v-nav .mglass {
  display: inline-block;
  pointer-events: none;
  -webkit-transform: rotate(-45deg);
}

body.is-vn-redesign .v-nav .searchbutton {
  position: absolute;
  font-size: 1.1875rem;
  margin: 0;
  padding: 0;
  border-radius: 6px;
  background-color: var(--color-search-btn-bg);
}

body.is-vn-redesign .v-nav .search:focus + .searchbutton {
  transition: width 450ms cubic-bezier(0.18, 0.89, 0.32, 1.28);
  background-color: var(--versa-azure-blue);
  color: var(--color-white);
}

body.is-vn-redesign .search {
  position: absolute;
  left: 29px;
  background-color: white;
  outline: none;
  border: none;
  padding: 0;
  width: 0;
  height: 100%;
  z-index: 10;
  transition: width 450ms cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

body.is-vn-redesign .search:focus {
  padding: 0 1rem 0 0;
  border: 1px solid var(--versa-azure-blue);
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  font-size: 0.875rem;
  width: 220px;
  letter-spacing: 0.0714em;
}

body.is-vn-redesign .expandright {
  left: auto;
  right: 30px;
}

body.is-vn-redesign .expandright:focus {
  padding: 0 0.3125rem 0.125rem 1rem;
}

body.is-vn-redesign .offcanvas {
  border: none;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  box-shadow: 0 0 20px 0 var(--color-shadow-md);
  padding: 1.875rem 0 1.875rem 1.875rem;
  height: auto;
}

body.is-vn-redesign .offcanvas ul li a {
  font-size: 1rem;
}

body.is-vn-redesign .offcanvas-body {
  overflow-x: hidden;
  padding-right: 0;
  padding-left: 0.625rem;
  padding-top: 0.625rem;
}

body.is-vn-redesign .offcanvas .btn-secondary {
  width: 100%;
  border: none;
  border-bottom: 1.5px solid var(--color-border-mid);
  margin-bottom: 0.9375rem;
  background-color: transparent;
  border-radius: 0;
  color: var(--versa-link);
  text-align: left;
  font-size: 1rem;
  letter-spacing: .1cqw;
  padding-top: 0;
  padding-right: 2.5rem;
  padding-bottom: 1rem;
  padding-left: 0;
  font-weight: 500;
  box-shadow: none;
}

body.is-vn-redesign .offcanvas-header {
  position: absolute;
  right: 0;
  background-color: var(--color-white);
  border-radius: 20px;
  z-index: 2;
  top: 25px;
  font-size: 0.875rem;
  padding: 0.9375rem;
}

body.is-vn-redesign .offcanvas .btn-secondary:active, body.is-vn-redesign .offcanvas .btn-secondary:focus, body.is-vn-redesign .offcanvas .btn-secondary:focus-visible, body.is-vn-redesign .offcanvas .btn-secondary.show {
  background: transparent;
  color: var(--versa-azure-blue);
  border-bottom: 1.5px solid var(--versa-azure-blue);
  outline: none;
  box-shadow: none;
}

body.is-vn-redesign .offcanvas .btn-secondary:active::after, body.is-vn-redesign .offcanvas .btn-secondary:focus::after, body.is-vn-redesign .offcanvas .btn-secondary:focus-visible::after, body.is-vn-redesign .offcanvas .btn-secondary.show::after {
  content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAxNCAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4NCjxwYXRoIGQ9Ik02LjU1NDg5IDEuNDQ1NDNMMTIuOTI1OSA3LjgxNjQ3TDYuNTU0ODkgMTQuMTg3NSIgc3Ryb2tlPSIjMDA5NURBIiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIi8+DQo8cGF0aCBkPSJNMTIuOTI1OSA3LjgxNjU0SDAuNDk0OTgxIiBzdHJva2U9IiMwMDk1REEiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiLz4NCjwvc3ZnPg0K");
}

body.is-vn-redesign .offcanvas .dropdown-toggle:after {
  content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAxNCAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4NCjxwYXRoIGQ9Ik02LjU1NDg5IDEuNDQ1NDNMMTIuOTI1OSA3LjgxNjQ3TDYuNTU0ODkgMTQuMTg3NSIgc3Ryb2tlPSIjODA4MTgxIiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIi8+DQo8cGF0aCBkPSJNMTIuOTI1OSA3LjgxNjU0SDAuNDk0OTgxIiBzdHJva2U9IiM4MDgxODEiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiLz4NCjwvc3ZnPg0K");
  visibility: visible;
  float: right;
}

body.is-vn-redesign .offcanvas .navbar-nav .dropdown-menu {
  box-shadow: none !important;
  padding: 0;
  margin-bottom: 1.875rem;
}

body.is-vn-redesign .offcanvas .carousel-indicators [data-bs-target] {
  width: 100%;
  height: auto;
  background: transparent;
  text-indent: 0;
}

body.is-vn-redesign .offcanvas .carousel-indicators {
  position: static;
  display: block;
}

body.is-vn-redesign .arrow-left-grey-icon {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAxNCAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4NCgk8cGF0aCBkPSJNNy40NDUzMyAxNC4xODc2TDEuMDc0MyA3LjgxNjU5TDcuNDQ1MzMgMS40NDU1NiIgc3Ryb2tlPSIjODA4MTgxIiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIi8+DQoJPHBhdGggZD0iTTEuMDc0MyA3LjgxNjUxSDEzLjUwNTIiIHN0cm9rZT0iIzgwODE4MSIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIvPg0KPC9zdmc+DQo=");
  width: 20px;
  height: 15px;
  display: inline-block;
  background-repeat: no-repeat;
  margin-right: 0.9375rem;
}

@media (min-width: 1200px) {
  body.is-vn-redesign .v-nav.navbar .megamenu .row {
    gap: 2.5rem;
  }
}
body.is-vn-redesign .footer {
  background-color: var(--footer-bg);
  color: var(--versa-text);
}

body.is-vn-redesign .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--versa-dark);
  text-decoration: none;
}

body.is-vn-redesign .footer-description {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--versa-text);
  max-width: 800px;
}

body.is-vn-redesign .footer-section-title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--versa-dark);
  text-transform: uppercase;
  letter-spacing: 0.0384em;
  margin-bottom: 1.25rem;
}

body.is-vn-redesign .footer-link {
  color: var(--versa-dark);
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 30px;
  text-decoration: none;
}

body.is-vn-redesign .footer-bottom,
body.is-vn-redesign .footer-secondary-links {
  border-top: 1px solid var(--color-border-light);
}

body.is-vn-redesign .footer-bottom {
  font-size: 0.875rem;
}

body.is-vn-redesign .footer-bottom-link {
  color: var(--versa-link);
  text-decoration: underline;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

body.is-vn-redesign .footer-link:hover,
body.is-vn-redesign .footer-bottom-link:hover,
body.is-vn-redesign .footer-secondary-link:hover {
  color: var(--versa-link-hover);
}

body.is-vn-redesign .footer-secondary-link {
  color: var(--versa-dark);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.0357em;
  transition: color 0.2s ease;
}

body.is-vn-redesign .social-icon {
  width: 24px;
  height: 24px;
  fill: var(--primary-color);
  transition: opacity 0.2s ease;
}

body.is-vn-redesign .social-icon:hover {
  opacity: 0.7;
}

body.is-vn-redesign .trademark-text {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--versa-text);
  text-align: center;
}

body.is-vn-redesign a.btn, body.is-vn-redesign .btn-black, body.is-vn-redesign .btn-transparent, body.is-vn-redesign .arrow-btn, body.is-vn-redesign .vn-button {
  text-decoration: none !important;
}

body.is-vn-redesign .hero-content,
.hero-content {
  background: rgb(242, 244, 248);
  position: relative;
  isolation: isolate;
}

body.is-vn-redesign .hero-content > .container,
.hero-content > .container {
  position: relative;
  z-index: 1;
}

body.is-vn-redesign .breadcrumb a {
  color: var(--primary-color);
  text-decoration: none;
}

body.is-vn-redesign .secondary-header-section,
.secondary-header-section {
  position: relative;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

body.is-vn-redesign .secondary-header-section::after,
.secondary-header-section::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: var(--light-grey);
  transform: translateY(-50%);
  z-index: -1;
}

body.is-vn-redesign .secondary-header-section .header-pill,
.secondary-header-section .header-pill {
  background: var(--off-white);
  border: 1px solid var(--light-grey);
  border-radius: 999px;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin: 0;
  list-style: none;
  padding: 0.5rem;
}

body.is-vn-redesign .secondary-header-section .header-pill .nav-link,
.secondary-header-section .header-pill .nav-link {
  color: var(--secondary-color);
  background-color: transparent;
  border: none;
  border-radius: 15px;
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  line-height: 1;
}

body.is-vn-redesign .secondary-header-section .header-pill .nav-link.active,
.secondary-header-section .header-pill .nav-link.active {
  background: var(--secondary-color);
  color: var(--color-white);
  font-weight: 600;
  box-shadow: 0 5.33px 12.8px 0 var(--color-shadow-sm);
}

body.is-vn-redesign .third-header ul,
.third-header ul {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 1.875rem;
  width: fit-content;
  padding-bottom: 0.6875rem;
  border-bottom: 1px solid var(--light-grey);
}

body.is-vn-redesign .third-header ul a,
.third-header ul a {
  font-size: 0.875rem;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-black);
  padding-bottom: 0.75rem;
  font-weight: 500;
  transition: all 0.4s ease;
}

body.is-vn-redesign .third-header ul a.active,
.third-header ul a.active {
    font-weight: 600;
    color: var(--versa-sapphire-blue);
    border-bottom: solid 2px var(--versa-sapphire-blue);
}

body.is-vn-redesign .third-header ul a:hover,
.third-header ul a:hover {
  color: var(--versa-azure-blue);
}

body.is-vn-redesign .resources-intro,
.resources-intro {
  padding: 2rem 0 0;
}

body.is-vn-redesign .resources-intro-title,
.resources-intro-title {
  margin: 0 0 1rem;
}

body.is-vn-redesign .resources-intro-copy,
.resources-intro-copy {
  margin: 0;
}

body.is-vn-redesign .medium-heading-sm {
  font-weight: 500;
  font-size: 2.25rem;
  line-height: 1.2;
  letter-spacing: -0.0556em;
}

body.is-vn-redesign .everyone-box {
  box-shadow: 0 3.09px 46.41px 0 var(--color-shadow-xs);
}

body.is-vn-redesign .everyone-box li::marker {
  color: var(--theme-green);
}

body.is-vn-redesign .written-logo,
.written-logo {
  min-height: 70px;
}

body.is-vn-redesign .written-logo .img-fluid,
.written-logo .img-fluid {
  max-width: 150px;
  max-height: 50px;
  height: auto;
  flex-shrink: 0;
  filter: invert(1);
}

@media (max-width: 767.98px) {
  body.is-vn-redesign .secondary-header-section .header-pill .nav-link,
  .secondary-header-section .header-pill .nav-link {
    padding: 0.4375rem 0.75rem;
    font-size: 0.75rem;
  }

  body.is-vn-redesign .third-header ul,
  .third-header ul {
    gap: 1.25rem;
  }

  body.is-vn-redesign .third-header ul a,
  .third-header ul a {
    font-size: 0.75rem;
  }

  body.is-vn-redesign .medium-heading-sm {
    font-size: 1.75rem;
  }
}

@media (max-width: 575px) {
  body.is-vn-redesign .secondary-header-section .header-pill .nav-link,
  .secondary-header-section .header-pill .nav-link {
    font-size: 0.75rem;
    padding: 0.5rem 0.625rem;
  }
}

.get-demo-bg {
  background: url("https://versa-networks.com/wordpress/wp-content/themes/bootstrap-theme/assets/images/versa-rebrand/get-demo-bg.png") no-repeat center / cover;
}

.cta-verse-world-bg {
  background-image: linear-gradient(261.05deg, rgba(18, 22, 25, 0) -0.81%, rgba(18, 22, 25, 0.7) 35.06%, var(--primary-color) 70.94%), url("https://versa-networks.com/wordpress/wp-content/themes/bootstrap-theme/assets/images/versa-brand-ad-landing-page/versa-verse-world-static-01-20250701.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.news-left-filter::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  width: 2px;
  background-color: var(--light-grey);
}

/* Walkthrough ajax loading Start */
.min-h-160 {
  min-height: 160px;
}

.versa-spinner {
  position: absolute;
  top: 20%;
  width: 100px;
  height: 100px;
  background-image: url("../images/brand/versa-spinner.gif");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin: auto;
}

#page-loader-overlay {
  position: absolute;
  top: 0;
  z-index: 9;
  background: rgba(235, 241, 247, .6);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Walkthrough ajax loading End */

.filterable-card .bg-in-the-news {
  background-color: var(--versa-emerald-green);
}

.filterable-card .bg-press-release {
  background-color: var(--versa-sapphire-blue);
}

.tags {
  margin: 0 0.375rem 0.4375rem 0;
  padding: 0.3125rem 0.5rem;
  border: 1px solid var(--versa-light-grey);
  border-radius: 5px;
  font-size: 0.75rem;
  line-height: 12px;
  text-transform: uppercase;
  letter-spacing: 0.0833em;
  color: var(--versa-light-grey);
  background-color: var(--color-white);
  display: inline-block;
  transition: all 0.1s;
}

.tags-selected {
  border: 1px solid var(--versa-azure-blue);
  color: var(--versa-azure-blue);
}

.v-card-date {
  font-size: var(--text-sm);
}

.load-hidden {
  display: none !important;
}

/* Aug 24 No UI original css + updates */
.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  box-sizing: border-box;
}

.noUi-target {
  position: relative;
}

.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.noUi-connects {
  overflow: hidden;
  z-index: 0;
}

.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -webkit-transform-style: preserve-3d;
  transform-origin: 0 0;
  transform-style: flat;
}

.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
  left: 0;
  right: auto;
}

.noUi-vertical .noUi-origin {
  top: -100%;
  width: 0;
}

.noUi-horizontal .noUi-origin {
  height: 0;
}

.noUi-handle {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
}

.noUi-touch-area {
  height: 100%;
  width: 100%;
}

.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  -webkit-transition: transform 0.3s;
  transition: transform 0.3s;
}

.noUi-state-drag * {
  cursor: inherit !important;
}

.noUi-horizontal {
  height: 18px;
}

.noUi-horizontal .noUi-handle {
  width: 34px;
  height: 28px;
  right: -17px;
  top: -6px;
}

.noUi-vertical {
  width: 18px;
}

.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  right: -6px;
  bottom: -17px;
}

.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
  left: -17px;
  right: auto;
}

/* Update */
.noUi-target {
  background: #e4e7ea;
  border-radius: 50px;
  height: 8px;
  box-shadow: none;
  border: none;
}

.noUi-connects {
  border-radius: 3px;
}

/* Updated */
.noUi-connect {
  background: #2c72c7;
}

.noUi-draggable {
  cursor: ew-resize;
}

.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}

.noUi-handle {
  border: 1px solid red;
  border-radius: 3px;
  background: var(--color-white);
  cursor: default;
  box-shadow: inset 0 0 1px #fff, inset 0 1px 7px #ebebeb, 0 3px 6px -3px #bbb;
}

.noUi-active {
  box-shadow: inset 0 0 1px #fff, inset 0 1px 7px #ddd, 0 3px 6px -3px #bbb;
}

/* Updated */
.noUi-handle:after,
.noUi-handle:before {
  content: "";
  display: none;
  position: absolute;
  height: 14px;
  width: 1px;
  background: #e8e7e6;
  left: 14px;
  top: 6px;
}

.noUi-handle:after {
  left: 17px;
}

.noUi-vertical .noUi-handle:after,
.noUi-vertical .noUi-handle:before {
  width: 14px;
  height: 1px;
  left: 6px;
  top: 14px;
}

.noUi-vertical .noUi-handle:after {
  top: 17px;
}

[disabled] .noUi-connect {
  background: #b8b8b8;
}

[disabled] .noUi-handle,
[disabled].noUi-handle,
[disabled].noUi-target {
  cursor: not-allowed;
}

.noUi-pips,
.noUi-pips * {
  box-sizing: border-box;
}

.noUi-pips {
  position: absolute;
  color: #999;
}

.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center;
}

.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}

.noUi-marker {
  position: absolute;
  background: #ccc;
}

.noUi-marker-sub {
  background: #aaa;
}

.noUi-marker-large {
  background: #aaa;
}

.noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%;
}

.noUi-value-horizontal {
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
}

.noUi-rtl .noUi-value-horizontal {
  -webkit-transform: translate(50%, 50%);
  transform: translate(50%, 50%);
}

.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px;
}

.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}

.noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}

.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%;
}

.noUi-value-vertical {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding-left: 25px;
}

.noUi-rtl .noUi-value-vertical {
  -webkit-transform: translate(0, 50%);
  transform: translate(0, 50%);
}

.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}

.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}

.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}

.noUi-tooltip {
  display: block;
  position: absolute;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  background: var(--color-white);
  color: var(--color-black);
  padding: 5px;
  text-align: center;
  white-space: nowrap;
}

.noUi-horizontal .noUi-tooltip {
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  left: 50%;
  bottom: 120%;
}

.noUi-vertical .noUi-tooltip {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  top: 50%;
  right: 120%;
}

.noUi-horizontal .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(50%, 0);
  transform: translate(50%, 0);
  left: auto;
  bottom: 10px;
}

.noUi-vertical .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(0, -18px);
  transform: translate(0, -18px);
  top: auto;
  right: 28px;
}

/* noUiSlider custom styling */
.noUi-horizontal .noUi-handle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-white);
  border: 3px solid var(--primary-color);
  top: -8px;
  box-shadow: none;
  cursor: pointer;
}