*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.masthead{
	overflow:hidden !important;
	max-width:100%;
}

.wrap{
  position: absolute;
  height: 3000px;
  bottom: 10px;
  left: 0;
  width: 100%;
}
.image{
  width: 220px;
  position: absolute;
}
.truck-img{
  bottom: 0;
  left: -150px;
  z-index: 2;
  animation: truck 10s linear infinite;
}
@keyframes truck{
  40%, 70%{
    left: 50%;
  }
  100%{
    left: 100%;
  }
}
/* .box-img{
  width: 135px;
  z-index: 1;
  bottom: 10px;
  left: 20%;
  opacity: 1;
  animation: box 10s linear infinite;
} */
.box1-img1{
  width: 135px;
  z-index: 1;
  bottom: 10px;
  left: 30%;
  opacity: 1;
  animation: box1 10s linear infinite;	
  animation-delay: 0.5s;
}
/* @keyframes box{
  0%, 40%{
    opacity: 1;
    left: 35%;
  }
  50%{
    opacity: 1;
    left: 35%;
  }
  51%, 100%{
    opacity: 0;
    left: 51%;
  }
} */
@keyframes box1{
  0%, 40%{
    opacity: 1;
    left: 30%;
  }
  50%{
    opacity: 1;
    left: 50%;
  }
  51%, 100%{
    opacity: 0;
    left: 51%;
  }
}


.pin {
  width: 30px;
  height: 30px;
  border-radius: 50% 50% 50% 0;
  background: #dc3545;
  position: absolute;
  transform: rotate(-45deg);
  left: 50%;
  top: 59%;
  margin: -20px 0 0 -20px;
  z-index:5;
}
.pin:after {
  content: "";
  width: 14px;
  height: 14px;
  margin: 8px 0 0 8px;
  background: #ffffff;
  position: absolute;
  border-radius: 50%;
}

.bounce {
  animation-name: bounce;
  animation-fill-mode: both;
  animation-duration: 1s;
}

.pulse {
  background: #ffffff;
  border-radius: 50%;
  height: 14px;
  width: 14px;
  position: absolute;
  left: 50%;
  top: 59%;
  margin: 11px 0px 0px -12px;
  transform: rotateX(55deg);
  z-index: 1;
}
.pulse:after {
  content: "";
  border-radius: 50%;
  height: 40px;
  width: 40px;
  position: absolute;
  margin: -13px 0 0 -13px;
  animation: pulsate 1s ease-out;
  animation-iteration-count: infinite;
  opacity: 0;
  box-shadow: 0 0 1px 2px #dc3545;
  animation-delay: 1.1s;
}

@keyframes pulsate {
  0% {
    transform: scale(0.1, 0.1);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: scale(1.2, 1.2);
    opacity: 0;
  }
}

@keyframes bounce {
  0% {
    opacity: 0;
    transform: translateY(-2000px) rotate(-45deg);
  }

  60% {
    opacity: 1;
    transform: translateY(30px) rotate(-45deg);
  }

  80% {
    transform: translateY(-10px) rotate(-45deg);
  }

  100% {
    transform: translateY(0) rotate(-45deg);
  }
}
