.list-nav .nav-link:hover {
  color: gray !important;
}

.offcanvas-body,
.navbar-nav {
  background-color: #ed1c24;
}
.slider-clientes {
  width: 72vw;
  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 (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;
  }
}

.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;
  }
}
