/*Carousel*/
.carousel{
    position: relative;
    
}

.carousel-item{
    display: flex;
    background-color: black;
}


.carousel-inner img{
    height: calc(100vh - 76px);
    width: 100%;
    opacity: 0.5;
}



/*Card Frase*/
.carousel__card{
    display: flex;
    flex-wrap: wrap;
    position: absolute;
    top: 20%;
}

.carousel__card-text{
    font-weight:900;
    color: white;
}

.carousel__card-btn{
    display: flex;
    height: 50px;
    text-decoration: none;
    color: white;
    border: 1px solid white;
    font-weight: 700;
    justify-content: center;
    align-items: center;
}

.carousel__card-btn:hover{
    text-decoration: none;
    color: white;
}


@media screen and (min-width: 0) {
    .carousel__card{
        width: 20%;
        padding: 10px 10px;
        left: 40%;
        justify-content: center;
        align-content: center;
        
    }
    .carousel__card-text{
        font-size: 2rem;
    }

    .carousel__card-btn{
        width:100%;
        border-radius: 5px;
        font-size: 0.7rem;
    }
    
}

@media screen and (min-width: 768px) {
    .carousel__card{
        width: 32%;
        padding: 10px 20px;
        left: 15%;
        justify-content: center;
        align-content:start;
    }
    .carousel__card-text{
        font-size: 4.5rem;
    }
    .carousel__card-btn{
        width:98%;
        border-radius: 10px;
        font-size: 1.05rem;
    }
    
}