/* ==========================================================================
   PAGINA BICI (bike-page.php)
   ========================================================================== */
#bike-page #first-section {
  background-size: cover;
  background-position: center;
}

#bike-page #first-section .hero-overlay {
  background-color: rgba(0, 0, 0, 0.4);
}

#bike-page .letter-spacing-3 {
  letter-spacing: 3px;
}

#bike-page #third-section .bike-card {
  transition: all 0.3s ease;
  overflow: hidden;
}

#bike-page #third-section .bike-card img {
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

#bike-page #third-section .bike-card:hover img {
  transform: scale(1.1);
}

#bike-page #third-section .short-divider {
  width: 60px;
  height: 3px;
  background-color: var(--color-primary);
}

#bike-page #fourth-section .service-icon-box .fa-solid {
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

#bike-page #fourth-section .service-icon-box:hover .fa-solid {
  transform: translateY(-10px);
  color: var(--bg-main) !important;
}
