/* 
 * 	Core Owl Carousel CSS File
 *	v1.3.3
 */

/* clearfix */
.owl-carousel .owl-wrapper:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
/* display none until init */
.owl-carousel{
	position: relative;
	width: 100%;
	-ms-touch-action: pan-y;
	opacity: 1 !important;
}
.owl-carousel .owl-wrapper{
	display: none;
	position: relative;
	-webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper-outer{
	overflow: hidden;
	position: relative;
	width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight{
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}
	
.owl-carousel .owl-item{
	float: left;
}

.owl-carousel .owl-item .item img{width: 100%;}

.owl-controls .owl-page,
.owl-controls .owl-buttons div{
	cursor: pointer;
}

.owl-pagination .owl-page{
	width: 1.14286rem;
	height: 1.14286rem;
	border-radius: 100%;
	display: block;
	
	margin-right: .57143rem;
	background-color: transparent;
	border: .14286rem solid #bfbfbf;

}
.owl-pagination .owl-page.active{background: #d50000;}
.owl-pagination{
	position: absolute;
	bottom:0;
	width: 80% !important;
	margin-left: 10%;
	margin-right: 10%;
	bottom: 10px;
	display: flex;
	display: -ms-flexbox;
	-ms-flex-pack: center;
	justify-content: center;
}



.owl-controls {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* mouse grab icon */
.grabbing { 
    cursor:url(grabbing.png) 8 8, move;
}

.owl-theme .owl-buttons .owl-prev, .owl-theme .owl-buttons .owl-next {
    display: block;
    color: #FFF;
    zoom: 1;
    padding: 3px 10px;
    font-size: 0;
    background-color: #000;
    background-position: center;
    background-repeat: no-repeat;
    filter: Alpha(Opacity=50);
    opacity: 0.5;
    position: absolute;
    height: 130px;
    width: 50px;
    overflow: hidden;
    top: 50%;
    margin-top: -70px;
    margin-left: 30px;
    margin-right: 30px;
}

.owl-theme .owl-buttons .owl-prev {
    left: 0 !important;
    margin-left: 0px !important;
    margin-right: 0px !important;
    background-image: url(../img/arrowleft.png);

}
.owl-theme .owl-buttons .owl-next {
    right: 0 !important;
    margin-left: 0px !important;
    margin-right: 0px !important;
    background-image: url(../img/arrowright.png);
}

/* fix */
.owl-carousel  .owl-wrapper,
.owl-carousel  .owl-item{
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility:    hidden;
	-ms-backface-visibility:     hidden;
  -webkit-transform: translate3d(0,0,0);
  -moz-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0);
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 36.25%; /* Relación de aspecto 16:9 */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover; /* Ajusta para cubrir si no es 16:9 */
}


