/*	Parallax Background
	==================================================*/

#parallax {
    background: url(../images/covers/about-cover.jpg) center center no-repeat;
    background: url(../images/covers/about-cover_qxbeyq.webp) center center no-repeat;
    background-size: cover;
    background-position: center 76px;
    height: calc(100vh - 180px );
}
    
@media screen and ( max-width: 991px ) {
    #parallax {
        height: calc( 100vh - 55px);
        margin-top: 55px;
        background-position: center 0;
    }
}

/*	Intro
    ==================================================*/
#intro {
    height: calc(100vh - 180px );
}
    
#intro .message .heading {
    color: #ffffff;
}

#intro .message .lead {
    /* text-shadow: 0px 0px 4px white; */
    color: #e6e6e6;
}

#intro .message .desc {
    color: rgb(var(--evinta-secondary));
    text-shadow: 0px 0px 4px white;
}

/*	Content
    ==================================================*/

#content {
    background-color: #ffffff;
}

#content .section-title {
    text-align: center;
    margin-top: 50px;
}

#content img {
    margin-bottom: 50px;
}

#content > div {
    padding-bottom: 50px;
}


