body {
    color: #585858;
}

header {
    padding: 15px 0 10px;
}

.mt-5 {
    margin-top: 5rem;
}

.logo {
    max-width: 300px;
    float: left;
}

.logo img {
    width: 100%;
}

.logo-subline {
    float: left;
    color: #95989A;
    margin-left: 0;
    margin-top: 0;
}

@media (min-width: 550px) {
    .logo-subline {
        margin-left: 30px;
        margin-top: 12px;
    }
}

.hero {
    min-height: 400px;
    background-image: url(../img/Mann-mit-intelligentem-Telefon-Smartphone-Assurant-Versicherung-Schutzbrief.jpg);
    background-size: cover;
    background-position: center;
}

h1 {
    margin-top: 100px;
    color: #fff;
    font-weight: 600;
    line-height: 1.4em;
    letter-spacing: 0.05em;
    text-align: center;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

@media (min-width: 550px) {
    .hero {
        min-height: 600px;
    }
    h1 {
        margin-top: 300px;
    }
}

h2 {
    font-size: 2.5rem;
    font-weight: 500;
    letter-spacing: .5px;
}

ul {
    list-style-position: outside;
    font-size: 1.75rem;
}

@media (min-width: 550px) {
    ul {
        list-style-position: inside;
    }
}

p {
    font-size: 1.75rem;
}

section {
    padding: 50px 0;
    position: relative;
    text-align: left;
}

@media (min-width: 550px) {
    section {
        text-align: center;
        padding: 100px 0;
    }
}

section.shadow {
    -webkit-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.16);
    z-index: 1;
}

section.white {
    background-color: #fff;
}

section.grey {
    background-color: #ededeb;
}

section.orange {
    color: #fff;
    background-color: #004f91;
}

.bg-primary {
    background-color: #004f91;
}

.bg-light {
    background-color: #eeeeee;
}

.four.columns {
    width: 30.6666666667%;
    margin-left: 4%;
}

.four.columns:first-child {
    margin-left: 0;
}

.icon {
    width: 100%;
    text-align: center;
}

.icon img {
    height: 60px;
}

.icon p {
    margin-top: 15px;
    margin-bottom: 50px;
}

@media (min-width: 550px) {
    .icon img {
        height: 100px;
    }
}

.center {
    text-align: center;
}

button,
.btn {
    height: 44px;
    border-radius: 100px;
    padding: 0 50px;
    font-size: 1em;
    width: auto;
}

@media (min-width: 550px) {
    button,
    .btn {
        width: auto;
    }
}

.btn-secondary {
    border-color: #fece43;
    background-color: #fece43;
    color: #004f91;
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding-top: 9px;
    font-size: 2rem;
}

.btn-secondary:hover {
    color: #004f91;
}

.btn-text {
    display: block;
    padding-bottom: 10px;
    color: #004f91;
    display: flex;
}

.white button {
    color: #fff;
    border-color: #fece43;
    background-color: #fece43;
}

.white button:hover {
    color: #fece43;
    background-color: #fff;
}

.orange button {
    color: #fece43;
    border-color: #fff;
    background-color: #fff;
}

.orange button:hover {
    color: #fff;
    background-color: #fece43;
}


/* Price */

.d-flex.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.price__wrapper {
    width: 100%;
    display: inline-block;
    position: relative;
    margin-top: 50px;
    max-width: 180px;
}

.price__wrapper:after {
    padding-top: 100%;
    display: block;
    content: '';
}

.price__item {
    background-color: white;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    color: #004f91;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 10px solid #fece43;
    cursor: pointer;
    transition: background-color 0.5s ease;
}

a.price__item {
    text-decoration: none;
}

.price__item:hover {
    color: white;
    background-color: #fece43;
}

.price__item span.small {
    font-size: 1.5rem;
    font-weight: 300;
    clear: both;
    line-height: 1.5rem;
    color: #585858;
}

.price__item span.large {
    font-size: 3rem;
    font-weight: 600;
    clear: both;
}

@media (max-width: 980px) and (min-width: 550px) {
    .price__item span.small {
        font-size: 1.2rem;
    }
    .price__item span.large {
        font-size: 1.5rem;
    }
}


/* Impressum */

.impressum * {
    text-align: left !important;
}

.impressum h1 {
    margin: 0;
    font-size: 3rem;
    font-weight: 300;
    text-shadow: none;
    color: #5f5f5f;
    margin-bottom: 2rem;
}

footer {
    background-color: #585858;
    padding: 20px 0;
    text-align: center;
    color: #fff;
}

footer a {
    color: #fff;
    padding: 0 20px;
}


/* Grid */

.bf-flex-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.bf-flex-grid>div {
    flex: 1;
    min-width: 150px;
}