/*
    resilen.cl
    carousel.css
*/
@charset "utf-8";

/* welcome-carousel*/
#welcome-carousel {
    
}

#welcome-carousel .carousel-over {
    position: absolute;
    display: block;
    width: 15%;
    height: 100vh;
    background-color: black;
    z-index: 99;
}

#welcome-carousel .item-image {

}

@media (min-width: 992px) {
    #welcome-carousel .item-image {
        
    }
}

#welcome-carousel .item-image img {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100vh;
    margin: 0;
}

@media (min-width: 992px) {
    #welcome-carousel .item-image img {
        height: 100vh;
    }
}

#welcome-carousel .carousel-control {
    width: 50px;
    height: 60px;
    top: 50%;
    margin-top: -30px;
    font-size: 40px;
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 40px;
}

#welcome-carousel .carousel-control:focus,
#welcome-carousel .carousel-control:hover {
    
}

#welcome-carousel .carousel-control.left,
#welcome-carousel .carousel-control.right {
    background-image: none;
    background-color: rgba(0, 0, 0, 0.8) !important;
}

#welcome-carousel .carousel-caption {
    font-weight: 800;
    padding: 15px 20px 15px 20px;
    z-index: 999;
    left: 5%;
    right: 5%;
}

@media (min-width: 992px) {
    #welcome-carousel .carousel-caption {
        position: absolute;
        padding: 15px 20px 15px 30px;
        width: 50%;
        left: 0;
        top: 30vh;
        bottom: 30vh;
        text-align: left;
    }
}

#welcome-carousel .carousel-caption .caption-title {
    display: block;
    text-shadow: none;
    color: white;
    font-size: 4.6rem;
    line-height: 1;
}

#welcome-carousel .carousel-caption .caption-subtitle {
    display: inline-block;
    text-shadow: none;
    color: white;
    font-weight: 500;
    font-size: 2.6rem;
    margin-bottom: 20px;
}

#welcome-carousel .carousel-caption .caption-subtitle::after {
    content: '';
    display: block;
    width: 110%;
    height: 15px;
    background-color: #d0000a;
    margin-top: -10px;
    margin-left: -5%;
    margin-right: -5%;
}

@media (min-width: 992px) {
    #welcome-carousel .carousel-caption .caption-title {
        font-size: 8.2rem;
    }
    
    #welcome-carousel .carousel-caption .caption-subtitle {
        font-size: 2.6rem;
        line-height: 0.7em;
    }
}

/* fade */
.carousel-fade .carousel-inner .item {
  -webkit-transition-property: opacity;
  transition-property: opacity;
}
.carousel-fade .carousel-inner .item,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  opacity: 0;
}
.carousel-fade .carousel-inner .active,
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}
.carousel-fade .carousel-inner .next,
.carousel-fade .carousel-inner .prev,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}