:root {

    /* Colors */
    --neo-color-white: #fff;
    --neo-color-reversed: #fff;
    --neo-color-reversed-2: #111;
    --neo-color-heading: #111;
    --neo-color-list: #111;
    --neo-color-paragraph:rgba(0, 0, 0, 0.6);
    --neo-color-paragraph-2:rgba(0, 0, 0, 0.2);
    --neo-color-vertical-text: #111;
    --neo-color-button: #fff;
    --neo-color-accent:#d80a2c;
    --neo-color-border:#e5e7eb;
    --neo-color-border-dark:#333;
    --neo-color-icon:#ccc;

    /* Backgrounds */
    --neo-background-color-button: #000;
    --neo-background-color-white: #fff;
    --neo-background-color-vertical-line: #333;
    --neo-background-color-vertical-line-active: #000;
    --neo-background-color-bullet-active: #111;
    --neo-background-color-bullet: #ccc;
    --neo-background-color-elements: #f4f4f4;
    --neo-background-color-overlay: rgba(0, 0, 0, 0.55);
    --neo-background-color-overlay-2: rgba(0, 0, 0, 0.2);
    --neo-background-color-overlay-hover: rgba(255, 255, 255, 0.55);
    --neo-background-color-overlay-reversed: rgba(255, 255, 255, 0.55);
    --neo-background-color-overlay-reversed-hover: rgba(0, 0, 0, 0.75);


    /* Big text */
    --neo-color-big-text: rgba(0, 0, 0, 0.04);
    --neo-color-big-tex-reversed: rgba(255, 255, 255, 0.2);
    --neo-color-big-text-mask: rgba(0, 0, 0, 1);
    --neo-color-big-text-transparent: rgba(0, 0, 0, 0);

    /* Bg lines */
    --neo-background-color-long-lines: #f5f5f5;
    --neo-background-color-long-lines-second: rgba(0, 0, 0, 0.08);

    --neo-border-radius: 10px;
    --neo-padding-elements-inner: 25px;
    --neo-transition: 0.4s;

}

[data-theme="dark"] {

    --neo-color-white: #fff;               
    --neo-color-reversed: #111;         
    --neo-color-reversed-2: #fff;         
    --neo-color-heading: #fff;
    --neo-color-list: rgba(255,255,255,0.70);
    --neo-color-paragraph: rgba(255,255,255,0.48);
    --neo-color-paragraph-2: rgba(255,255,255,0.18);
    --neo-color-vertical-text: rgba(255,255,255,0.65);
    --neo-color-button: #111;
    --neo-color-accent: #d80a2c;
    --neo-color-border:#2d2d2d;
    --neo-color-border-dark:#eee;
    --neo-color-icon:#353535;

    --neo-background-color-button: #fff;
    --neo-background-color-white: rgba(0,0,0,0.97);
    --neo-background-color-vertical-line: #646464;
    --neo-background-color-vertical-line-active: #FFF;
    --neo-background-color-bullet-active: #d4d4d4;
    --neo-background-color-bullet: #353535;
    --neo-background-color-elements: #0f0f0f;
    --neo-background-color-overlay: rgba(255, 255, 255, 0.55);
    --neo-background-color-overlay-2: rgba(255, 255, 255, 0.2);
    --neo-background-color-overlay-hover: rgba(0, 0, 0, 0.55);
    --neo-background-color-overlay-reversed: rgba(0, 0, 0, 0.55);
    --neo-background-color-overlay-reversed-hover:rgba(0, 0, 0, 0.75);

    --neo-color-big-text: rgba(255,255,255,0.04);
    --neo-color-big-tex-reversed: rgba(0, 0, 0, 0.2);
    --neo-color-big-text-mask: rgba(255,255,255,1);
    --neo-color-big-text-transparent: rgba(255,255,255,0);

    --neo-background-color-long-lines: #111;
    --neo-background-color-long-lines-second: rgba(255,255,255,0.04);

    --neo-pulse-1: rgba(255, 255, 255, 0.2);
    --neo-pulse-2: rgba(255, 255, 255, 0.1);
    --neo-pulse-3: rgba(255, 255, 255, 0.05);    

}
.force_btn{
    --neo-color-button: #fff;
}

