/*--------------------------------------------------------------
    HERO SECTION
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 15vh;
    background:white;
    overflow: hidden;
    position: relative;
}
#hero .carousel, #hero .carousel-inner, #hero .carousel-item, #hero .carousel-item::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}
#hero .carousel-item {
    background-position: center;
    background-repeat: no-repeat;
}
#hero .carousel-item::before {
    content: "";
    background-color: rgba(30, 35, 40, 0.6);
}
#hero .carousel-container {
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 0;
    background:white;
    width: 100%;
    height: 15vh;
}
#hero .container {
    text-align: center;
    align-items: center;
    width: 100%;
    height: 15vh;
}
#hero h2 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 48px;
    font-weight: 700;
}
#hero p {
    margin: 0 auto 30px auto;
    animation-delay: 0.4s;
    -webkit-animation-delay: 0.4s;
    -moz-animation-delay: 0.4s;
    -o-animation-delay: 0.4s;
    color: #fff;
}
#hero .carousel-inner .carousel-item {
    transition-property: opacity;
    background-position: center top;
}
#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
    opacity: 0;
}
#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
    opacity: 1;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}
#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
    left: 0;
    transform: translate(0, 0, 0);
    -webkit-transform: translate(0, 0, 0);
    -moz-transform: translate(0, 0, 0);
    -ms-transform: translate(0, 0, 0);
    -o-transform: translate(0, 0, 0);
}
#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
    background: none;
    font-size: 30px;
    line-height: 0;
    width: auto;
    height: auto;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    color: rgba(255, 255, 255, 0.5);
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#hero .carousel-control-next-icon:hover, #hero .carousel-control-prev-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
}
#hero .carousel-indicators li {
    cursor: pointer;
    background: #fff;
    overflow: hidden;
    border: 0;
    width: 12px;
    height: 12px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    opacity: 0.6;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}
#hero .carousel-indicators li.active {
    opacity: 1;
    background: rgba(255, 95, 0);
}
#hero .btn-get-started {
    font-family: 'Comfortaa';
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 8px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    transition: 0.5;
    -webkit-transition: 0.5;
    -moz-transition: 0.5;
    -ms-transition: 0.5;
    -o-transition: 0.5;
    line-height: 1;
    color: #fff;
    animation-delay: 0.8s;
    -webkit-animation-delay: 0.8s;
    -moz-animation-delay: 0.8s;
    -o-animation-delay: 0.8s;
    background: rgba(255, 95, 0); /*COLOR BOTON*/
}
#hero .btn-get-started:hover {
    background: #EB7833;
}
@media (max-width: 992px) {
    #hero {
        
        height: 15vh;
        background:white;
        overflow: hidden;
        position: relative;
    }
    #hero .carousel-container {
        display: flex;
        align-items: center;
        position: absolute;
        bottom: 0;
        background:white;
        width: 100%;
        height: 15vh;
    }
}
@media (max-width: 768px) {
    #hero h2 {
        font-size: 28px;
    }
}
@media (min-width: 1024px) {
    #hero .carousel-control-prev, #hero .carousel-control-next {
        width: 5%;
    }
}
@media (max-height: 500px) {
    #hero {
        height: 50vh;
    }
}