:root{
--color: #333;
}

.container-parallax {
    text-align: center;
    color: var(--color);
    width: 99vw;
    min-height: 60vh;
    display: flex;

    padding-left: 0 !important;
    padding-right: 0 !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* background-image: url('../img/parallax.jpg'); */
    background: #000046, url('../img/parallax.jpg'); /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #000046, #1cb5e0), url('../img/parallax.jpg'); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, rgba(0, 0, 70, 0.3), rgba(28, 181, 224, 0.3)), url('../img/parallax.jpg');
    background-color: rgba(51, 51, 51, 0.26);
    background-size: cover;
    background-position: center;
    margin: 0;
    /*  this is where the magic happens:  */
    background-attachment: fixed;
}

/* h1 {
    font-weight: 700;
    font-size: 3rem;
} */

/* a {
    display: inline-block;
    padding: 1em 3.5em;
    background-color: var(--color);
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 0.3em;
    font-weight: 700;
    letter-spacing: .5px;
    font-size: .875rem;
} */

.blank,
.other {
    width: 100%;
    min-height: 60vh;
    background-color: var(--color);
}

