
/* COLORS */

.text-yellow {
    --sparrow-text-opacity: 1;
    color: rgb(179, 164, 37) !important;
}

.text-grey {
    --sparrow-text-opacity: 1;
    color: rgb(71, 71, 71) !important;
}

.text-orange {
    --sparrow-text-opacity: 1;
    color: rgb(255, 115, 0) !important;
}

/* ---Mensaje de error--- */
.error {
    color: red;
}

/* ------ */

.loaderx {
    position: absolute;
    top: 50%;
    left: 50%;
    background-image: url(../img/logo/logo.svg);
    transform: translate(-50%, -50%);
    width: 350px;
    height: 93px;
    box-sizing: border-box;
    background-repeat-y: no-repeat;
    border: 3px solid #ffffff;
} 

/* PRELOADER */
.preloaderx{ 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(255, 255, 255);
    transition: 1s;
    z-index: 9999999;
}

.preloaderx:before{ 
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(255, 255, 255);
    transition: 1s;
} 
.preloaderx:after{
    content: '';
    position: absolute;
    right: 0;
    width: auto;
    height: 100%;
    background: rgb(255, 255, 255);
    transition: 1s;
} 
.preloaderx.complete{
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* SLIDER HEADER */
.text-container {
    position: absolute;
    /* background-color: red; */
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.fade-box {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.432);
    top: 0;
    left: 0;
    right: 0;
    bottom: 60px;
}

.bx-wrapper {
    -moz-box-shadow: 0 0 5px #ccc;
    -webkit-box-shadow: 0 0 5px #ccc;
    box-shadow: 0 0 5px #ccc;
    border: 0px solid #fff !important;
    background: #fff;
}

/* WHATSAPP */
.btn-whatsapp {
    display:block;
    width:70px;
    height:70px;
    color: #fff;
    position: fixed;
    right:20px;
    bottom:50px;
    border-radius:50%;
    line-height:80px;
    text-align:center;
    z-index:999;
}
.btn-whatsapp:hover {
    display:block;
    width:70px;
    height:70px;
    color: #fff;
    position: fixed;
    right:20px;
    bottom:45px;
    border-radius:50%;
    line-height:80px;
    text-align:center;
    transform: scale(0.95);
    z-index:999;    
} 

/* PARALLAX */
.parallax {
    /* The image used */
    background-image: url(../img/background/ambiente2.jpg);  
    /* Set a specific height */
    min-height: 200px;   
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.text-parallax{ 
    position: absolute;
    color: white;
    font-size: 30px;
    font-weight: bold;
}

.flexbox {
    align-items: center;
    display: flex;
    height: 100px;
    justify-content: center; 
}

.header-parallax {
    /* The image used */ 
    /* Set a specific height */
    min-height: 500px;   
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;        
}


/* ZOOM Effect */
.zoom-effec:hover{
    transform: scale(1.15, 1.15) !important;
    transition: all 0.4s ease-out;
}

/* RESPONSIVE Media query Responsive */

@media (max-width: 675px) { 
    .py-8 {
        padding-top: 0rem !important;
        padding-bottom: 30rem !important;
    }
}