#mixedSlider {
  position: relative;
}

#mixedSlider .MS-content {
  white-space: nowrap;
  overflow: hidden;
  margin: 0;
}

/* DESKTOP = 3 ITENS */

#mixedSlider .MS-content .item {
  display: inline-block;
  width: 33.3333%;
  position: relative;
  vertical-align: top;
  overflow: hidden;
  white-space: normal;
  padding: 0 10px;
}





/* IMAGEM */

#mixedSlider .MS-content .item .imgTitle {
  overflow: hidden;
  position: relative;
}

#mixedSlider .MS-content .item .imgTitle img {
  width: 100%;
  transition: all 0.5s;
  display: block;
}

/* LINKS */

#mixedSlider .MS-content .item a {
  font-size: 16px;
  font-style: italic;
  color: rgba(173, 0, 0, 0.82);
  font-weight: bold;
  letter-spacing: 1px;
  transition: linear 0.1s;
  text-decoration: none;
}

#mixedSlider .MS-content .item a:hover {
  text-shadow: 0 0 1px grey;
}

/* SETAS */

#mixedSlider .MS-controls button {
  position: absolute;
  border: none;
  background-color: transparent;
  outline: 0;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(0, 0, 0, 0.4);
  transition: 0.15s linear;
  z-index: 10;
}

#mixedSlider .MS-controls button:hover {
  color: rgba(0, 0, 0, 0.8);
}

/* SETA ESQUERDA */

#mixedSlider .MS-controls .MS-left {
  left: -70px;
}

.MS-controls img{width: 35px;}

/* SETA DIREITA */

#mixedSlider .MS-controls .MS-right {
  right: -70px;
}

/* MOBILE */

/* MOBILE */

@media (max-width: 990px) {
    #mixedSlider .MS-content .item {
    width: calc(100% - 5px);
    padding: 0;
    display: block;
  }

}

@media (max-width: 767px) {

  /* desativa efeito carrossel */
  #mixedSlider .MS-content {
    white-space: normal;
    overflow: visible;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  /* 2 itens por linha */
  #mixedSlider .MS-content .item {
    width: calc(100% - 5px);
    padding: 0;
    display: block;
  }

  /* remove setas no mobile */
  #mixedSlider .MS-controls {
    display: none;
  }

  #mixedSlider .MS-content .item .imgTitle {
    text-align: center;
  }

}