:root {
    --brand-primary: #cc2527;
    --brand-primary-dark: #601112;
    --brand-primary-light: #ffbfc0;
}

a {
    color: var(--brand-primary);
}

a:hover {
    color: var(--brand-primary-dark);
}

.container-fluid {
    max-width: 1800px;
    margin: 0 auto;
}

.color-primary {
    color: var(--brand-primary);
}

.nav-headline {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    visibility: hidden;
    opacity: 0;
}

.default-btn {
    background-color: var(--brand-primary-light);
    border-color: var(--brand-primary);
}

.default-btn:hover {
    background-color: var(--brand-primary);
    color: #fff;
}

.hero {
    position: relative;
    height: 310px;
}

.hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.custom-ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.custom-ul .custom-li {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-ul .custom-li img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
}

.maedchenname {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

#contact-message {
    min-height: 120px;
    resize: vertical;
}

#totop {
    right: 8px;
    bottom: 8px;
    visibility: hidden;
    opacity: 0;
    transition: all .4s ease-in;
}

#totop.show {
    opacity: 1;
    visibility: visible;
}

#totop a {
    width: 32px;
    height: 32px;
    background-color: var(--brand-primary);
    color: #fff;
    font-size: 16px;
    line-height: 1;
    padding: 8px;
}

#totop a:hover {
    background-color: var(--brand-primary-dark);
}

@media screen and (min-width: 992px) {
    .nav-headline {
        visibility: visible;
        opacity: 1;
    }
}