[class^="neo-"] span{
  display: inline-block;
}

.bg-lines {
    position: absolute;
    height: 100%;
    left: 20px;
    right: 20px;
    top:0;
    z-index: 1;
}

.bg-lines div {
    background: linear-gradient(
        to bottom,
        var(--neo-background-color-long-lines) 0%,
        var(--neo-background-color-long-lines-second) 35%,
        var(--neo-background-color-long-lines-second) 75%,
        var(--neo-background-color-long-lines) 100%
    );
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    transform-origin: top center;
}

.vertical-text {
    transform: translateY(0) rotate(270deg);
    position: absolute;
    z-index: 3;
    transform-origin: center right;
    top: 40px;
    right: 20px;
    margin-top: 10px;
    display: block;
    font-size: 14px;
    padding: 0 10px;
    white-space: nowrap;
    display: block;
    line-height: 1;
    color: var(--neo-color-vertical-text);
    transition:color var(--neo-transition) ease;
}

.vertical-text a{
    color: var(--neo-color-vertical-text); 
}

.vertical-line {
    position: absolute;
    right: 20px;
    top: 0;
    z-index: 3;
}

.vertical-line:before {
    content: '';
    position: absolute;
    width: 1px;
    height: 50px;
    background: var(--neo-background-color-vertical-line);
    transition: all .4s ease;
}

.vertical-line:after {
    content: '';
    position: absolute;
    width: 5px;
    height: 0;
    background-color: var(--neo-background-color-vertical-line-active);
    transition: all .8s ease;
    left: -2px;
}

.big-text {
    position: absolute;
    top: -80px;
    font-size: 300px;
    letter-spacing: -0.07em;
    font-weight: 900;
    z-index: 0;
    color: var(--neo-color-big-text);
    left: 50px;
    white-space: nowrap;

    /* gradient fade from middle → right */
    -webkit-mask-image: linear-gradient(
        to right, 
        var(--neo-color-big-text-mask) 30%,   /* solid until 30% */
        var(--neo-color-big-text-transparent) 100% /* fade out */
    );
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100%;

    mask-image: linear-gradient(
        to right, 
        var(--neo-color-big-text-mask) 30%, 
        var(--neo-color-big-text-transparent) 100%
    );
    mask-repeat: no-repeat;
    mask-size: 100%;
    transition: color 1s ease;
}

.swiper:not(.swiper-initialized) {
  visibility: hidden;
}

[class^="neo-"] .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background:var(--neo-background-color-elements);
    border-radius: 15px;
    padding: 40px;
    width: 90%; /* big centered slide */
    transition: transform 0.7s ease, opacity 0.7s ease, border 0.7s ease, border-radius 0.7s ease, background-color 0.7s ease, box-shadow 0.7s ease;
    overflow: hidden;
    opacity: 1;
}

[class^="neo-"] .swiper-pagination-bullet{
    border-radius: 3px;
}

[class^="neo-"] .swiper-slide .neo-button{
    display: inline-block;
}

.swiper.effect-coverflow{
  padding-top:20px;
  padding-bottom:20px;
}

.elementor-editor-active .article-title a{
    display: block !important;
}

/* ================================
   Swiper Navigation – Neo Style
   ================================ */

/* Remove default Swiper arrows */
.swiper-button-prev::after,
.swiper-button-next::after {
    display: none;
}

/* Arrow container */
.swiper-button-prev,
.swiper-button-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background:var(--neo-color-accent);
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  transition:
      background 0.25s ease,
      transform 0.25s ease,
      box-shadow 0.25s ease;

  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.neo-swiper-button i::before{
  background-color: var(--neo-color-white) ;
}

