.section-pro{
    position:relative;
    min-height:80vh;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    padding:120px 8%;

    background-image:url("https://images.unsplash.com/photo-1464226184884-fa280b87c399?q=80&w=1200");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    /* KEY LINE (parallax effect) */
    background-attachment:fixed;
    
}

/* DARK OVERLAY */
.section-pro::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.);
    border: white none;
}

/* TEXT STAYS ON TOP AND SCROLLS */
.pro-row{
    position:relative;
    z-index:2;
    max-width:900px;
    color: blue;
    
}

/* TEXT STYLING */
.section-pro h2{
    color:yellow;
    font-size:3.8rem;
    margin-bottom:25px;
    text-align: center;
    border-right: solid 5px white;
    padding-right: 10px;
    border-radius: 15px;
    filter: brightness(100%);
}

/*OPACITY*/



.pro-text p{
    color: yellow;
    font-family: Arial, Helvetica, sans-serifS;
    font-size: 20px;
    font-size:1.2rem;
    line-height:1.9;
    text-align: left;
    padding-left: 10%;
    
}