/*-- iphone fixed background position --*/

.bg-1 {
    background: url('/images/background-PIF-8.png');
    /*background: linear-gradient(to right, #ec7e3a78, #e1f5c4);*/
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 1000px;
    width: 100%;
    position: fixed;
    margin-top: 0px;
    /* z-index usage is up to you.. although there is no need of using it because the default stack context will work. */
    z-index: -10;
    }
    .content-bg-1{
    position: absolute;
    margin-top: 5rem;
    left: 50%; 
    transform: translateX(-50%);
    width: 80%;
    }
