@keyframes aparecerDerecha {
    from {right: -200px; opacity: 0;}
    to {right: 0; opacity: 1;}
}

@keyframes aparecer {
    from {opacity: 0}
    to {opacity: 1}
}

.lightSlider {
    width: 100%;
    height: 650px;
    position: relative;
    overflow: hidden;
}

.lightSlider:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

.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;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    bottom: 0;
    right: -200px;
    opacity: 0;
    animation-delay: 2s;
    animation: aparecerDerecha 2s forwards;
    -webkit-animation: aparecerDerecha 2s forwards;
    z-index: 10;
}

.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: black;
    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: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.lightSlider .arrow:before {
    content: "";
    display: block;
    position: absolute;
    width: 50%;
    height: 50%;
    top: 25%;
    left: 25%;
}

.lightSlider .arrow:hover {
    opacity: .9;
}

.lightSlider .arrow.arrowRight {
    right: 50px;
}

.lightSlider .arrow.arrowRight:before {
    background: url(./right-arrow.svg) center center/contain no-repeat;

}

.lightSlider .arrow.arrowLeft {
    left: 50px;
}

.lightSlider .arrow.arrowLeft:before {
    background: url(./left-arrow.svg) center center/contain no-repeat;
}

.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: 15px;
    height: 15px;
    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);
}