body {
  font-family: "Josefin Slab", serif;
}

.header {
  background-color: #2c003e;
  position: relative;
}
.feature-items {
  text-align: center;
  padding: 4%;
}
#h1 {
  display: inline;
  color: #fcf8f3;
  font-weight: 700;
  font-size: 1rem;
}
.header_images {
  width: 35%;
  border-radius: 5%;
  text-align: center;
  position: absolute;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
#home_screen {
  animation-name: home_screen_animation;
  animation-duration: 7s;
  animation-delay: 5s;
  animation-iteration-count: infinite;
}
#map_screen {
  animation-name: map_screen_animation;
  animation-duration: 7s;
  animation-delay: 5s;
  animation-iteration-count: infinite;
}

#location_screen {
  animation-name: location_screen_animation;
  animation-duration: 7s;
  animation-delay: 5s;
  animation-iteration-count: infinite;
}
#row {
  margin: 0;
  padding: 5% 5%;
}
.align {
  text-align: center;
}
.features {
  text-align: center;
  padding: 5%;
}

@keyframes map_screen_animation {
  0% {
    transform: translateZ(0);
    width: 30%;
    right: 0%;
  }
  25% {
    transform: translateZ(-3rem);
    width: 25%;
    right: 30%;
  }
  50% {
    transform: translateZ(0);
    width: 30%;
    right: 70%;
  }
  75% {
    transform: translateZ(0);
    width: 30%;
    right: 70%;
  }
  100% {
    transform: translateZ(3rem);
    width: 35%;
    right: 30%;
  }
}
@keyframes home_screen_animation {
  0% {
    transform: translateZ(0);
    width: 30%;
    right: 60%;
  }
  25% {
    transform: translateZ(0);
    width: 30%;
    right: 60%;
  }
  50% {
    transform: translateZ(3rem);
    width: 35%;
    right: 30%;
  }
  75% {
    transform: translateZ(0);
    width: 30%;
    right: 0%;
  }
  100% {
    transform: translateZ(0);
    width: 30%;
    right: 0%;
  }
}
@keyframes location_screen_animation {
  0% {
    transform: translateZ(3rem);
    width: 35%;
    right: 30%;
  }
  25% {
    transform: translateZ(0);
    width: 30%;
    right: 0%;
  }
  50% {
    transform: translateZ(0);
    width: 30%;
    right: 0%;
  }
  75% {
    transform: translateZ(-3rem);
    width: 25%;
    right: 30%;
  }
  100% {
    transform: translateZ(0);
    width: 30%;
    right: 60%;
  }
}
.feature-icons {
  color: #2c003e;
  font-size: 3.5rem;
  margin-bottom: 1rem;
}
#cta {
  text-align: center;
  padding: 3.5% 7%;
}
hr {
  background-color: #856c8b;
  border-style: dotted none none none;
  border-top-width: 10px;
  color: #f5cab3;
  width: 15%;
}
#h3 {
  font-weight: 400;
  color: #2c003e;
}
#h2 {
  font-size: 3rem;
  font-weight: 600;
  color: white;
  padding-top: 7%;
  /* padding-left: 3%; */
  padding-bottom: 10px;
  padding-right: 3%;
}
@media (max-width: 1028px) {
  .features {
    margin-top: 45%;
    padding: 10%;
    text-align: center;
  }
  #h2 {
    font-weight: 600;
    color: white;
    margin-left: 5px;

    font-size: 2rem;
  }
  #h3 {
    font-weight: 400;
    color: #2c003e;
    font-size: 1.5rem;
  }
  .download-button {
    padding-right: 10px !important;
    padding-left: 10px !important;
    font-size: 14px !important;
  }
  .header_images {
    margin-top: 20px;
  }
  .header {
    height: 300px;
  }
}

.fadeInUp {
  animation-name: fadeInUp;
  animation-duration: 0.45s;
  animation-fill-mode: both;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
