/****************************************************************************
 * Custom Quote Section
 ****************************************************************************/
 .custom_quote_section {min-height: 30rem;}

 .custom_quote_section blockquote {
    position: relative;
}

.custom_quote_section blockquote:after {
    position: absolute;
    content: '„';
    color: #006633;
    font-size: 13rem;
    line-height: 0;
    top:-6rem;
    left: -4rem;
    height: auto;
    width: auto;
    font-weight: 400;
    font-family: 'Ibarra Real Nova';
}
.custom_quote_section blockquote > * {
    position: relative;
    z-index: 30;
    font-weight: 600;
}


/****************************************************************************
 * Video BG Section
 ****************************************************************************/

 .video_bg_section { 
    height: 50vh;
    position:relative;
}
.video_bg_section:after {
    content:'';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #000000;
    opacity: 0.33;
}
.video_bg_section >* {
    position: relative;
    z-index: 30;
}

.video_bg_section.content_section .play_button {
    font-size: 0;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: #a10327;
    position: relative;
}

.video_bg_section.content_section .play_button:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    z-index: 20;
    left: 55%;
    top: 50%;
    border-top: 1rem solid transparent;
    border-bottom: 1rem solid transparent;
    border-left: 1.25rem solid #fff;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%)
}