/* Icon size */
.swiper-button-prev .neo-icon,
.swiper-button-next .neo-icon {
    width: 24px !important;
    height: 24px !important;
}

/* Hover effect */
.swiper-button-prev:hover,
.swiper-button-next:hover {
    background-color: var(--neo-color-white) ;
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.35);
}

.neo-swiper-button:hover i::before{
  background:var(--neo-color-accent);
}

/* Active (click) effect */
.swiper-button-prev:active,
.swiper-button-next:active {
    transform: scale(0.95);
}

/* Disabled state (Swiper adds this class) */
.swiper-button-disabled {
    opacity: 0.35;
    pointer-events: none;
    box-shadow: none;
}

/* Optional: slightly offset arrows */
.swiper-button-prev {
    left: 12px;
}

.swiper-button-next {
    right: 12px;
}

.small-heading-wrapper{
    display: block;
}

.small-heading-wrapper span{
  max-width: 200px;
  display: block;
}

.occupation-wrapper, 
.heading-wrapper, 
.small-heading-wrapper, 
.subtitle-wrapper, 
.description-wrapper,
.social-icons,
.standard-badge-holder,
.button-wrapper,
.icon-wrapper,
.hero-title,
.subtitle,
.list-items,
.neo-button{
    z-index: 2;
    position: relative;
}

.badge {
    display: inline-block;
    background: var(--neo-color-accent);   
    color: var(--neo-color-white);
    font-size: 10px;
    font-weight: 400;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 2;
}
.badge a{
    color: var(--neo-color-white);
}

body .standard-image-holder img{
  border-radius: var(--neo-border-radius);
  display: block;
  width: 100%;
  max-width: 100%;
}

.small-headline-text-1 ,
.small-headline-text-1 span{
    font-weight: 700;
    color: var(--neo-color-heading);
    font-size: 14px;
    line-height: 1.3em;
}

.small-headline-text-2,
.small-headline-text-2 span{
  color:var(--neo-color-paragraph);
  font-size: 10px;
  font-weight: 400;
  margin-bottom: 0;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.neo-button {
    display: inline-block;
    font-size: 17px;
    font-weight: 300;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    transition: background var(--neo-transition) ease;
    margin-top: 40px;
}

.neo-button-slim {
    color: var(--neo-color-heading);
    font-size: 12px;
    font-weight: 700;
    display: inline-flex !important;    
    align-items: center;  
    gap: 6px;
}
.neo-button-slim svg{
    fill: var(--neo-color-heading);
}
.neo-button-slim .button-icon,
.neo-button-slim .button-text{
    line-height: 1;
}

.neo-button-slim svg {
  width: 20px;  
  height: 20px; 
  flex-shrink: 0;
  fill:var(--neo-color-paragraph);
}

.neo-button-slim .neo-icon {
  width: 20px;  
  height: 20px; 
}

.neo-button-slim .neo-icon::before {
  background-color:var(--neo-color-paragraph);
}

.neo-button-slim i {
  color:var(--neo-color-paragraph);
  font-size: 20px;
}

.neo-button-simple{
    display: inline-flex;
    align-items: center;
    margin-top: 20px;
    position: relative;
    transition: transform .4s ease;
    overflow: hidden;
}

.neo-button-simple:before{
    content: '';
    position: absolute;
    width: calc(100% - 30px);
    height: 3px;
    background: var(--neo-color-border-dark);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    bottom:0
}

.neo-button-simple:hover:before{
    transform: translateX(0);
}

.neo-button-simple .neo-icon {
    width: 24px;
    height: 24px;
    margin-left: 5px;
    transform: rotate(0deg);
    transition: transform var(--neo-transition) ease;
    transform-origin: center; /* ensures rotation is from its center */
}

.neo-button-simple:hover .neo-icon {
    transform: rotate(90deg); /* rotate upward */
}

.neo-button-simple .neo-icon:before{
    background-color: var(--neo-color-heading);
}

.neo-button-simple span{
    font-size: 16px;
    font-weight: bold;
    color: var(--neo-color-heading);
}

.neo-button.button--dione::before {
    border-radius: 30px;
}

.neo-button.button--dione:hover::after {
    border-radius: 30px;
}

.neo-button.button--dione::after{
    border-radius: 30px; 
}

.layout-left{
  text-align: left;
}

.layout-right{
  text-align: right;
}

.layout-center{
  text-align: center;
}

.hero-title ,
.article-title,
.main-heading{
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--neo-color-heading);
    max-width: 500px;
    letter-spacing: -0.030em;
    line-height: 1.06em;
    margin-top: 20px;
}
.hero-title{
    font-size: 56px;
}

