.hero {
  margin-top: 0;
  background-image: url("/build/assets/driver-comm-D0Xby2Fm.avif");
  background-size: cover;
  background-position: top;
  position: relative;
  padding-bottom: 50px;
  min-height: calc(100vh - 185px);
  max-width: none;
  background-repeat: no-repeat;
  display: flex;
  /*-align-items: center;-*/
}
.hero .bkg {
  background-color: rgba(0, 0, 0, 0.623);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero .container-fluid {
  padding-left: 5%;
  padding-right: 5%;
}
.hero .container-fluid .content .subtitle-2 {
  margin-top: 50px;
}
.hero .container-fluid .content .banner {
  min-height: 250px;
}

@keyframes kenburns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
.tres-icons {
  margin-top: 100px;
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.tres-icons .rotating-images-city {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}
.tres-icons .rotating-images-city img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 1;
  transform: scale(1);
}
.tres-icons .rotating-images-city img.active {
  opacity: 1;
  z-index: 2;
  animation: kenburns 6s ease-in-out forwards;
}
.tres-icons .bkg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.397);
  z-index: 3;
}
.tres-icons .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  color: white;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
}
.tres-icons .container .items {
  font-size: 2rem;
  font-weight: 400;
}
@media (max-width: 768px) {
  .tres-icons .container .items {
    font-size: 1.2rem;
  }
}