/*----- Media queries----- */
/*Small*/
@media (min-width: 576px) {}

/*Medium*/
@media (min-width: 768px) {}

/*Large*/
@media (min-width: 992px) {}

/*X-Large*/
@media (min-width: 1200px) {}

/*XX-Large*/
@media (min-width: 1400px) {}





/* DIVISOR PARALLAX AT THE HOME PAGE  */
.parallaxParent>* {
    height: 200%;
    width: 100%;
    position: relative;
    top: -100%;
}

.parallax-divisor .text-mask {
    position: absolute;
    height: 100px;
    width: 100%;
    z-index: 1;
    background-color: rgba(198, 143, 15, 0.8);

}

.parallaxParent {
    height: 100px;
    overflow: hidden;
}


@media (min-width: 576px) {
    .parallaxParent>* {
        height: 200%;
        width: 100%;
        position: relative;
        top: -100%;
    }

    .parallax-divisor .text-mask {
        position: absolute;
        height: 300px;
        width: 100%;
        z-index: 1;
        background-color: rgba(198, 143, 15, 0.8);

    }

    .parallaxParent {
        height: 300px;
        overflow: hidden;
    }

}

@media (min-width: 768px) {}

/* END DIVISOR PARALLAX AT THE HOME PAGE  */













/* REVEAL ON SCROLL */
.story1 {
    opacity: 0;
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
    transform: scale(0.9);
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -ms-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}

.story1.visible {
    opacity: 1;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}

/* Reveal on scroll */
.story2 {
    opacity: 0;
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
    transform: scale(0.9);
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -ms-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}

.story2.visible {
    opacity: 1;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}


/* Reveal on scroll */
.story3 {
    opacity: 0;
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
    transform: scale(0.9);
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -ms-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}

.story3.visible {
    opacity: 1;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}










/*TEXT OVER PARALLAX IMAGES*/


.parallax-image>* {
    height: 200px;
    width: 100%;
    position: relative;
    top: -100%;
}

.parallax-container .parallax-image {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;   
     overflow: hidden;
}

@media (min-width: 576px) {
    .parallax-image>* {
        height: 200%;
        width: 100%;
        position: relative;
        top: -100%;
    }
    .parallax-container .parallax-image {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        height: 900px;
        /* overflow: hidden; */
    }

}

@media (min-width: 768px) {}

/*END TEXT OVER PARALLAX IMAGES*/






































/*
PROCESS GOLD*/