.article-title{
    max-width: 300px;
}

.article-title a,
.main-heading,
.plan-title{
    font-size: 24px;
    line-height: 1.22em;
}

.article-title a{
  display: block;
}

.plan-title{
    margin: 0;
    padding: 0;
}

.icon-wrapper{
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 64px; /* Prevent shrinking and enforce exact width */
}

.simple .icon-wrapper svg,
.circle-line .icon-wrapper svg,
.round-line .icon-wrapper svg{
  fill:var(--neo-color-icon);
}

.simple .icon-wrapper i,
.circle-line .icon-wrapper i,
.round-line .icon-wrapper i{
  color:var(--neo-color-icon);
}

/* =========================
   BASE (DESKTOP)
   ========================= */
.icon-normal .icon-wrapper {
  width: 64px;
  height: 64px;
}

.icon-large .icon-wrapper {
  width: 76px;
  height: 76px;
  flex: 0 0 76px;
}

.icon-xlarge .icon-wrapper {
  width: 96px;
  height: 96px;
  flex: 0 0 96px;
}

.icon-huge .icon-wrapper {
  width: 128px;
  height: 128px;
  flex: 0 0 128px;
}

/* =========================
   TABLET (<= 1024px)
   ========================= */
@media (max-width: 1023px) {
  .tablet-icon-normal .icon-wrapper {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
  }

  .tablet-icon-large .icon-wrapper {
    width: 76px;
    height: 76px;
    flex: 0 0 76px;
  }

  .tablet-icon-xlarge .icon-wrapper {
    width: 96px;
    height: 96px;
    flex: 0 0 96px;
  }

  .tablet-icon-huge .icon-wrapper {
    width: 128px;
    height: 128px;
    flex: 0 0 128px;
  }
}

/* =========================
   MOBILE (<= 767px)
   ========================= */
@media (max-width: 767px) {
  .mobile-icon-normal .icon-wrapper {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
  }

  .mobile-icon-large .icon-wrapper {
    width: 76px;
    height: 76px;
    flex: 0 0 76px;
  }

  .mobile-icon-xlarge .icon-wrapper {
    width: 96px;
    height: 96px;
    flex: 0 0 96px;
  }

  .mobile-icon-huge .icon-wrapper {
    width: 128px;
    height: 128px;
    flex: 0 0 128px;
  }
}

/* =========================
   SHARED STYLES (BASE / DESKTOP)
   ========================= */


/* Border + padding for round-line and circle-line variants */
[class^="neo-"].round-line .icon-wrapper,
[class*=" neo-"].round-line .icon-wrapper,
[class^="neo-"].circle-line .icon-wrapper,
[class*=" neo-"].circle-line .icon-wrapper {
  border: solid 1px var(--neo-color-border-dark);
  padding: 6px;
}

/* Background + padding for round-fill and circle-fill variants */
[class^="neo-"].round-fill .icon-wrapper,
[class*=" neo-"].round-fill .icon-wrapper,
[class^="neo-"].circle-fill .icon-wrapper,
[class*=" neo-"].circle-fill .icon-wrapper {
  padding: 6px;
  background-color: var(--neo-color-accent);
}

