/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

.fe-grid > div > div {
  min-height: 320px;
}

.serv-grid > div > div {
  box-shadow: 0px 0px 1px 4px lightgray;
}

.hm-fleet-grid > div > div {
  box-shadow: 0px 0px 4px 4px gray;
}

#top-bar {
  width: 100%;
  position: relative;
  height: 28px;
  top: 0;
	background: #000;
}

.clear {
  clear: both;
}

#top-bar::after {
  content: '';
  position: absolute;
  width: 100%;
  left: 0;
  height: 30px;
  background-repeat: repeat-x;
  background-image: url('https://www.pakenhamtaxicabs.com.au/wp-content/uploads/2026/01/movingstrip-66ed43d5bfdb6.webp');
  bottom: 0;
  -webkit-animation: bgSlide 20s linear infinite;
  animation: bgSlide 20s linear infinite;
  background-size: 30px;
}

@-webkit-keyframes bgSlide{
	0% {
  		background-position: 0 0;
	}
	20% {
  background-position: -100px 0;
}
	40% {
  background-position: -200px 0;
}
	60% {
  background-position: -150px 0;
}
	80% {
  background-position: -100px 0;
}
	100% {
  background-position: 0px 0;
}
	
}