body {
  font-family: Roboto, sans-serif;
}

#landing p {
  text-shadow: 1px 1px 2px black;
}

.nav-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

nav {
  max-width: 900px;
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  margin-bottom: 50px;
  transition: all .5s ease-in-out;
}

nav.fixed {
  position: fixed;
  top: 0;
  bottom: unset;
}

nav a {
  text-align: center;
  flex-grow: 1;
  color: #fff;
  text-shadow: 1px 1px 2px black;
  text-decoration: none;
  font-weight: 700;
  padding: 30px 0;
  transition: all .5s ease-in-out;
}

nav.fixed a {
  background: #000;
}

#landing,
#about,
#demo,
#contact {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 22px;
  padding: 48px 0;
}

#landing,
#about,
#contact {
  height: 100vh;
  text-align: center;
}

#landing {
  color: #fff;
  background: url("../img/background.jpg") no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

#about {
  background: #ff6c00;
  color: #fff;
}

#about p {
  width: 80%;
  max-width: 900px;
  margin: 22px auto;
}

.email {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
}

.email:hover {
  text-decoration: underline;
}

#contact {
  background: #000;
  color: #fff;
}

#contact p {
  margin-bottom: 50px;
}

.gmap_canvas {
  width: 90%;
  max-width: 900px;
  height: 50vh;
}

#demo {
  justify-content: space-evenly;
  max-width: 1070px;
  margin: auto;
}

.demo-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.demo-wrapper svg {
  margin: auto;
  height: 50%;
  width: 50%;
}

.images {
  margin: auto;
  width: 80%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.counter {
  margin: auto;
  width: 40%;
  display: flex;
  text-align: center;
  flex-direction: column;
  justify-content: center;
}

#human-inside,
#human-inside-stationary {
  transform: translate(60px, -38px) scale(1);
}

#human-inside.move {
  transition: .3s transform ease-in-out;
  transform: translate(0);
}

#human-outside.move {
  transition: .3s transform ease-in-out;
  transform: translate(60px, -38px);
}

#human-outside-stationary,
#human-inside-stationary {
  transition: .3s transform ease-in-out;
  transform-origin: 5px 100px 0;
}

#human-outside-stationary.hide {
  transition: unset;
  transform: scale(0);
}

#human-inside-stationary.hide {
  transition: unset;
  transform: translate(60px, -38px) scale(0);
}

.counter-number {
  font-size: 75px;
}

.logo img {
  width: 60%;
  max-width: 250px;
}

.team-images {
  display: flex;
  margin: auto;
  gap: 50px;
  flex-wrap: wrap;
  justify-content: center;
}

.concept-images img {
  width: 400px;
  object-fit: cover;
}

.team-images img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 4px solid #fff;
}

.button {
  background-color: #ff6c00;
  color: #fff;
  border-radius: 24px;
  padding: 10px 20px;
  text-decoration: none;
  margin: auto;
  display: block;
  width: fit-content;
}

@media (max-width: 1070px) {
  #demo {
    max-width: none;
    width: auto;
    margin: 0 24px;
  }
}
 
@media only screen and (max-width: 567px) {
  .demo-wrapper {
    flex-direction: column;
  }

  .demo-wrapper svg {
    width: 75%;
  }

  .concept-images div {
    width: 100%;
   }
}

@media (max-width: 500px) {
  .nav-container {
    display: none;
  }
  #landing, #about, #contact {
    height: auto;
  }

  .concept-images img {
    width: 100%;
  }
}
