/* blog page header section */

.blog-page-header-section{
    background-size: cover;
    background-position: center top;
    height: 100vh;
    position: relative;
}

.blog-page-header-section-container{
    position: absolute;
    bottom: 4em;
    left: 6em;
    width: 24.375em;
    border-bottom: 1px solid #fff;
    padding-bottom: 0.75em;
    z-index: 10;
}

.blog-page-header-section-container h1{
    font-size: 2.5rem;
    color: #fff;
    font-weight: 500;
}

.blog-page-header-section-shadow-bottom{
    position: absolute;
    width: 100%;
    height: 28em;
    bottom: 0px;
    left: 0px;
    background: linear-gradient(to bottom, rgba(255, 0, 0, 0), rgba(0, 0, 0, 0.86));
    z-index: 5;
}

@media only screen and (max-width: 850px){
    .blog-page-header-section{
        height: 100vh;
        padding: 20px;
        align-content: end;
    }

    .blog-page-header-section-container{
        left: 0px;
        width: 100%;
        position: relative;
        padding-bottom: 15px;
        bottom: 40px;
    }

    .blog-page-header-section-container h1{
        font-size: 28px;
    }
}

/* blog page content section */

.blog-page-content-section{
    padding: 3em 6em;
}

.blog-page-content-section h2{
    font-weight: 400;
    font-size: 2rem;
    text-transform: uppercase;
    color: #c1272d;
    margin-bottom: 1em;
}

@media only screen and (max-width: 850px){
    .blog-page-content-section{
        padding: 20px 20px;
    }

    .blog-page-content-section h2{
        font-size: 22px;
        margin-top: 15px;
    }
}