/* =========================================================
   SEITENTITEL-BEREICH
   ========================================================= */

.page-top {
    position: relative;

    width: 100%;
    height: 300px;
    min-height: 300px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    margin: 0;
}


/* =========================================================
   MILCHIGER SCHLEIER
   ========================================================= */

.page-top::before {
    content: "";

    position: absolute;

    top: -20px;
    left: 0;

    width: 100%;
    height: calc(100% + 20px);

    margin: 0;
    padding: 0;

    background: rgba(255, 255, 255, 0.5);

    z-index: 1;

    pointer-events: none;
}


/* =========================================================
   INNERER CONTAINER
   ========================================================= */

.page-top .container {
    height: 100%;
    position: relative;
    z-index: 2;
}


/* =========================================================
   ZEILE
   ========================================================= */

.page-top .row {
    height: 100%;
}


/* =========================================================
   TITEL-BEREICH
   ========================================================= */

.page-top .col-md-12 {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================================================
   SEITENTITEL
   ========================================================= */

.page-top h2 {
    position: relative;

    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;

    text-align: center;

    color: #ffffff;

    font-family: "Open Sans", sans-serif;
    font-size: 42px;
    line-height: 70px;
    font-weight: 400;

    text-decoration: none;
    border: none;
    border-bottom: none;

    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}