#blogPostMain {
    padding-top: 25vh;
    /* background-image: url("./assets/blogcolor.jpg");
    background-size: 100%;
    background-attachment: fixed; */
    min-height: 100vh;
    position: relative;
    z-index: 100;
    transition: ease;
}

ul li::marker {
    color: var(--redcolor)
}

#videoFrame {
    filter: grayscale(0%)brightness(55%);
    /* transform: skew(-18deg)translateX(-12rem);
    box-shadow: inset 4px 4px 64px 4px var(--redcolor); */

}

.translateDown {
    transform: translateY(50vh)!important;
}


.blogContactRow h2 {
    color: var(--redcolor);
    font-family: 'Univia';
    margin-bottom: 6rem;
    font-size: 3rem;
}

#blogPostTopBack {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 0;
    inset: 0;
    z-index: 0;
    transition: ease;

}

#blogPostBottomBack {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 192;
    inset: 0;
    z-index: 200;
    pointer-events: none;
    transition: ease;

}

#blogPostBackBottom {
    position: relative;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    filter: drop-shadow(2px 2px 64px black)
}

#blogPostBackTop {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}



.blogPostWrap {
    width: 66%;
}

#blogPostMainTitle {
    color: white;
    font-family: 'Univia';
    font-size: 4.5rem;
    line-height: 4.5rem;
}

#blogPostSubTitle {
    color: var(--redcolor);
    font-family: 'Univia';
    font-size: 2.5rem;
    line-height: 2.5rem;
}

#blogPostTeaser {
    color: white;
    font-family: 'UniviaRegular';
    font-size: 1.25rem;
    padding-top: 1rem;
    margin-bottom: 12rem;
}



.blogPostElement {
    margin-bottom: 8rem;
    padding: 1rem;
    border-radius: 0.5rem;
}

.blogPostElementShadow {
    box-shadow: -32px 2px 96px 4px #622010;
}



#blogPostMain h3 {
    color: var(--redcolor);
    font-family: 'Univia';
    font-size: 1.75rem;
    line-height: 1.75rem;
}

.blogPostText {
    color: white;
    font-family: 'UniviaRegular';
    font-size: 1.25rem;
}

.blogPostList {
    margin-left: -1rem;
}

.blogPostText span {
    color: var(--redcolor);
    font-size: 1.25rem;
    font-family: 'Univia';
}

.descriptionBorder {
    border-left: solid 12px var(--redcolor);
    padding-left: 1rem;
}



@media screen and (max-width: 1280px) {
    .blogPostWrap {
        width: 80%;
    }
}

@media screen and (max-width: 992px) {
    .blogPostWrap {
        width: 100%;
    }

    #blogPostTopBack,
    #blogPostBottomBack {
        transform: translateY(4rem)
    }
    #blogPostMainTitle {
    color: white;
    font-family: 'Univia';
    font-size: 3.5rem;
    line-height: 3.5rem;
}
.blogPostElement {
    padding: 0;
}
.blogPostElementShadow {
    transform: translateX(-0.5rem);
    padding: 0.5rem;
}


}