.header_section{
    position: relative;
}

.header_colors{
    position: absolute;
    top: 0px;
    z-index: -1;
    background-image: url('../../images/header_colors.svg');
    background-repeat: no-repeat;
    background-size: cover; 
    background-position: bottom;
    width: 100%;
    height: 300px;
}

.header_colors_subpage{
    height: 100px;
}

.header_video {
    padding-top: 30px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header_logotype{
    position: absolute;
 
}

.header_video video{
    width: 100%;
    filter: brightness(0.7);
    border-radius: 16px;
}

.header_online{
    position: absolute;
    padding-top: 190px;
    padding-left: 140px;
    font-family: Consolas;
    color: white;
    transform: rotate(-10deg);
    font-size: 19px;
}

.header_online span{
    color: #FFCF24;
}

@media only screen and (max-width: 700px) {
    .header_logotype{
        width: 300px;
    }

    .header_video {
        padding: 0 2%;
        padding-top: 30px;
        align-items: flex-start;
    }
    
    .header_online{
        margin-top: -20px;
        padding-left: 0px;
    }

    .header_video video{
        width: 100%;
        margin-top: 250px;
        border-radius: 16px;
    }
    
}

@media only screen and (max-width: 990px) {
    .header_video {
        padding: 0 7%;
        padding-top: 30px;
    } 
}