:root{
    --bg-clr: #191919;
    --heading-clr: #2e2e2e;
    --card-clr: #202020;
    --dark: #191919;
    --txt: #7e7e7e;
    --light: #dfdfdf;
    --lighter: #ffffff;
    --ac-clr: #0097b2;
    --ac-clr-rgb: 0, 151, 178;
    --hover-clr: #dfdfdf;
    --hover: #d1d1d1;

    --small-radius: 5px;
    --radius: 12px;
    --big-radius: 20px;

    --site-padding: 0 1em;
    --default-padding: 1em;
    --card-padding: 10px;
    --section-padding: 50px 1em;

    --font-body: "DM Sans", sans-serif;
    --font-headline: "Syne", sans-serif;
    --font-subheadline: "Syne", sans-serif;
}

::selection{
    background: #0097b25d;
    color: var(--lighter);
}

::-moz-selection{
    background: #0097b25d;
    color: var(--lighter);
}


html{
	
}

html,
body{
    margin: 0;
    padding: 0;
    background-color: var(--bg-clr);
}
body{
    overflow-x: clip;
}
html.js #page-fade-overlay{
    position: fixed;
    inset: 0;
    background: var(--bg-clr);
    opacity: 1;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 9999;
}
html.js.page-loaded #page-fade-overlay{
    opacity: 0;
}
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
}

main{
    width: 100%;
    overflow: hidden;
}

.mw{
    max-width: 1500px;
}
.mw-small{
    max-width: 1100px;
}



h1 {
    font-family: var(--font-subheadline);
    font-weight: 800;
    color: var(--heading-clr);
    font-size: clamp(2.2rem, 5vw, 4rem);
    text-align: center;
}


/* fonts */
h2,
h5,
h6{
    font-family: var(--font-headline);
    font-weight: 700;
}


h3,
h4{
    font-family: var(--font-subheadline);
    font-weight: 800;
    color: var(--heading-clr);
    font-size: clamp(2.2rem, 5vw, 4rem);
    text-align: center;
}


p,
a{
    font-family: var(--font-body);
    font-size: calc(.9rem + 0.2vw);
    line-height: 1.7;
}

.mini-heading{
    font-size: calc(1.05rem + 0.2vw);
    line-height: 1.3;
}
/* font-sizes */




/* font colors */
    .light{
        color: var(--light);
    }
    .default{
        color: var(--txt);
    }
    .dark{
        color: var(--dark);
    }
    .ac{
        color: var(--ac-clr);
        text-shadow: 0 0 20px var(--ac-clr);
    }





/* buttons */
.btn{
    padding: 8px 20px;
    position: relative;
    overflow: hidden;
    background: transparent;
    outline: 0;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    width: max-content;
}

.btn p{
    display: flex;
    align-items: center;
    font-size: .9rem;
}
.btn p img{
    margin-right: 5px;
    width: 20px !important;
    height: auto !important;
}
.btn p .icon--arrow-white{
    margin-right: 5px;
    width: 20px;
    height: auto;
}
.btn p,
.btn .icon--arrow-white{
    transition: color 0.25s ease, fill 0.25s ease;
}

.btn__char{
    display: inline-block;
}


.btn__border{
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 1;
}
.btn__svg{
    width: 100%;
    height: 100%;
    display: block;
    shape-rendering: geometricPrecision;
}
.btn__path{
    fill: none;
    stroke: transparent !important;
    stroke-width: 0 !important;
    vector-effect: non-scaling-stroke;
}
.btn__seg{
    fill: none;
    stroke: var(--ac-clr);
    stroke-width: 3.5px;
    vector-effect: non-scaling-stroke;
    stroke-linecap: butt;
    stroke-linejoin: miter;
    stroke-miterlimit: 6;
    shape-rendering: geometricPrecision;
}

/* Hover-Farbwechsel wird per GSAP gesteuert. */


/* transitions */
.img-transition-top{
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    aspect-ratio: 10/1;
    min-height: 80px;
    max-height: 140px;
    background: linear-gradient(
            to bottom,
            rgba(25, 25, 25, 1) 0%,
            rgba(25, 25, 25, 1) 30%,
            rgba(25, 25, 25, 0) 100%
    );
    transform: translate(-50%, -2px);
    z-index: 4;
}
.img-transition-bottom{
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100%;
    aspect-ratio: 10/1;
    min-height: 80px;
    max-height: 140px;
    background: linear-gradient(
            to top,
            rgba(25, 25, 25, 1) 0%,
            rgba(25, 25, 25, 1) 30%,
            rgba(25, 25, 25, 0) 100%
    );
    transform: translate(-50%, 2px);
    z-index: 4;
}


/* imgs / icons */
.icon--check{
    width: 30px;
    height: auto;
}

.rcb-content p {
	font-family: var(--font-body);
}