@charset "utf-8";
/* CSS DOKUMENT */

/* ÜBERSCHRIFTEN STANDARDEINSTELLUNGEN */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--headline-font);
    color: var(--blue);
    font-weight: 400;
}

/* VERLAUFS-ÜBERSCHRIFTEN */
h1 span {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: var(--gradient);
}

h2 span {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: var(--gradient);
}

h3 span {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: var(--gradient);
}

h4 span {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: var(--gradient);
}

h5 span {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: var(--gradient);
}

h6 span {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: var(--gradient);
}

/* ÜBERSCHRIFTEN-TAGS */
h1 {
    font-size: 3.33rem;
    line-height: 1.2;
    margin-bottom: var(--space-ms);
}

h2 {
    font-size: 2.9rem;
    line-height: 1.2;
    margin-bottom: var(--space-ms);
}

h3 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: var(--space-ms);
}

h4 {
    font-size: 2.4rem;
    line-height: 1.2;
    margin-bottom: var(--space-ms);
}

h5 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: var(--space-ms);
}

h6 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: var(--space-ms);
}

/* COPY-EINSTELLUNGEN */
p, body, a {
    font-family: var(--copy-font);
    font-weight: 200;
    font-size: 1rem;
    line-height: 1.53;
    color: var(--dark-grey);
    text-decoration: none;
}

p {
    margin-bottom: .625rem;
}

/* ANCHOR UND BUTTONS */
a {
    color: var(--orange);
    -webkit-transition: var(--smooth);
    -o-transition: var(--smooth);
    transition: var(--smooth);
}

a:hover {
    text-decoration: none;
}

.underline {
    position: relative;
}

.underline:hover {
    opacity: .65;
    -webkit-transition: var(--smooth);
    -o-transition: var(--smooth);
    transition: var(--smooth);
}

.underline::after {
    position: absolute;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background: var(--orange);
    content: "";
    display: block;
    left: 0%;
    z-index: -1;
}

button {
    font-family: var(--copy-font);
    padding: 9px 14px 11px;
    font-size: 1rem;
    color: var(--white);
    font-weight: 200;
    background-image: var(--gradient);
    border: none;
    
    -webkit-transition: var(--smooth);
    -o-transition: var(--smooth);
    transition: var(--smooth);
    width: fit-content;
}

button:hover {
    scale: .95;
    opacity: .65;
    cursor: pointer;
    -webkit-transition: var(--smooth);
    -o-transition: var(--smooth);
    transition: var(--smooth);
}

.button {
    font-family: var(--copy-font);
    padding: 9px 14px 11px;
    font-size: 1rem;
    color: var(--white);
    font-weight: 200;
    background-image: var(--gradient);
    border: none;
    
    -webkit-transition: var(--smooth);
    -o-transition: var(--smooth);
    transition: var(--smooth);
    width: fit-content;
}

.button:hover {
    scale: .95;
    opacity: .65;
    cursor: pointer;
    -webkit-transition: var(--smooth);
    -o-transition: var(--smooth);
    transition: var(--smooth);
}

button a {
    padding: 0;
    color: inherit;
}

/* UMBRUCHEINSTELLUNGEN */
br {
    margin-bottom: var(--space-xs);
}

/* BILDEINSTELLUNGEN */
img {
    aspect-ratio: initial;
    background-size: cover;
    height: fit-content;
}