[class^="neo-"].round-fill .icon-wrapper i.neo-icon::before,
[class*=" neo-"].round-fill .icon-wrapper i.neo-icon::before,
[class^="neo-"].circle-fill .icon-wrapper i.neo-icon::before,
[class*=" neo-"].circle-fill .icon-wrapper i.neo-icon::before {
  background-color: var(--neo-color-white);
}

[class^="neo-"].round-fill .icon-wrapper i,
[class*=" neo-"].round-fill .icon-wrapper i,
[class^="neo-"].circle-fill .icon-wrapper i,
[class*=" neo-"].circle-fill .icon-wrapper i {
  color: var(--neo-color-white);
}

[class^="neo-"].round-fill .icon-wrapper svg,
[class*=" neo-"].round-fill .icon-wrapper svg,
[class^="neo-"].circle-fill .icon-wrapper svg,
[class*=" neo-"].circle-fill .icon-wrapper svg {
  fill: var(--neo-color-white);
}

/* Shape variants */
[class^="neo-"].round-line .icon-wrapper,
[class*=" neo-"].round-line .icon-wrapper,
[class^="neo-"].round-fill .icon-wrapper,
[class*=" neo-"].round-fill .icon-wrapper {
  border-radius: var(--neo-border-radius);
}

[class^="neo-"].circle-line .icon-wrapper,
[class*=" neo-"].circle-line .icon-wrapper,
[class^="neo-"].circle-fill .icon-wrapper,
[class*=" neo-"].circle-fill .icon-wrapper {
  border-radius: 50%;
}




/* =========================
   NON-SIMPLE VARIANTS
   ========================= */

/* === Desktop === */
[class^="neo-"]:not(.simple).icon-normal .icon-wrapper svg,
[class*=" neo-"]:not(.simple).icon-normal .icon-wrapper svg {
  width: 40px;
  height: 40px;
}

[class^="neo-"]:not(.simple).icon-normal .icon-wrapper i,
[class*=" neo-"]:not(.simple).icon-normal .icon-wrapper i {
  width: 45px;
  height: 45px;
  font-size: 45px;
}

[class^="neo-"]:not(.simple).icon-large .icon-wrapper svg,
[class*=" neo-"]:not(.simple).icon-large .icon-wrapper svg {
  width: 46px;
  height: 46px;
}

[class^="neo-"]:not(.simple).icon-large .icon-wrapper i,
[class*=" neo-"]:not(.simple).icon-large .icon-wrapper i {
  width: 52px;
  height: 52px;
  font-size: 52px;
}

[class^="neo-"]:not(.simple).icon-xlarge .icon-wrapper svg,
[class*=" neo-"]:not(.simple).icon-xlarge .icon-wrapper svg {
  width: 60px;
  height: 60px;
}

[class^="neo-"]:not(.simple).icon-xlarge .icon-wrapper i,
[class*=" neo-"]:not(.simple).icon-xlarge .icon-wrapper i {
  width: 68px;
  height: 68px;
  font-size: 68px;
}

[class^="neo-"]:not(.simple).icon-huge .icon-wrapper svg,
[class*=" neo-"]:not(.simple).icon-huge .icon-wrapper svg {
  width: 80px;
  height: 80px;
}

[class^="neo-"]:not(.simple).icon-huge .icon-wrapper i,
[class*=" neo-"]:not(.simple).icon-huge .icon-wrapper i {
  width: 90px;
  height: 90px;
  font-size: 90px;
}

