
#hero{
    padding: 10px;    
    background: url(../IMG/BACKGROUNDS/hero1.jpg) no-repeat center center/cover, black;
    position: relative;
    /* min-height: 90vh; */
    display: flex;
    justify-content: flex-start;
    align-items: center;
    box-shadow: 0 4px 18px 7px rgb(40 40 40 / 68%);
}

    /* dark overlay on top of hero */
        #hero::after{
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgb(0 0 0 / 70%);
            z-index: 0;
        }

    #inner_hero_wrap{
        margin: 220px 0 150px 0;
        z-index: 1;
        max-width: 700px;
    }

        #hero_text_wrap{
            padding: 10px;
        }
            .hero_p_top{
                color: white;
                font-size: 1.3rem;
            }

            .hero_h1{
                color: var(--primary-color);
                font-family: var(--secondary-font);
                font-size: 3rem;
            }

            .hero_ul{
                margin-bottom: 4em;
            }

                .hero_ul li{
                    color: white;
                    font-size: 1.3rem;
                    display: flex;
                    flex-wrap: wrap;
                    align-items: center;
                    margin-left: 20px;
                }
                    .checkMark_wrap{
                        display: flex;
                        width: 25px;
                        height: 25px;
                        background: var(--primary-color);
                        border-radius: 100%;
                        align-items: center;
                        justify-content: center;
                        margin-right: 5px;

                    }
                        .checkMark {
                            width: 15px;
                            height: 15px;
                            display: block;
                            color: white;
                        }







/* media queries for header */
@media only screen and (min-width:560px){
    #hero .hero_btn_wrap{
        text-align: left;
    }
}
@media only screen and (min-width:768px){

    #hero {
        background: url(../IMG/BACKGROUNDS/hero1.jpg) no-repeat center center/cover, black;
        background-attachment: fixed;
        -webkit-background-attachment: fixed; /* For Safari 4.0 - 8.0 */
        -moz-background-attachment: fixed; /* For Firefox */
        -o-background-attachment: fixed; /* For Opera */
        -ms-background-attachment: fixed; /* For Internet Explorer */        
    }  

    #inner_hero_wrap{
        margin: 240px 0 150px 15%;
        max-width: 700px;
    }
        #hero_text_wrap{
            padding: 10px;
        }
            .hero_p_top{
                color: white;
                font-size: 1.5rem;
            }

            .hero_h1{
                color: var(--light-grey);
                font-family: var(--secondary-font);
                font-size: 3.5rem;
            }

            .hero_ul{
                margin-bottom: 4em;
            }

                .hero_ul li{
                    color: white;
                    font-size: 1.5rem;
                    display: flex;
                    flex-wrap: wrap;
                    align-items: center;
                    margin-left: 20px;
                }
                    .checkMark_wrap{
                        display: flex;
                        width: 25px;
                        height: 25px;
                        background: var(--primary-color);
                        border-radius: 100%;
                        align-items: center;
                        justify-content: center;
                        margin-right: 5px;

                    }
                        .checkMark {
                            width: 15px;
                            height: 15px;
                            display: block;
                            color: white;
                        }
    
}