#stream {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)), 
        url(/img/stream/home-2-movies-list-bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 15px;
}

.stream-titulo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 80%;
}

.stream-titulo h5 {
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 5px;
    color: #F86614;
    text-transform: uppercase;
    padding-top: 20px;
}

.stream-subtitulo {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
}

.stream-canais {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
}

/* stream breaking news */
.stream-breaking-news {
    display: flex;
    justify-content: space-around;
    margin-top: 5em;
    opacity: 90%;
    animation: fadeInRight 1s ease-in-out forwards;
}

.stream-breaking-news h1 {
    color: #fff; 
    margin-top: 0; 
    margin-bottom: 16px; 
    font-size: 54px; 
    font-weight: 700; 
    line-height: 66px;
}

.container-image-breaking-news {
    width: 40%;
}

/* .container-image-breaking-news img {
    height: 100%;
} */


/* stream esportes */
.stream-esportes {
    display: flex;
    justify-content: space-between;
    margin-top: 5em;
    opacity: 90%;
    animation: fadeInLeft 1s ease-in-out forwards;
}

.container-image-esporte {
    width: 30%;
}

.stream-esportes h1 {
    color: #fff; margin-top: 0;
    margin-bottom: 16px;
    font-size: 54px;
    font-weight: 700;
    line-height: 66px;
}


/* Carrocel filmes */
.stream-filmes {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /* background-color: #2f2f2f; */
    margin-top: 5em;
    opacity: 90%;
    justify-content: center;
}

.carousel {
    display: flex;
    overflow: hidden;
}

.item {
    margin-left: .5em;
    margin-right: .5em;
}

.item img {
    border-radius: 20px;
}
  
.slick-prev {
    left: 5px;
    z-index: 9999;
}

.slick-next {
    right: 35px;
}

.slick-prev:before, .slick-next:before {
    font-size: 50px;
}


@keyframes fadeInLeft {
    from {
      opacity: 0;
      transform: translateX(-100%);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
      opacity: 0;
      transform: translateX(100%);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
}

.stream-filme-titulo-carousel {
    color: #fff; 
    margin-top: 0; 
    margin-bottom: 16px; 
    font-size: 54px; 
    font-weight: 700; 
    line-height: 66px;
}

@media (max-width: 768px) {
    .stream-breaking-news {
        flex-wrap: wrap;
    }

    .stream-esportes {
        flex-wrap: wrap;
        height: 100%;
    }

    .container-image-breaking-news {
        width: 100%;
    }

    .container-image-esporte {
        width: 100%;
    }
}

@media (max-width: 500px) {
    .stream-titulo {
        justify-content: center;
    }

    .stream-breaking-news {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .stream-breaking-news h1 {
        font-size: 35px;
    }

    .stream-breaking-news h1, span {
        display: flex;
        flex-direction: column;
        /* align-items: center; */
    }

    .container-image-breaking-news img {
        width: 100%;
    }

    .stream-esportes {
        margin-top: 1em;
    }

    .stream-esportes h1, span {
        display: flex;
        flex-direction: column;
    }

    .stream-esportes h1 {
        font-size: 35px;
        margin-top: 10px;
    }

    .stream-filme-titulo-carousel {
        font-size: 40px;
    }
}