.elementor-484 .elementor-element.elementor-element-86ba7ca{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-9455a29 *//* =========================================================
   SPITI RIDERS — BIKE RENTAL SLIDER
   CLEAN WHITE VERSION
========================================================== */

.sr-rental-section {
  --sr-blue: #1361cc;
  --sr-blue-dark: #0c4fa8;
  --sr-blue-light: #f5f9ff;

  --sr-black: #000000;
  --sr-heading: #111318;
  --sr-text: #5e6671;
  --sr-muted: #9299a4;

  --sr-white: #ffffff;
  --sr-border: #e1e7ef;

  position: relative;
  width: 100%;
  overflow: hidden;

  padding: 20px 30px;

  background: #ffffff;

  font-family: inherit;
}

.sr-rental-section *,
.sr-rental-section *::before,
.sr-rental-section *::after {
  box-sizing: border-box;
}

.sr-rental-container {
  width: min(1400px, 100%);
  margin: 0 auto;
}

/* =========================================================
   SECTION HEADING
========================================================== */

.sr-rental-heading-row {
  display: grid;
  grid-template-columns:
    minmax(0, 1.08fr)
    minmax(400px, 0.92fr);

  align-items: end;

  gap: clamp(50px, 8vw, 120px);

  margin-bottom: 36px;
}

.sr-rental-heading {
  max-width: 730px;
}

.sr-rental-kicker {
  position: relative;

  display: inline-flex;
  align-items: center;

  gap: 11px;

  margin-bottom: 12px;

  color: var(--sr-blue);

  font-size: 11px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.sr-rental-kicker::before {
  content: "";

  width: 38px;
  height: 2px;

  border-radius: 20px;

  background: var(--sr-blue);
}

.sr-rental-heading h2 {
  margin: 0;

  color: var(--sr-heading);

  font-size: clamp(39px, 4vw, 59px);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -2.7px;
}

.sr-rental-heading h2 span {
  display: block;
  color: var(--sr-blue);
}

/* =========================================================
   RIGHT-SIDE DESCRIPTION
========================================================== */

.sr-rental-heading-side {
  display: flex;
  align-items: stretch;
  flex-direction: column;

  gap: 20px;

  padding-bottom: 3px;
}

.sr-rental-heading-side > p {
  max-width: 560px;

  margin: 0;

  color: var(--sr-text);

  font-size: 15px;
  line-height: 1.7;
}

.sr-rental-heading-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 25px;

  width: 100%;
}

/* =========================================================
   VIEW ALL LINK
========================================================== */

.sr-rental-view-all {
  display: inline-flex;
  align-items: center;

  gap: 9px;

  color: var(--sr-heading) !important;

  font-size: 13px;
  font-weight: 750;
  line-height: 1.4;

  text-decoration: none !important;
  white-space: nowrap;

  transition: color 0.25s ease;
}

.sr-rental-view-all svg {
  width: 18px;
  height: 18px;

  fill: none;
  stroke: var(--sr-blue);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;

  transition: transform 0.25s ease;
}

.sr-rental-view-all:hover {
  color: var(--sr-blue) !important;
}

.sr-rental-view-all:hover svg {
  transform: translateX(4px);
}

/* =========================================================
   SLIDER CONTROLS
========================================================== */

.sr-rental-controls {
  display: flex;
  align-items: center;

  gap: 9px;
}

.sr-rental-arrow,
.sr-rental-mobile-arrow {
  appearance: none;

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

  width: 48px;
  height: 48px;
  min-width: 48px;

  padding: 0;

  border: 1px solid var(--sr-border);
  border-radius: 50%;

  background: var(--sr-white);
  color: var(--sr-heading);

  box-shadow: none;

  cursor: pointer;

  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    opacity 0.25s ease;
}

.sr-rental-arrow svg,
.sr-rental-mobile-arrow svg {
  width: 20px;
  height: 20px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sr-rental-arrow:hover,
.sr-rental-arrow:focus,
.sr-rental-mobile-arrow:hover,
.sr-rental-mobile-arrow:focus {
  border-color: var(--sr-blue);

  background: var(--sr-blue);
  color: var(--sr-white);

  outline: none;

  transform: translateY(-2px);
}

.sr-rental-arrow:disabled,
.sr-rental-mobile-arrow:disabled {
  opacity: 0.35;

  cursor: not-allowed;

  transform: none;
}

/* Prevent Elementor/global button styles */

.sr-rental-section button,
.sr-rental-section button:hover,
.sr-rental-section button:focus {
  text-decoration: none;
}

/* =========================================================
   HORIZONTAL SLIDER
========================================================== */

.sr-rental-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 330px;

  gap: 23px;

  overflow-x: auto;
  overflow-y: hidden;

  padding: 6px 3px 27px;

  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;

  scrollbar-width: thin;
  scrollbar-color: var(--sr-blue) #edf1f6;
}

.sr-rental-slider::-webkit-scrollbar {
  height: 6px;
}

.sr-rental-slider::-webkit-scrollbar-track {
  border-radius: 20px;

  background: #edf1f6;
}

.sr-rental-slider::-webkit-scrollbar-thumb {
  border-radius: 20px;

  background: var(--sr-blue);
}

/* =========================================================
   BIKE CARD
========================================================== */

.sr-rental-card {
  position: relative;

  min-width: 0;

  overflow: hidden;

  border: 1px solid var(--sr-border);
  border-radius: 20px;

  background: var(--sr-white);

  box-shadow: none;

  scroll-snap-align: start;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.sr-rental-card:hover {
  border-color: rgba(19, 97, 204, 0.45);

  box-shadow: none;

  transform: translateY(-5px);
}

/* =========================================================
   BIKE IMAGE AREA
========================================================== */

.sr-rental-media {
  position: relative;

  width: 100%;
  height: 260px;

  overflow: hidden;

  border-bottom: 1px solid #edf1f5;

  background: #ffffff;
}

/* Remove all background circles and grey grounding shadows */

.sr-rental-media::before,
.sr-rental-media::after {
  display: none;
  content: none;
}

.sr-rental-media img {
  position: relative;
  z-index: 2;

  width: 100%;
  height: 100%;

  display: block;

  padding: 22px 14px 7px;

  object-fit: contain;
  object-position: center;

  filter: none;

  transition: transform 0.45s ease;
}

.sr-rental-card:hover .sr-rental-media img {
  transform: scale(1.05) translateY(-3px);
}

/* =========================================================
   IMAGE LABELS
========================================================== */

.sr-rental-category {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 5;

  padding: 8px 11px;

  border: 1px solid var(--sr-black);
  border-radius: 50px;

  background: var(--sr-black);
  color: var(--sr-white);

  font-size: 9px;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.sr-rental-number {
  position: absolute;
  top: 18px;
  right: 17px;
  z-index: 5;

  color: #a4abb4;

  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 1.4px;
}

/* =========================================================
   CARD CONTENT
========================================================== */

.sr-rental-content {
  padding: 21px 20px 20px;

  background: #ffffff;
}

.sr-rental-brand {
  display: block;

  margin-bottom: 7px;

  color: var(--sr-blue);

  font-size: 9px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.sr-rental-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  gap: 12px;
}

.sr-rental-title-row h3 {
  margin: 0;

  color: var(--sr-heading);

  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.7px;
}

.sr-rental-price {
  display: flex;
  align-items: baseline;

  gap: 3px;

  flex-shrink: 0;
}

.sr-rental-price strong {
  color: var(--sr-blue);

  font-size: 19px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.5px;
}

.sr-rental-price span {
  color: var(--sr-muted);

  font-size: 9px;
  font-weight: 650;
}

.sr-rental-content > p {
  min-height: 65px;

  margin: 14px 0 0;

  color: var(--sr-text);

  font-size: 12.5px;
  line-height: 1.68;
}

/* =========================================================
   FEATURE TAGS
========================================================== */

.sr-rental-features {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 7px;

  margin-top: 15px;
}

.sr-rental-features span {
  padding: 6px 9px;

  border: 1px solid #dbe5f0;
  border-radius: 50px;

  background: #ffffff;
  color: #34404f;

  font-size: 9px;
  font-weight: 700;
  line-height: 1.3;
}

/* =========================================================
   CARD BUTTON
========================================================== */

.sr-rental-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 9px;

  width: 100%;
  min-height: 48px;

  margin-top: 19px;
  padding: 0 17px;

  border: 1px solid var(--sr-black);
  border-radius: 9px;

  background: var(--sr-black);
  color: var(--sr-white) !important;

  font-size: 12px;
  font-weight: 750;
  line-height: 1.4;

  text-decoration: none !important;

  box-shadow: none;

  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.sr-rental-button svg {
  width: 17px;
  height: 17px;

  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;

  transition: transform 0.25s ease;
}

.sr-rental-button:hover {
  border-color: var(--sr-blue);

  background: var(--sr-blue);
  color: var(--sr-white) !important;

  box-shadow: none;

  transform: translateY(-2px);
}

.sr-rental-button:hover svg {
  transform: translateX(4px);
}

/* =========================================================
   MOBILE NAVIGATION
========================================================== */

.sr-rental-mobile-navigation {
  display: none;
  align-items: center;
  justify-content: center;

  gap: 23px;

  margin-top: 4px;
}

.sr-rental-counter {
  display: flex;
  align-items: baseline;
  justify-content: center;

  gap: 4px;

  min-width: 58px;
}

.sr-rental-counter strong {
  color: var(--sr-heading);

  font-size: 21px;
  font-weight: 850;
}

.sr-rental-counter span {
  color: var(--sr-muted);

  font-size: 10px;
  font-weight: 700;
}

/* =========================================================
   SECTION FOOTER
========================================================== */

.sr-rental-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;

  margin-top: 23px;
}

.sr-rental-footer p {
  margin: 0;

  color: var(--sr-muted);

  font-size: 12px;
  line-height: 1.6;
}

.sr-rental-footer-link {
  display: inline-flex;
  align-items: center;

  gap: 8px;

  flex-shrink: 0;

  color: var(--sr-heading) !important;

  font-size: 12px;
  font-weight: 750;
  line-height: 1.4;

  text-decoration: none !important;
}

.sr-rental-footer-link svg {
  width: 17px;
  height: 17px;

  fill: none;
  stroke: var(--sr-blue);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;

  transition: transform 0.25s ease;
}

.sr-rental-footer-link:hover {
  color: var(--sr-blue) !important;
}

.sr-rental-footer-link:hover svg {
  transform: translateX(4px);
}

/* =========================================================
   TABLET
========================================================== */

@media (max-width: 1100px) {

  .sr-rental-section {
    padding: 68px 20px 65px;
  }

  .sr-rental-heading-row {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(330px, 0.85fr);

    gap: 45px;
  }

  .sr-rental-heading h2 {
    font-size: clamp(38px, 4.7vw, 53px);
  }

  .sr-rental-heading-side > p {
    font-size: 14px;
  }

  .sr-rental-slider {
    grid-auto-columns: 310px;
  }

}

/* =========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {

  .sr-rental-section {
    padding: 56px 18px 54px;

    background: #ffffff;
  }

  .sr-rental-heading-row {
    display: block;

    margin-bottom: 29px;
  }

  .sr-rental-kicker {
    margin-bottom: 10px;

    font-size: 9px;
    letter-spacing: 1.5px;
  }

  .sr-rental-kicker::before {
    width: 28px;
  }

  .sr-rental-heading h2 {
    font-size: clamp(35px, 10.5vw, 45px);
    line-height: 1.05;
    letter-spacing: -1.8px;
  }

  .sr-rental-heading h2 span {
    display: block;
  }

  .sr-rental-heading-side {
    display: block;

    margin-top: 15px;
    padding: 0;
  }

  .sr-rental-heading-side > p {
    max-width: none;

    font-size: 14px;
    line-height: 1.7;
  }

  .sr-rental-heading-actions {
    display: none;
  }

  .sr-rental-slider {
    grid-auto-columns: 84vw;

    gap: 15px;

    margin-right: -18px;
    padding-right: 18px;
    padding-bottom: 18px;

    scrollbar-width: none;
  }

  .sr-rental-slider::-webkit-scrollbar {
    display: none;
  }

  .sr-rental-media {
    height: auto;

    aspect-ratio: 1 / 0.82;

    background: #ffffff;
  }

  .sr-rental-media img {
    padding: 18px 11px 4px;
  }

  .sr-rental-content > p {
    min-height: auto;
  }

  .sr-rental-mobile-navigation {
    display: flex;

    margin-top: 9px;
  }

  .sr-rental-mobile-arrow {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }

  .sr-rental-footer {
    align-items: flex-start;
    flex-direction: column;

    gap: 15px;

    margin-top: 23px;
  }

}

/* =========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 480px) {

  .sr-rental-section {
    padding-right: 14px;
    padding-left: 14px;
  }

  .sr-rental-slider {
    grid-auto-columns: 88vw;

    margin-right: -14px;
    padding-right: 14px;
  }

  .sr-rental-content {
    padding: 19px 17px 18px;
  }

  .sr-rental-title-row h3 {
    font-size: 20px;
  }

  .sr-rental-price strong {
    font-size: 17px;
  }

}/* End custom CSS */