/* === Tablet (<= 1023px) === */
@media (max-width: 1023px) {
  [class^="neo-"]:not(.simple).tablet-icon-normal .icon-wrapper svg,
  [class*=" neo-"]:not(.simple).tablet-icon-normal .icon-wrapper svg {
    width: 40px;
    height: 40px;
  }

  [class^="neo-"]:not(.simple).tablet-icon-normal .icon-wrapper i,
  [class*=" neo-"]:not(.simple).tablet-icon-normal .icon-wrapper i {
    width: 45px;
    height: 45px;
    font-size: 45px;
  }

  [class^="neo-"]:not(.simple).tablet-icon-large .icon-wrapper svg,
  [class*=" neo-"]:not(.simple).tablet-icon-large .icon-wrapper svg {
    width: 46px;
    height: 46px;
  }

  [class^="neo-"]:not(.simple).tablet-icon-large .icon-wrapper i,
  [class*=" neo-"]:not(.simple).tablet-icon-large .icon-wrapper i {
    width: 52px;
    height: 52px;
    font-size: 52px;
  }

  [class^="neo-"]:not(.simple).tablet-icon-xlarge .icon-wrapper svg,
  [class*=" neo-"]:not(.simple).tablet-icon-xlarge .icon-wrapper svg {
    width: 60px;
    height: 60px;
  }

  [class^="neo-"]:not(.simple).tablet-icon-xlarge .icon-wrapper i,
  [class*=" neo-"]:not(.simple).tablet-icon-xlarge .icon-wrapper i {
    width: 68px;
    height: 68px;
    font-size: 68px;
  }

  [class^="neo-"]:not(.simple).tablet-icon-huge .icon-wrapper svg,
  [class*=" neo-"]:not(.simple).tablet-icon-huge .icon-wrapper svg {
    width: 80px;
    height: 80px;
  }

  [class^="neo-"]:not(.simple).tablet-icon-huge .icon-wrapper i,
  [class*=" neo-"]:not(.simple).tablet-icon-huge .icon-wrapper i {
    width: 90px;
    height: 90px;
    font-size: 90px;
  }
}

/* === Mobile (<= 767px) === */
@media (max-width: 767px) {
  [class^="neo-"]:not(.simple).mobile-icon-normal .icon-wrapper svg,
  [class*=" neo-"]:not(.simple).mobile-icon-normal .icon-wrapper svg {
    width: 40px;
    height: 40px;
  }

  [class^="neo-"]:not(.simple).mobile-icon-normal .icon-wrapper i,
  [class*=" neo-"]:not(.simple).mobile-icon-normal .icon-wrapper i {
    width: 45px;
    height: 45px;
    font-size: 45px;
  }

  [class^="neo-"]:not(.simple).mobile-icon-large .icon-wrapper svg,
  [class*=" neo-"]:not(.simple).mobile-icon-large .icon-wrapper svg {
    width: 46px;
    height: 46px;
  }

  [class^="neo-"]:not(.simple).mobile-icon-large .icon-wrapper i,
  [class*=" neo-"]:not(.simple).mobile-icon-large .icon-wrapper i {
    width: 52px;
    height: 52px;
    font-size: 52px;
  }

  [class^="neo-"]:not(.simple).mobile-icon-xlarge .icon-wrapper svg,
  [class*=" neo-"]:not(.simple).mobile-icon-xlarge .icon-wrapper svg {
    width: 60px;
    height: 60px;
  }

  [class^="neo-"]:not(.simple).mobile-icon-xlarge .icon-wrapper i,
  [class*=" neo-"]:not(.simple).mobile-icon-xlarge .icon-wrapper i {
    width: 68px;
    height: 68px;
    font-size: 68px;
  }

  [class^="neo-"]:not(.simple).mobile-icon-huge .icon-wrapper svg,
  [class*=" neo-"]:not(.simple).mobile-icon-huge .icon-wrapper svg {
    width: 80px;
    height: 80px;
  }

  [class^="neo-"]:not(.simple).mobile-icon-huge .icon-wrapper i,
  [class*=" neo-"]:not(.simple).mobile-icon-huge .icon-wrapper i {
    width: 90px;
    height: 90px;
    font-size: 90px;
  }
}


/* =========================
   SIMPLE VARIANTS
   ========================= */

/* === Desktop === */
[class^="neo-"].simple.icon-normal .icon-wrapper svg,
[class*=" neo-"].simple.icon-normal .icon-wrapper svg {
  width: 64px;
  height: 64px;
}

