@keyframes aparecerDerecha {
    from {right: -200px; opacity: 0;}
    to {right: 0; opacity: 1;}
}

@keyframes aparecer {
    from {opacity: 0;}
    to {opacity: 1;}
}
@keyframes aparecerZoom {
    from {opacity: 0;transform:scale(0.1);}
    to {opacity: 1;transform:scale(1);}
}
.lightSlider {
    width: 100%;
	height:95vh;
   min-height: 600px;
    position: relative;
    overflow: hidden;
}

.lightSlider-equipo .lightSlider{
	height:100% !important;
}

.lightSlider .slide:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgb(0 0 0 / 20%);
}
.lightSlider-equipo .lightSlider  .slide:after{display:none !important;}
.lightSlider .slide {
    width: 100%;
    height: 100%;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    animation: aparecer 1s forwards;
    -webkit-animation: aparecer 1s forwards;
}


.lightSlider .slide > img {
    object-fit: cover;
    width: 100%!important;
    height: 100%!important;
}

.lightSlider .text-wrap {
	   
    position: absolute;
  max-width:100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    bottom: 0;
	left: 100px;
    right: 100px;
    opacity: 0;
    animation-delay: 2s;
    animation: aparecerZoom 1s forwards;
    -webkit-animation: aparecerZoom 1s forwards;
    z-index: 10;
}
.lightSlider .text-wrap>*{
	 max-width: 80% ;
	  color:white !important;
}
.lightSlider .video-wrap, 
.lightSlider .video-wrap .video iframe {
    width: 100%;
    height: 100%;
}

.lightSlider .video-wrap .video {
    height: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.lightSlider .video-wrap .video video {
    min-width: 100%;
    min-height: 100%;
    position: absolute;
}

.lightSlider .video-wrap .video iframe {
    position: absolute;
    left: 0;
    top: 0;
}

.lightSlider .arrow {
    display: block;
    position: absolute;
    width: 40px;
    height: 40px;
    top: 50%;
    margin-top: -20px;
    background: #ffffff;
    opacity: .7;
    z-index: 200;
    cursor: pointer;
    transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.lightSlider .arrow:before {
    font-family: mfn-icons;
    font-style: normal;
    font-weight: 400;
    display: block;
    position: absolute;
    width: 50%;
    height: 50%;
    top: 25%;
    left: 25%;
	display: flex;
    align-items: center;
    justify-content: center;
}

.lightSlider .arrow:hover {
    opacity: .9;
}

.lightSlider .arrow.arrowRight {
    right: 50px;
}

.lightSlider .arrow.arrowRight:before {
   content: "\e916";

}

.lightSlider .arrow.arrowLeft {
    left: 50px;
}

.lightSlider .arrow.arrowLeft:before {
    
	 content: "\e8b8";
}

.lightSlider .moreInfo {
    display: block;
    position: absolute;
    z-index: 200;
    bottom: 30px;
    left: 20px;
    text-transform: uppercase;
    transform-origin: 0 0;
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
}

.lightSlider .moreInfo > a {
    display: flex;
    align-items: center;
    color: white;
    line-height: 18px;
    font-size: 13px;
    letter-spacing: 5px;
}

.lightSlider .moreInfo > a:before {
    content: "";
    width: 18px;
    height: 18px;
    display: inline-block;
    margin-right: 10px;
    background: url(./moreInfo-arrow.svg) center center/contain no-repeat;
}

.lightSlider .point-nav {
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: 30px;
    z-index: 100;
}

.lightSlider .point-nav .point {
    width: 10px;
    height: 10px;
    background: white;
    display: inline-block;
    margin: 0 5px;
    opacity: .6;
    cursor: pointer;
    transition: all ease-in-out .3s;
    -webkit-transition: all ease-in-out .3s;
    -moz-transition: all ease-in-out .3s;
    -ms-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.lightSlider .point-nav .point.active,
.lightSlider .point-nav .point:hover {
    opacity: 1;
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

@media(max-width:991px){
	
.lightSlider .arrow.arrowRight {
    right: 20px;
}

.lightSlider .arrow.arrowLeft {
    left: 20px;
}
.lightSlider .text-wrap{
	 left: 50px;
    right: 50px;
}
}

@media(max-width:549px){
	
.lightSlider .arrow{display:none !important;}
	
.lightSlider .arrow.arrowRight {
    right: 10px;
}

.lightSlider .arrow.arrowLeft {
    left: 10px;
}
.lightSlider .text-wrap{
	 left: 20px;
    right: 20px;
}
}