/*Slider*/
.home .carousel-item{
    min-height: 100vh;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.home .carousel-item::before{
    content:'';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /*background-image: linear-gradient(to top, rgb(255 246 233 / 0%), rgb(255 246 233 / 61%));*/
    z-index: -1;
}

.home .carousel-item .container{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}

.home .carousel-item .container h2{
    font-size: 50px;
    color:#131010;
    margin: 0 0 10px;
    opacity:0;
}

.home .carousel-item .container p{
    font-size: 15px;
    color:#131010;
    margin: 0;
    opacity:0;
}

.home .carousel-item.active h2{
    animation: fadeInLeft 0.5s ease forwards;
}
.home .carousel-item.active p{
    animation: fadeInRight 0.5s ease forwards;
}

@keyframes fadeInLeft{
    0%{
        opacity: 0;
        transform: translate(-30px);
    }
    100%{
        opacity: 1;
        transform: translate(0px);
    }
}
@keyframes fadeInRight{
    0%{
        opacity: 0;
        transform: translate(30px);
    }
    100%{
        opacity: 1;
        transform: translate(0px);
    }
}

#invitan_themeSection {
        /*background: url(../img/inv-digital/back_footer_cut.png) no-repeat center;*/
        /*background-attachment: fixed;*/
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
}
#invitan_themeContainer {
    background-color: #fff;
    margin-top:-10px;
}

.cardEvent_div{
    background-position: center; 
    background-size: cover; 
    position: relative;
    height:380px; 
    width:100%; 
    background-color:rgb(255, 255, 255);
    border: 0px solid blue; 
    border-radius: 15px;
}
.cardEvent_title{
    color:#fff; 
    width:100%; 
    height:45%; 
    background-image: linear-gradient(to bottom, rgba(255,0,0,0), rgba(0,0,0,1)); 
    border:0px solid blue; border-radius: 0px 0px 15px 15px; 
}


	/* Telefono Movil horizontal*/
	@media (max-width: 766px){
        .cardEvent_div{
            height:410px;
        }
        .home .carousel-item .container h2{
            font-size: 50px;
            color:#fff;
            margin: 0 0 10px;
            opacity:0;
        }
        
        .home .carousel-item .container p{
            font-size: 20px;
            color:#eee;
            margin: 0;
            opacity:0;
        }
    
	
	}
	/* TelÃ©fono Movil Vertical*/
	@media (max-width: 576px){	
		
	}
	/* movil horizontal*/
	@media (max-width: 768px) { 

	}
	/* Tablet vertical*/
	@media (max-width: 992px) { 
			
	}