[class^="neo-"].simple.icon-normal .icon-wrapper i,
[class*=" neo-"].simple.icon-normal .icon-wrapper i {
  width: 64px;
  height: 64px;
  font-size: 64px;
}

[class^="neo-"].simple.icon-large .icon-wrapper svg,
[class*=" neo-"].simple.icon-large .icon-wrapper svg {
  width: 76px;
  height: 76px;
}

[class^="neo-"].simple.icon-large .icon-wrapper i,
[class*=" neo-"].simple.icon-large .icon-wrapper i {
  width: 76px;
  height: 76px;
  font-size: 76px;
}

[class^="neo-"].simple.icon-xlarge .icon-wrapper svg,
[class*=" neo-"].simple.icon-xlarge .icon-wrapper svg {
  width: 96px;
  height: 96px;
}

[class^="neo-"].simple.icon-xlarge .icon-wrapper i,
[class*=" neo-"].simple.icon-xlarge .icon-wrapper i {
  width: 96px;
  height: 96px;
  font-size: 96px;
}

[class^="neo-"].simple.icon-huge .icon-wrapper svg,
[class*=" neo-"].simple.icon-huge .icon-wrapper svg {
  width: 128px;
  height: 128px;
}

[class^="neo-"].simple.icon-huge .icon-wrapper i,
[class*=" neo-"].simple.icon-huge .icon-wrapper i {
  width: 128px;
  height: 128px;
  font-size: 128px;
}

/* === Tablet (<= 1024px) === */
@media (max-width: 1024px) {
  [class^="neo-"].simple.tablet-icon-normal .icon-wrapper svg,
  [class*=" neo-"].simple.tablet-icon-normal .icon-wrapper svg {
    width: 64px;
    height: 64px;
  }

  [class^="neo-"].simple.tablet-icon-normal .icon-wrapper i,
  [class*=" neo-"].simple.tablet-icon-normal .icon-wrapper i {
    width: 64px;
    height: 64px;
    font-size: 64px;
  }

  [class^="neo-"].simple.tablet-icon-large .icon-wrapper svg,
  [class*=" neo-"].simple.tablet-icon-large .icon-wrapper svg {
    width: 76px;
    height: 76px;
  }

  [class^="neo-"].simple.tablet-icon-large .icon-wrapper i,
  [class*=" neo-"].simple.tablet-icon-large .icon-wrapper i {
    width: 76px;
    height: 76px;
    font-size: 76px;
  }

  [class^="neo-"].simple.tablet-icon-xlarge .icon-wrapper svg,
  [class*=" neo-"].simple.tablet-icon-xlarge .icon-wrapper svg {
    width: 96px;
    height: 96px;
  }

  [class^="neo-"].simple.tablet-icon-xlarge .icon-wrapper i,
  [class*=" neo-"].simple.tablet-icon-xlarge .icon-wrapper i {
    width: 96px;
    height: 96px;
    font-size: 96px;
  }

  [class^="neo-"].simple.tablet-icon-huge .icon-wrapper svg,
  [class*=" neo-"].simple.tablet-icon-huge .icon-wrapper svg {
    width: 128px;
    height: 128px;
  }

  [class^="neo-"].simple.tablet-icon-huge .icon-wrapper i,
  [class*=" neo-"].simple.tablet-icon-huge .icon-wrapper i {
    width: 128px;
    height: 128px;
    font-size: 128px;
  }
}

