  .carousel-indicators {
    bottom: 0 !important;
    top: 100%;
  }
  @media screen and (min-width: 768px) {
    .carousel-indicators {
      top: 90% !important;
    }
  }
  .carousel-control.right, .carousel-control.left {
    background-image: none;
    color: #f4511e;
  }
  .carousel-indicators li {
    border-color: #f4511e;
  }
  .carousel-indicators li.active {
    background-color: #f4511e;
  }
  .slideanim {visibility:hidden;}
  .slide {
    animation-name: slide;
    -webkit-animation-name: slide;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    visibility: visible;
  }
  .item h4 {
    font-size: 19px;
    line-height: 1.375em;
    font-weight: 400;
    font-style: italic;
    margin: 70px 0;
  }
  .item span {
    font-style: normal;
  }

@media (max-width: 480px) { 
  #myCarousel {
    display: none !important;
  }
  #myCarousel1 {
    display: block !important;
  }
}

/* Telefones em paisagem a tablet em retrato */
@media (max-width: 767px) {
  #myCarousel {
    display: none !important;
  }
  #myCarousel1 {
    display: block !important;
  }
}

/* Tablet em retrato a paisagem e desktop */
@media (min-width: 768px) and (max-width: 979px) {
  #myCarousel {
    display: block !important;
  }
  #myCarousel1 {
    display: none !important;
  }
}

/* Desktop grande */
@media (min-width: 1200px) {
  #myCarousel {
    display: block !important;
  }
  #myCarousel1 {
    display: none !important;
  }
}