/*
Theme Name: RideSXM
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Imranhossainbpp
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.7.1777142352
Updated: 2026-04-25 18:39:12

*/

#site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	padding-top: 0;
	transition: .3s;
}
#site-header.header-up {
  top: -200px;
}
#site-header.header-down {
  top: 0;
}
#content {
	overflow: hidden;
}
#site-header .e-con-inner .e-con-inner {
	padding-top: 15px;
	transition: .3s;
}
#site-header.header-down .e-con-inner .e-con-inner {
	padding-top: 10px;
}
#site-header .e-con-boxed {
	box-shadow: 0px 3px 10px rgba(0, 0, 0, 0);
	transition: .3s;
}
#site-header.header-down .e-con-boxed {
	box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
}
.pulse-dot svg {
  position: relative;
  z-index: 2;
}

/* Pulse ring */
/*.pulse-dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  background: rgba(255, 204, 0, 0.6);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-ring 1.8s infinite;
  z-index: 1;
}

@keyframes pulse-ring {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.8;
  }
  70% {
    transform: translate(-50%, -50%) scale(2.2);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}*/
.pulse-dot svg {
  transform-origin: center;
  animation: pinFadeScale 2s ease-in-out infinite;
}

@keyframes pinFadeScale {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  20% {
    transform: scale(.8);
    opacity: 0.3;
  }
  40% {
    transform: scale(1.15);
    opacity: 1;
  }

  60% {
    transform: scale(1.05);
    opacity: 0.70;
  }
  80% {
    transform: scale(1.20);
    opacity: 0.85;
  }
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
}
.pulse-dot-two svg {
  transform-origin: center;
  animation: pintwoFadeScale 2.5s ease-in-out infinite;
}

@keyframes pintwoFadeScale {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  20% {
    transform: scale(.8);
    opacity: 0.3;
  }
  40% {
    transform: scale(1.15);
    opacity: 1;
  }

  60% {
    transform: scale(1.05);
    opacity: 0.70;
  }
  80% {
    transform: scale(1.20);
    opacity: 0.85;
  }
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
}
@media(max-width:767px){
#site-header {
	top: 15px;
}
}