@media (max-width: 425px) {
    .ukext-sub > .ukext-slider-cnt > h1 {
    /* .ukext-slider-cnt h1 { */
        font-size: 1.7rem;
        line-height: 1.7rem !important;
    }
}
p.img-description {
    font-size: 14px; 
    color:#000; 
    line-height: 18px; 
    padding: 15px; 
}
@media(max-width: 640px){ 
    p.img-description {
        font-size: 12px; 
        line-height: 14px;
    }
}


.heading-h1-btm {
  padding-bottom: 60px;
}
@media(max-width: 1199px){ 
  .heading-h1-btm {
    padding-bottom: 50px;
  }
}
@media(max-width: 640px){ 
  .heading-h1-btm {
    padding-bottom: 40px;
  }
}

/* === THE BADGE ===
     Sits as a sibling of .uk-slider-items (not inside a <li>), so it
     stays fixed on top of the slider and is visible on every slide.
     Its parent must be position: relative (uk-position-relative does this).

     Fully fluid: every size below uses clamp(min, preferred-vw, max)
     instead of fixed px breakpoints, so it scales smoothly with the
     viewport with no jumps at fixed widths. */
  .ssp-badge {
    position: absolute;
    top: 22%;
    right: 5%;
    transform: translateY(-50%);
    z-index: 10;
    width: clamp(130px, 22vw, 300px);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: clamp(8px, 2vw, 12px);
    box-sizing: border-box;
    pointer-events: none; /* let the button below re-enable clicks */
    font-family: 'Raleway', Arial, Helvetica, sans-serif;
  }

  .ssp-badge__sub {
    font-size: clamp(12px, 1.4vw, 24px);
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .ssp-badge__main {
    font-size: clamp(16px, 2.9vw, 42px);
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.1;
    margin: clamp(3px, 0.6vw, 3px) 0 clamp(10px, 1.6vw, 14px);
    letter-spacing: 0.01em;
  }

  .ssp-badge__btn {
    pointer-events: auto;
    display: inline-block;
    background: #16324f;
    color: #fff;
    font-size: clamp(8px, 1.1vw, 13px);
    font-family: 'Raleway', Arial, Helvetica, sans-serif;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-decoration: none;
    text-transform: uppercase;
    padding: clamp(2px, 1.2vw, 3px) clamp(6px, 2.4vw, 10px);
    border-radius: 999px;
    white-space: nowrap;
    transition: background 0.2s ease;
	line-height: 1.4;
  }

  .ssp-badge__btn:hover {
    background: #1e4266;
    color: #fff;
  }

  @media(max-width: 640px){ 
     .ssp-badge {
    position: absolute;
    top: 85%;
    right: 2%;
  }