@import url("./global/styles/base/variables.css");
@import url("./global/styles/base/fonts.css");
@import url("./global/styles/base/colors.css");
@import url("./global/styles/base/animations.css");

@import url("./global/styles/page-parts/header.css");
@import url("./global/styles/page-parts/main.css");
@import url("./global/styles/page-parts/footer.css");

@import url("./global/styles/components/headline.css");
@import url("./global/styles/components/buttons.css");
@import url("./global/styles/components/item.css");
@import url("./global/styles/components/nav.css");
@import url("./global/styles/components/togglebox.css");
@import url("./global/styles/components/filter.css");
@import url("./global/styles/components/metaoverlay.css");



* {
    -webkit-text-size-adjust: 100%;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -ms-overflow-style: none;
    scrollbar-width: none;
    box-sizing: border-box;
    /* hyphens: auto; */
    touch-action: manipulation;
}

/* Hide scrollbar for Chrome, Safari and Opera */
*::-webkit-scrollbar {
    display: none;
}

[tabindex]:focus-visible::-webkit-slider-thumb,
[tabindex]:focus-visible,
button:focus-visible {
    outline-offset: 2px;
    outline-color: var(--color-blue);
    opacity: 1 !important;
    outline-style: solid;
    outline-width: 2px;
    z-index: 100 !important;
}

html {
    font-family: var(--font-regular);
    font-size: 18px;
    height: 100%;
    min-height: calc(100vh - var(--header-size-h));
}

body {
    position: relative;
    height: 100%;
    padding-bottom: 123px;
    opacity: 1;
}

span,p {
    font-weight: normal;
}

p {
    line-height: var(--font-line-s);
    font-size: var(--font-size-s);
    margin-block-start: 0;
    margin-block-end: 0;
    color: var(--color-blue);
}

a {
    font-weight: normal;
    text-decoration: none;
    position: relative;
}

/*a:after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    height: 1px;
    width: 100%;
    background-color: var(--color-blue);
    transition: width .3s ease;
}*/

a {
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 100% 1px;
    position: relative;
    text-decoration: none;
    transition: background-size 0.3s;
}
a:focus, a:hover {
    background-size: 0% 1px;
}

a:hover:after {
    width: 0;
}

a:visited {
    font-weight: normal;
}

@media (hover: hover) {
    a:hover {
    }
}

h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
    line-height: 1;
    color: var(--color-blue);
    width: fit-content;
    width: -moz-fit-content;
}

h1 {
    font-size: var(--font-size-xxl);
    font-family: "ITCOfficina-Serif", serif;
    margin: 0;
    line-height: clamp(2.3rem, 5vw,  3.9rem);
}

h2 {
    font-weight: bold;
    font-size: 1.3rem;
}

h3 {
    font-size: 1rem;
}

ul {
    font-size: var(--font-size-s);
    line-height: var(--font-line-s);
    font-weight: normal;
}

video {
    width: 100%;
}

.is-hidden {
    display: none !important;
}

.no-wrap {
    white-space: nowrap;
}

.text-content {
    margin-top: 24px;
}
.text-content p:not(:last-of-type) {
    margin-bottom: 16px;
}
.margin-top-16 {
    margin-top: 16px !important;
}