/* === Mobile (<= 767px) === */
@media (max-width: 767px) {
  [class^="neo-"].simple.mobile-icon-normal .icon-wrapper svg,
  [class*=" neo-"].simple.mobile-icon-normal .icon-wrapper svg {
    width: 64px;
    height: 64px;
  }

  [class^="neo-"].simple.mobile-icon-normal .icon-wrapper i,
  [class*=" neo-"].simple.mobile-icon-normal .icon-wrapper i {
    width: 64px;
    height: 64px;
    font-size: 64px;
  }

  [class^="neo-"].simple.mobile-icon-large .icon-wrapper svg,
  [class*=" neo-"].simple.mobile-icon-large .icon-wrapper svg {
    width: 76px;
    height: 76px;
  }

  [class^="neo-"].simple.mobile-icon-large .icon-wrapper i,
  [class*=" neo-"].simple.mobile-icon-large .icon-wrapper i {
    width: 76px;
    height: 76px;
    font-size: 76px;
  }

  [class^="neo-"].simple.mobile-icon-xlarge .icon-wrapper svg,
  [class*=" neo-"].simple.mobile-icon-xlarge .icon-wrapper svg {
    width: 96px;
    height: 96px;
  }

  [class^="neo-"].simple.mobile-icon-xlarge .icon-wrapper i,
  [class*=" neo-"].simple.mobile-icon-xlarge .icon-wrapper i {
    width: 96px;
    height: 96px;
    font-size: 96px;
  }

  [class^="neo-"].simple.mobile-icon-huge .icon-wrapper svg,
  [class*=" neo-"].simple.mobile-icon-huge .icon-wrapper svg {
    width: 128px;
    height: 128px;
  }

  [class^="neo-"].simple.mobile-icon-huge .icon-wrapper i,
  [class*=" neo-"].simple.mobile-icon-huge .icon-wrapper i {
    width: 128px;
    height: 128px;
    font-size: 128px;
  }
}



[class^="neo-"].simple .icon-wrapper,
[class*=" neo-"].simple .icon-wrapper {
  margin-top: 0;
  border-radius: 50%;
}

[class^="neo-"].simple .icon-wrapper svg,
[class*=" neo-"].simple .icon-wrapper svg {
  margin-top: 20px;
}

[class^="neo-"] p {
  font-size: 17px;
  margin-bottom: 30px;
  line-height: 1.55em;
  color: var(--neo-color-paragraph);
  font-weight: normal;
}

.description-wrapper span{
  line-height: 1.55em;
  font-weight: 400;
}

[class^="neo-"] ul {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

[class^="neo-"] ul li {
  font-size: 15px;
  color: var(--neo-color-list);
  margin-bottom: 8px;
  position: relative;
  line-height: 1em;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
}


.list-items .neo-icon,
.list-items li svg{
  width: 16px;
  height: 16px;
}

.list-items i{
  font-size:16px
}

.list-items li svg{
  fill:var(--neo-color-list);
}

.list-items li .neo-icon:before{
  background-color:var(--neo-color-list);
}

.list-items li i{
  color:var(--neo-color-list);
}

[class^="neo-"] .pulse {
  animation: none; /* JS will set the real animation */
}

/* Container for pagination */
.swiper-pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 20px;
    bottom: 10px !important;
}

/* Each bullet = line */
.swiper-pagination-bullet {
    flex: 1;
    height: 2px;
    border-radius: 2px;
    opacity: 1; 
    margin: 0 !important; 
    transition: background var(--neo-transition) ease, transform var(--neo-transition) ease;
    width: 30px;
    max-width: 30px;
    transform: translateY(0);
    background: var(--neo-background-color-bullet);
    border-radius: 15px;
}

/* Active bullet = highlighted line */
.swiper-pagination-bullet-active {
    background: var(--neo-background-color-bullet-active);
}

.slide-content{
    z-index: 2;
}

.lottie-container {
    position: absolute;
    top: 50%;
    pointer-events: none;
    opacity: 1;
    z-index: 1;
    transform: translateY(-50%);
    right: 0;
    width: 100%;
}

.lottie-container.waves{
    opacity: .4;
}

[data-theme="dark"] .lottie-container{
    opacity: .3;
}

[data-theme="dark"] .lottie-container.triangles{
    opacity: .15;
}

[data-theme="dark"] .lottie-container.waves{
    opacity: .05;
}