.text-heroe {
  -webkit-box-shadow: -13px -5px 35px -3px rgba(79, 71, 79, 1);
  -moz-box-shadow: -13px -5px 35px -3px rgba(79, 71, 79, 1);
  box-shadow: -13px -5px 35px -3px rgba(79, 71, 79, 1);
}
.list-nav .nav-link:hover {
  color: gray !important;
}

.offcanvas-body,
.navbar-nav {
  background-color: #ed1c24;
}
/*Cards*/
.containerm {
  min-height: 100vh;
  overflow: hidden;
  width: 100%;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image {
  overflow: hidden;
  height: 300px;
  width: 300px;
  position: relative;
  cursor: pointer;
  box-shadow: 0 0 25px 1px rgba(0, 0, 0, 0.3);
  transition: 1s;
  background-color: #555;
}

.image::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  transform: translate(-140%, -50%);
  background-color: #ed1c24;
  opacity: 0.5;
  border-radius: 50%;
  transition: 1s;
}

.image:hover::before {
  transform: translate(-50%, -50%);
}

.image:hover img {
  transform: translate(-50%, -50%) scale(1.3) rotate(20deg);
}

.image img {
  position: absolute;
  height: 110%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.8s;
}

.image h6 {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-2000px, -50%);
  color: rgb(240, 240, 240);
  font-weight: bold;
  transition: 0.5s;
  transition-timing-function: ease-in;
}

.image:hover h6 {
  transform: translate(-50%, -50%);
  transition-timing-function: ease;
}
.slider-clientes {
  width: 75vw;
  height: auto;
  margin: auto;
  overflow: hidden;
}

.slider-clientes .slide-track {
  display: flex;
  animation: scroll 10s linear infinite;
  -webkit-animation: scroll 10s linear infinite;
  width: calc(200px * 8);
}

.slider-clientes .slide {
  width: 200px;
}

.slider-clientes .slide img {
  width: 100%;
}

@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-200px * 4));
    transform: translateX(calc(-200px * 4));
  }
}
@media only screen and (max-width: 992px) {
  .banner {
    height: auto;
  }
  .container-img-absolute img {
    display: none;
  }
}
@media only screen and (min-width: 992px) {
  .offcanvas-body {
    height: 5.2em;
  }
  #navbar-list::before {
    content: "";
    position: absolute;
    top: 0;
    left: -10px;
    padding: 0;
    margin: 0;
    border-top: 83.5px solid white;
    border-right: 50px solid #ed1c24;
  }

  .nav-item {
    display: flex;
    align-items: center;
    align-content: center;
  }

  .nav-item:hover {
    background-color: black;
  }

  .container-img {
    display: none;
  }

  .container-img-absolute {
    display: block;
    position: absolute;
    padding-top: auto;
    top: 6%;
    left: 98%;
    min-width: 450px;
    max-width: 500px;
  }
}

.btn-wsp {
  position: fixed;
  width: 60px;
  height: 60px;
  line-height: 63px;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 35px;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.3);
  z-index: 100;
  transition: all 300ms ease;
}
.btn-wsp:hover {
  background: #20ba5a;
}
@media only screen and (min-width: 320px) and (max-width: 768px) {
  .btn-wsp {
    width: 63px;
    height: 63px;
    line-height: 66px;
  }
}
