/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/*eliminar estas lineas para volver al original*/
section {
    padding: 10px 0;
    overflow: hidden;
}

.features .nav-link h4 {
    font-size: 20px;
    font-weight: 100;
    margin: 0;
}

.features .nav-link:hover {
    color: #95730a;
}

.features .nav-link.active {
    background: #95730a;
    color: #fff;
    border-color: #95730a;
}

/* #hero {
    width: 100%;
    overflow: hidden;
    position: relative;
    background-image: url("../img/slider_horizontal/1.jpg") !important;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0;
} */
#hero {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #fff;
    padding: 0;
}

#hero p {
    width: 100%;
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
    margin: 0 auto 30px auto;
    color: #fff;
}

#hero .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    transition: 0.5s;
    line-height: 1;
    margin: 10px;
    color: #fff;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    border: 1px solid #ccc6c3;
}

#hero .btn-get-started:hover {
    background: #013f21;
    color: #fff;
    text-decoration: none;
}

#header .logo img {
    padding: 0;
    margin: 0;
    max-height: 130px;
}

/* VISTA PARA MOVIL */
@media (max-width: 767px) {

    #hero img {
        max-width: 200px;
    }

    /*  Se ocultan los parrafos y botones */
    #hero p {
        display: none;
    }

    .btn-get-started {
        display: none !important;
    }

    #hero h2 {
        text-align: center;
    }

    .centrar {
        text-align: center;
    }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 0;
}

#hero .carousel-container {
    background: #016836;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    position: relative;
    height: 85vh;
    /* padding-top: 60px; */
}

#hero h2 {
    color: #fff;
    font-size: 45px;
    font-weight: 700;
}

#hero p {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
    margin: 0 auto 30px auto;
    color: #fff;
    font-size: 20px;
}

#hero .carousel-control-prev,
#hero .carousel-control-next {
    width: 10%;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
    background: none;
    font-size: 48px;
    line-height: 1;
    width: auto;
    height: auto;
}

/*#hero .btn-get-started {*/
/*  font-family: "Raleway", sans-serif;*/
/*  font-weight: 500;*/
/*  font-size: 14px;*/
/*  letter-spacing: 1px;*/
/*  display: inline-block;*/
/*  padding: 12px 32px;*/
/*  border-radius: 50px;*/
/*  transition: 0.5s;*/
/*  line-height: 1;*/
/*  margin: 10px;*/
/*  color: #fff;*/
/*  -webkit-animation-delay: 0.8s;*/
/*  animation-delay: 0.8s;*/
/*  border: 2px solid #ef6603;*/
/*}*/

/*#hero .btn-get-started:hover {*/
/*  background: #ef6603;*/
/*  color: #fff;*/
/*  text-decoration: none;*/
/*}*/

/* VISTA DESKTOP */
@media (min-width: 1024px) {

    #hero .carousel-control-prev,
    #hero .carousel-control-next {
        width: 5%;
    }
}

@media (min-width: 992px) and (max-width:1200px) {
   #hero h2 {
        font-size: 30px;
        margin-bottom: 0;
    }
}

@media (min-width: 1201px) and (max-width:1600px) {
   #hero h2 {
        font-size: 35px;
        margin-bottom: 0;
    }
}

/* VISTA MOVIL */
@media (max-width: 768px) {
    #hero .carousel-container {
        height: 80vh;
    }
    #hero .carousel-container.main {
        justify-content: end;
    }
    #hero h2 {
        font-size: 28px;
        margin-bottom: 0;
    }
}

/* BOTTOM WAVES */
.hero-waves {
    display: block;
    width: 100%;
    height: 60px;
    position: relative;
    margin-top: -100px;
    z-index: 9;
}

.wave1 use {
    -webkit-animation: move-forever1 10s linear infinite;
    animation: move-forever1 10s linear infinite;
    -webkit-animation-delay: -2s;
    animation-delay: -2s;
}

.wave2 use {
    -webkit-animation: move-forever2 8s linear infinite;
    animation: move-forever2 8s linear infinite;
    -webkit-animation-delay: -2s;
    animation-delay: -2s;
}

.wave3 use {
    -webkit-animation: move-forever3 6s linear infinite;
    animation: move-forever3 6s linear infinite;
    -webkit-animation-delay: -2s;
    animation-delay: -2s;
}

@-webkit-keyframes move-forever1 {
    0% {
        transform: translate(85px, 0%);
    }

    100% {
        transform: translate(-90px, 0%);
    }
}

@keyframes move-forever1 {
    0% {
        transform: translate(85px, 0%);
    }

    100% {
        transform: translate(-90px, 0%);
    }
}

@-webkit-keyframes move-forever2 {
    0% {
        transform: translate(-90px, 0%);
    }

    100% {
        transform: translate(85px, 0%);
    }
}

@keyframes move-forever2 {
    0% {
        transform: translate(-90px, 0%);
    }

    100% {
        transform: translate(85px, 0%);
    }
}

@-webkit-keyframes move-forever3 {
    0% {
        transform: translate(-90px, 0%);
    }

    100% {
        transform: translate(85px, 0%);
    }
}

@keyframes move-forever3 {
    0% {
        transform: translate(-90px, 0%);
    }

    100% {
        transform: translate(85px, 0%);
    }
}

/*--------------------------------------------------------------
# Banners Interiores Section
--------------------------------------------------------------*/
#hero .interior {
    max-height: 300px;
}

#hero .interior .carousel-container {
    padding-top: 0;
    max-height: 200px;
}

@media (max-width:991px) {
    #hero .interior .carousel-container {
        max-height: 200px;
        margin-top: 80px;
    }
    #hero .interior {
        max-height: 100%;
    }
    #hero .interior h2 {
        margin-bottom: 0;
        font-size: 40px;
    }
}
@media (min-width:992px) {
   #hero .interior .carousel-container {
    justify-content: end;
}
}