﻿.basic-header-block {
    width: 100%;
    height: 40vh;
    min-height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    position: relative;
}
    .basic-header-block .image-overlay {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        background-color: black;
        opacity: 0.3;
        box-sizing: border-box;
        z-index: 5;
    }

    .basic-header-block .video-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        box-sizing: border-box;
    }

    .basic-header-block .content-container {
        width: auto;
        max-width: 1200px;
        padding: 20px 60px;
        height: auto;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
    }
    .block-background {
        background-color: rgba(0, 0, 0, 0.7);
    }
    .basic-header-block .content-container .content-text h1 {
        font: 600 40px Rubik; margin: 0px; text-align: center;
    }
.basic-header-block .content-container .content-text p {
    font: 400 20px Rubik;
    text-align: center;
    margin: 0px;
}

.basic-header-block .content-container .content-text {
    width: 100%;
    padding: 20px 0px 20px 0px;
    font: 600 60px Rubik;
    height: auto;
    margin: auto;
    position: relative;
    box-sizing: border-box;
    text-align: center;
}

        .basic-header-block .content-container .content-button {
            width: 100%;
            height: auto;
            margin: auto;
            display: inline-block;
            position: relative;
            box-sizing: border-box;
            text-align: center;
        }

            .basic-header-block .content-container .content-button .link-button {
                display: inline-block;
                position: relative;
                box-sizing: border-box;
                margin: auto;
                height: auto;
                width: auto;
                max-width: 250px;
                padding: 8px 16px;
                font: 600 26px Rubik;
                text-align: center;
                border-radius: 100px;
                line-height: 100%;
                letter-spacing: -1px;
                text-decoration: none;
            }

@media (max-width: 650px) {
    .basic-header-block .content-container .content-text {
        font-size: 30px;
    }

    .basic-header-block .content-container .content-button .link-button {
        font-size: 24px;
        padding: 12px 16px;
        max-width: 240px;
    }
    .basic-header-block .content-container .content-text h1 {
        font: 600 30px Rubik;
        margin: 0px;
        text-align: center;
    }

    .basic-header-block .content-container .content-text p {
        font: 400 20px Rubik;
        text-align: center;
        margin: 0px;
    }

}