.page-top {
    background-image: url('/assets/masthead-background.jpg');
    background-size: cover;
    background-position: center;
    height: calc(100vh - 65px);

    color: white;
}
/* Startbild für Mobilgeräte */
@media screen and (max-width: 540px){
    .page-top {
        /* Hintergrundbild abdunkeln */
        background-image: linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) ), url('/assets/masthead-background.jpg');
        /* Hintergrundbild in die Mitte verschieben. */
        background-position: 560px;
    }
}



/*
p {
    text-align: justify;
}
*/

.page-section {
    padding-top: 50px;
    padding-bottom: 50px;
}

.page-footer h5 {
    color: #007bff;
}


/*
.angebot-card:hover .angebot-card-overlay{
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);
    opacity: 1;
}*/
/*
.angebot-card {
    border: 0;
    border-radius: 0;
    box-shadow: 0 10px 20px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);
    height: 200px;
}
*/

/* Standardmäßig ist das Angebotskarten Overlay ausgeblendet. */
/*
.angebot-card-overlay {
    position: absolute;     
    opacity: 0;
    color: white;
    height: inherit;
    background-color: rgba(0, 139, 252, 1);
}*/

/* Beim hovern über einer Angebots Karte wird das Overlay eingeblendet... */
/*
.angebot-card:hover .angebot-card-overlay{
    opacity: 1;
    transition: opacity .7s;
}
*/
/* ... und der Schlagschatten verstärkt. */
/*
.angebot-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}
*/


/* Angebot Karten neu */
.angebot-card {
    text-align: center;
}
.angebot-card > i {
    font-size: 80px;
    padding-top: 15px;    
}
.angebot-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}





/* Listen im Footer */
.page-footer li {
    list-style-type: none;
}
.page-footer ul {
    padding-left: 0;
}

/* Links im Footer */
.page-footer a {
    text-decoration: none;
    color: inherit;
}
.page-footer a:hover{
    color:  rgba(0, 139, 252, 1);
}

/* Bilder im Footer */
.page-footer img {
    height: 30px;
}