.center-vertically {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.image {
    width: 100%;
    color: white;
}

.parallax {
    background-attachment: fixed;
    background-position: center; /* parallax will change this property to "center calc(50% + Xpx)" */
    background-repeat: no-repeat;
    background-size: cover;
}

.two-columns {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
}

.section {
    padding: 4.375rem 6.25rem;
}

.max-width {
    max-width: 62.5rem;
    margin: 0 auto;
}

.darker-background {
    position: relative;
    background-image: url('https://physioauer.at/wp-content/themes/hestia/assets/img/slider1.jpg');
    background-size: cover;
    background-position: center;
}

.darker-background::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
    pointer-events: none;
}

.darker-background > * {
    position: relative;
    z-index: 2;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: #bbb;
}

.header-text {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 18.75rem;
}

.impressum-header {
    background: #333;
    color: white;
}

.impressum-header > div {
    display: flex;
    justify-content: space-between;
    padding: 1.25rem 4.375rem;
}

.impressum {
    text-align: left;
}

.spacer {
    height: 1.875rem;
}
