/* - - - - F O N T S - - - - */

@charset "UTF-8";

/* Webfont: BaWue Serif Regular */
@font-face {
    font-family: 'BaWueSerif';
    src: url('../fonts/BaWueSerifWeb-Bold.woff2') format('woff2'),
        url('../fonts/BaWueSerifWeb-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

/* Webfont: BaWue Sans Bold */
@font-face {
    font-family: 'BaWueSansWeb';
    src: url('../fonts/BaWueSansWeb-Bold.woff2') format('woff2'),
        url('../fonts/BaWueSansWeb-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

/* Webfont: BaWue Sans Bold Italic */
@font-face {
    font-family: 'BaWueSansWeb';
    src: url('../fonts/BaWueSansWeb-BoldItalic.woff2') format('woff2'),
        url('../fonts/BaWueSansWeb-BoldItalic.woff') format('woff');
    font-weight: 700;
    font-style: italic;
}

/* Webfont: BaWue Sans SemiBold */
@font-face {
    font-family: 'BaWueSansWeb';
    src: url('../fonts/BaWueSansWeb-SemiBold.woff2') format('woff2'),
        url('../fonts/BaWueSansWeb-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}

/* Webfont: BaWue Sans SemiBold Italic */
@font-face {
    font-family: 'BaWueSansWeb';
    src: url('../fonts/BaWueSansWeb-SemiBoldItalic.woff2') format('woff2'),
        url('../fonts/BaWueSansWeb-SemiBoldItalic.woff') format('woff');
    font-weight: 600;
    font-style: italic;
}


/* - - - - G L O B A L - - - - */

/* normalize */

html {
    width: 100%;
    min-height: 100%;
    height: 100%;
}

html,
body {
    /* Prevent font scaling in landscape while allowing user zoom */
    -webkit-text-size-adjust: 100%;

    /* smooth scroll anchors */
    scroll-behavior: smooth;
}

body {
    width: 100%;
    min-height: 100%;
    font-size: 100% !important;
    background-color: white;

    font-feature-settings: 'kern';
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

* {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;

    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

/* text selection */

::-moz-selection {
    /* Code for Firefox */
    color: #000000;
    background: #E5E5E5;
}

::selection {
    color: #000000;
    background: #E5E5E5;
}


/* Variablen */
:root {
    --page-light-grey: #CBCFBD;
    --page-mid-grey: #363636;
    --page-dark-grey: #1D1D1B;
    --page-light-green: #e9ece3;
    --page-dark-green: #A7AE8E;
    --page-yellow: #fffc00;
    --page-green: #5099A1;
    --page-white: #FFFFFF;
    --gap: 1.5rem;
    --nav-height: 30px;
}

.light-grey {
    background-color: var(--page-light-grey);
}

.mid-grey {
    background-color: var(--page-mid-grey);
}

.dark-grey {
    background-color: var(--page-dark-grey);
}

.light-green {
    background-color: var(--page-light-green);
}

.dark-green {
    background-color: var(--page-dark-green);
}

.yellow {
    background-color: var(--page-yellow);
}

.green {
    background-color: var(--page-green);
}


/* - - - - T Y P O G R A P H Y - - - - */

html,
body {
    font-family: "BaWueSansWeb", sans-serif;
    font-weight: 600;
    line-height: 150%;
    background: var(--page-light-green);
}

a {
    text-decoration: none;
    color: var(--page-green);
}

a:hover {
    color: var(--page-dark-grey);
}

p {}

h1,
h2,
h3,
h4,
h5,
h6 {}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: center;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.center-text {
    font-family: "BaWueSerif", serif;
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 130%;
    text-align: center;
}

/* - - - - T R A N S I T I O N S - - - - */

a {
    -webkit-transition: color 0.09s ease-out, background-color 0.09s ease-out;
    -moz-transition: color 0.09s ease-out, background-color 0.09s ease-out;
    -o-transition: color 0.09s ease-out, background-color 0.09s ease-out;
    -ms-transition: color 0.09s ease-out, background-color 0.09s ease-out;
    transition: color 0.09s ease-out, background-color 0.09s ease-out !important;
}


/* lazy load fade-in */
img.lazy {
    opacity: 0;
}

img:not(.initial) {
    transition: opacity 1s;
}

img.initial,
img.loaded,
img.error {
    opacity: 1;
}

img:not([src]) {
    visibility: hidden;
}

img {
    width: 100%;
}

/* - - - - N A V I G A T I O N - - - - */

.main-navigation {
    padding-top: 1rem;
    padding-bottom: 1rem;
    pointer-events: none;
}

.main-navigation a {
    pointer-events: auto;
}

/* homebutton */

.homebutton {
    position: relative;
    width: 4rem;
    cursor: pointer;
}

.homebutton .image {
    width: 4rem;
    height: auto;
    transition: opacity 0.15s ease-out, transform 0.2s ease-out;
    display: block;
    object-fit: cover;
    object-position: center center;
}

.homebutton .image.primary {
    z-index: 0;
}

.homebutton .image.secondary {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 1;
}

.homebutton:hover .image {
    transform: scale(1.05);
}

.homebutton:hover .image.secondary {
    opacity: 1;
}

/* icons */

.burger,
.close {
    width: 2rem;
    cursor: pointer;
}

.burger img,
.close img {
    width: 100%;
}

/* slide in menu */
.slide-in-menu {
    width: fit-content;
    max-width: 80vw;
    height: fit-content !important;
    left: unset !important;
    flex-direction: row-reverse;
    background: var(--page-mid-grey);
    border-bottom-left-radius: 18px;
    color: #fff;
}

.slide-in-menu a {
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
}

.slide-in-menu a:hover {
    color: var(--page-yellow);
}

.slide-in-menu .offcanvas-header {
    width: fit-content;
    height: auto;
    display: flex;
    justify-content: flex-end;
}

.slide-in-menu .offcanvas-header img {
    filter: invert(1);

}

.slide-in-menu .offcanvas-body {
    height: fit-content;
}

.slide-in-menu .main-menu {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 2rem;
    padding: 1.2rem;
    list-style: none;
}

/* scroll-to-top */
.scroll-to-top {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 100;
    transform-origin: center;
    -webkit-transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    -o-transition: all 0.15s ease-out;
    -ms-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out !important;
    transform: translateX(200%);
    opacity: 1;
}

.scroll-to-top:hover .st0 {
    fill: var(--page-yellow);
}

.scroll-to-top.visible {
    transform: translateX(0);
    opacity: 1;
}

.scroll-to-top.move {
    bottom: 15rem;
}

/* - - - - F O O T E R - - - - */

/* - - - - S E C T I O N S - - - - */

/* VIDEO HERO SECTION */
.video-hero {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
}

.video-hero .hero-content {
    /* we don't want the whole area to be clickable, only the buttons / texts */
    pointer-events: none;
    z-index: 1;
    padding-top: 5%;
    padding-left: 10%;
    padding-right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.video-hero .hero-content * {
    pointer-events: auto;
    width: fit-content;
}

.video-hero .hero-content h1,
.video-hero .hero-content h2,
.video-hero .hero-content p {
    /* in case we use bootstrap */
    margin: 0;
}

.hero-content h1 {
    font-family: 'BaWueSerif', serif;
    font-weight: 700;
    color: #fff;
    font-size: 8rem;
    line-height: 100%;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.75);
}

.hero-content h2 {
    font-weight: 700;
    color: #fff;
    font-size: 2.8rem;
    line-height: 120%;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.75);
}

/* scroll button */
.scroll-button {
    position: absolute;
    z-index: 1;
    bottom: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.8rem 1.4rem;
    background: var(--page-dark-grey);
    pointer-events: auto;
}

.scroll-button img {
    width: 1.2rem;
}

.scroll-button:hover {
    background: var(--page-yellow);
}

.scroll-button:hover img {
    filter: invert(1) grayscale(1);
}

/* hero video */
.video-hero .hero-video {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 0.9 !important;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
    pointer-events: auto;
}

/* INTRO TEXT SECTION */
.section-headline {
    font-family: "BaWueSerif", serif;
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 130%;
    text-align: left;
}

/* info box */
.info-box {
    position: relative;
    background: #FFFFFF99;
    box-shadow: 3px 6px 7px 0px #00000020;
    border-radius: 1rem;
    text-align: center;
    font-weight: 700;
    padding: 2.1rem 2rem;
}

.info-box:after {
    position: absolute;
    display: inline-block;
    width: 4rem;
    height: 4rem;
    left: -1.2rem;
    top: -1.9rem;
    content: "";
    background: url('../img/info-dark.svg') no-repeat center center;
    background-size: contain;
}

.info-box p {
    margin: 0;
}

.info-box p+* {
    margin-top: 1rem;
}

.info-box a {
    text-decoration: underline;
}

/* 3 DATA COLS SECTION */
.data-cols h2 {
    font-family: "BaWueSerif", serif;
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 130%;
    text-align: center;
}

.data-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.data-col .image-wrapper {
    display: block;
    aspect-ratio: 3 / 2.1;
    width: 100%;
    overflow: hidden;
    margin-bottom: 0.2rem;
}

.data-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.data-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.data-text h3 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: right;
}

.data-text .number {
    font-family: "BaWueSerif", serif;
    font-weight: 700;
    font-size: 7rem;
    line-height: 100%;
    padding-right: 2rem;
}

.data-text .unit {
    margin-top: -0.3rem;
}

/* QUOTE SECTION */
.intro-quote {
    overflow: hidden;
    padding-bottom: 2rem;
}

.quote-wrapper {
    height: fit-content;
    padding-top: 7rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.quote-image {
    position: relative;
    width: 180px;
    height: fit-content;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border: 6px solid #FFFFFF;
    box-shadow: 0px 4px 4px 0px #00000040;
}

.quote-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.quote {
    display: flex;
    width: fit-content;
    flex-direction: column;
    gap: 0.8rem;
}

.quote .quote-text {
    font-family: "BaWueSerif", serif;
    font-weight: 700;
    font-size: 2.2rem;
    line-height: 110%;
}

.button {
    width: fit-content;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    border-radius: 5px;
    padding: 0.7rem 0.8rem;
    background-color: var(--page-mid-grey);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
}

.arrow {
    width: 1.2rem;
    height: auto;
}

.button:hover {
    background-color: var(--page-yellow);
    color: var(--page-mid-grey);
}

.button:hover .arrow {
    filter: invert(1);
}

.model-viewer-wrapper {
    aspect-ratio: 3 / 2.2;
}

.model-viewer-wrapper.static-position {
    margin-top: -5rem;
    position: relative;
    overflow: visible;
    height: 40vh;
}

.model-viewer-wrapper model-viewer {
    position: absolute;
    inset: 0;
    width: 170%;
    height: 170%;
    left: -35%;
    top: -35%;
}

.two-cols-text {
    column-count: 2;
    column-gap: 3rem;
}

/* TEXT DIAS SECTION */
.headline-wrapper {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.bubble {
    width: 2rem;
}

.dias {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* dia slider */
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--page-mid-grey);
}

.swiper-pagination .swiper-pagination-bullet {
    background-color: var(--page-light-grey);
    border: none;
    opacity: 1;
    width: 0.85rem;
    height: 0.85rem;
    margin: 0 4px !important;

    -webkit-transition: all 0.05s ease-out;
    -moz-transition: all 0.05s ease-out;
    -o-transition: all 0.05s ease-out;
    -ms-transition: all 0.05s ease-out;
    transition: all 0.05s ease-out !important;
}

.swiper-pagination .swiper-pagination-bullet:hover {
    background-color: var(--page-yellow);
}

.swiper-pagination {
    position: relative;
    margin-top: 2.5rem;
}

/* VIDEO SLIDER SECTION */
.video-slider .swiper .section-headline {
    text-align: center;
    margin-bottom: 1rem;
}

.video-slide-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.video-slider .swiper-slide {
    height: auto;
}

.video-slider .swiper-pagination {
    margin-top: 1.5rem;
}

.swiper-button-next,
.swiper-button-prev {
    /* top: unset !important;
    bottom: 0 !important;
    color: var(--page-dark-grey);
    width: 1rem !important; */

    margin-top: unset !important;
    bottom: 46% !important;
    top: unset !important;

    color: var(--page-white);

    -webkit-transition: all 0.05s ease-out;
    -moz-transition: all 0.05s ease-out;
    -o-transition: all 0.05s ease-out;
    -ms-transition: all 0.05s ease-out;
    transition: all 0.05s ease-out !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: var(--page-yellow);
}

/* video */
.video-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.play-button {
    cursor: pointer;
    position: absolute;
    z-index: 1;
    width: 6rem !important;
    height: auto !important;
    object-fit: contain !important;
    background: transparent;
}

/* additional poster */
.video-container .poster {
    position: absolute;
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-container .poster.show {
    display: block;
}

/* DOUBLE SLIDER SECTION */
.large h3 {
    font-family: "BaWueSerif", serif;
    font-weight: 700;
    font-size: 2.2rem;
    line-height: 110%;
}

/* slider */
#stories-slider {
    background: var(--page-mid-grey);
}

#stories-slider .swiper {
    border-top: 3px solid var(--page-mid-grey);
}

#stories-slider .swiper:last-child {
    border-bottom: 3px solid var(--page-mid-grey);
}

/* hashtags */
.hashtags {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.hashtags li {
    border: 1px solid var(--page-mid-grey);
    padding: 0.5rem 3rem;
    border-radius: 20px;
    font-weight: 600;
    cursor: default;

    -webkit-transition: color 0.09s ease-out, background-color 0.09s ease-out;
    -moz-transition: color 0.09s ease-out, background-color 0.09s ease-out;
    -o-transition: color 0.09s ease-out, background-color 0.09s ease-out;
    -ms-transition: color 0.09s ease-out, background-color 0.09s ease-out;
    transition: color 0.09s ease-out, background-color 0.09s ease-out !important;
}

.hashtags li:hover {
    background: var(--page-mid-grey);
    color: #fff;
}

/* IMAGE + TEXT SECTION */
.overflow {
    overflow: hidden;
}

.overflow-right {
    width: 125%;
    margin-right: -25%;
}

.overflow-left {
    width: 140%;
    margin-left: -40%;
}

.move-up {
    margin-top: -4rem;
}

/* FOOTER SECTION */

/* Footer stays at the bottom */
footer {
    margin-top: auto;
}

footer {
    background: var(--page-dark-green);
    color: #000;
}

footer .container {
    display: flex;
    gap: 2rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

footer .logo-wrapper {
    width: 70%;
    padding: 0;
    display: flex;
    gap: 1rem;
    flex-direction: row;
    list-style: none;
    align-items: center;
}

footer .logo-wrapper li {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

footer .logo-wrapper li img {
    max-height: 90px;
    object-fit: contain;
    -webkit-transition: filter 0.09s ease-out;
    -moz-transition: filter 0.09s ease-out;
    -o-transition: filter 0.09s ease-out;
    -ms-transition: filter 0.09s ease-out;
    transition: filter 0.09s ease-out !important;
}

footer .logo-wrapper li img:hover {
    filter: invert(1);
}

footer .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-right: 1rem;
}

footer a {
    color: #000;
}

footer a:hover {
    color: var(--page-yellow);
}

/* LOGIN FORM SECTION */
main.locked {
    align-items: center;
    justify-content: center;
}

.login-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.login-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.login-form label {
    font-size: 1.2rem;
}

.login-form input {
    margin-left: 0.5rem;
    border: 2px solid black;
    border-radius: 5px;
    height: 3rem;
    padding: 1rem;
}

/* SUBPAGE HEADER SECTION */
.subpage main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.subpage-header {
    height: 20vh;
    display: flex;
    align-items: center;
    color: #fff;
}

/* subpage text section */
.text h2 {
    font-family: "BaWueSerif", serif;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 110%;
    margin-bottom: 1.5rem;
}

.text p+h2 {
    margin-top: 3rem;
}

.text h3 {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.text h4 {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1rem;
    ƒ
}


/* - - - - H E L P E R S - - - - */

/* hide */
.hidden {
    display: none !important;
}

/* z-index */
.z-front {
    z-index: 1;
}

.z-back {
    z-index: 0;
}

/* spacing */
.top-space {
    margin-top: 9rem;
}

.top-space.medium {
    margin-top: 4rem;
}

.bottom-space {
    margin-bottom: 5rem;
}

/* rows with same height */
.same-height {
    display: flex;
    align-items: center;
}

/* image sizes */
.smaller {
    width: 85%;
}

/* absolute centering inside relative parent */
.absolute-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* img covers full div */
.img-full {
    overflow: hidden;
}

.img-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* zoom on hover */
.zoom {
    -webkit-transition: transform 0.2s ease-out;
    -moz-transition: transform 0.2s ease-out;
    -o-transition: transform 0.2s ease-out;
    -ms-transition: transform 0.2s ease-out;
    transition: transform 0.2s ease-out !important;

    /* will-change: transform;
    backface-visibility: hidden; */
    transform: scale(1);
}

.zoom:hover {
    transform: scale(1.1);
}

/* blend mode */
.blend {
    mix-blend-mode: luminosity;
    opacity: 0.8 !important;
}

/* button */
.btn {}

.btn:hover {}

/* layout collection */
.layout-section-title {
    background: var(--page-yellow);
    color: var(--page-dark-grey);
    padding: 2rem 0;
    text-align: center;
}

/* - - - - R E S P O N S I V E - - - - */


.mobile {
    display: none;
}


/* M O B I L E  &  T A B L E T */

@media (max-width: 991.98px),
/* include all devices in landscape mode */
only screen and (max-width: 1199px) and (orientation: landscape) {
    .mobile {
        display: block;
    }

    .desktop {
        display: none;
    }

    /* VIDEO HERO SECTION */
    .video-hero {
        height: 60vh;
    }

    .hero-content h1 {
        font-size: 3.8rem;
        line-height: 100%;
    }

    .hero-content h2 {
        font-size: 1.3rem;
    }

    /* INTRO QUOTE SECTION */
    .quote-wrapper {
        padding-top: unset;
    }

    .quote .quote-text {
        font-size: 1.6rem;
        line-height: 120%;
    }

    /* model viewer */
    .model-viewer-wrapper.static-position {
        margin-left: unset;
    }

    .model-viewer-wrapper.static-position {
        height: 40vh;
    }

    .model-viewer-wrapper model-viewer {
        width: 120%;
        height: 120%;
        left: -10%;
        top: -10%;
    }

    /* DOUBLE SLIDER SECTION */
    .large h3 {
        font-size: 1.6rem;
        line-height: 120%;
    }

    .hashtags {
        gap: 1.2rem;
        justify-content: flex-start;
    }

    /* spacing */
    .top-space {
        margin-top: 5rem;
    }

    .bottom-space {
        margin-bottom: 5rem;
    }

    /* VIDEO SLIDER SECTION */
    .swiper-button-next,
    .swiper-button-prev {
        bottom: 43% !important;
    }
}


/* P H O N E  only */

@media (max-width: 767.98px) {
    .mobile {
        display: block;
    }

    .desktop {
        display: none;
    }

    .phone-only {
        display: block;
    }

    .phone-upwards {
        display: none;
    }

    section:not(.video-hero) {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    /* NAV */
    .slide-in-menu {
        width: 100svw;
        max-width: unset;
        height: 100svh !important;
        max-height: unset !important;
        border-radius: 0;
        flex-direction: column;
    }

    .slide-in-menu .offcanvas-header {
        width: 100%;
        padding-top: 2.2rem;
    }

    .slide-in-menu .offcanvas-body {
        height: 100%;
    }

    .slide-in-menu .main-menu {
        height: 100%;
        padding-bottom: 40%;
        flex-direction: column;
        justify-content: center;
    }

    .slide-in-menu a {
        font-size: 1.4rem;
    }

    /* homebutton */
    .main-navigation .container-fluid {
        justify-content: flex-end;
    }

    .homebutton {
        position: absolute;
        top: 0.5rem;
        left: 0.5rem;
        z-index: 10;
    }

    .homebutton .image {
        width: 3.2rem;
    }

    /* back to top */
    .scroll-to-top.move {
        bottom: 22rem;
    }

    /* VIDEO HERO SECTION */
    .video-hero {
        height: 70vh;
    }

    .hero-content h1 {
        font-size: 3rem;
        line-height: 100%;
    }

    .hero-content h2 {
        font-size: 1.3rem;
    }

    /* scroll button */
    .scroll-button {
        padding: 0.4rem 1.1rem;
    }

    .scroll-button img {
        width: 1rem;
    }

    /* INTRO QUOTE SECTION */
    .quote-wrapper {
        flex-direction: row;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .quote-image {
        width: 120px;
        border: 3px solid #FFFFFF;
    }

    .quote .quote-text {
        font-size: 1.5rem;
    }

    .two-cols-text {
        column-count: 1;
    }

    .model-viewer-wrapper img {
        width: 85%;
    }

    .mobile-unset {
        margin: unset;
    }

    /* model viewer */
    .model-viewer-wrapper.static-position {
        position: relative;
        height: 45vh;
        margin-top: unset;
        padding: 0;
        width: 120%;
        margin-left: -10%;
        overflow: visible;
    }

    .model-viewer-wrapper model-viewer {
        width: 120%;
        height: 100%;
        left: 0;
        top: 0;
    }

    .move-up {
        margin-top: unset;
    }

    /* spacing */
    .top-space {
        margin-top: 3rem;
    }

    .top-space.medium {
        margin-top: unset;
    }

    .bottom-space {
        margin-bottom: 3rem;
    }

    /* image sizes */
    .smaller {
        width: 100%;
    }

    /* headline */
    .section-headline {
        font-size: 1.5rem;
    }

    /* data cols */
    .data-cols h2 {
        text-align: left;
    }

    .data-text h3 {
        text-align: left;
    }

    .data-text .number {
        font-size: 5rem;
        padding-left: 0rem;
    }

    /* center text */
    .center-text {
        text-align: left;
    }

    /* VIDEO SLIDER SECTION */
    .swiper-button-next,
    .swiper-button-prev {
        bottom: 40% !important;
    }

    .video-slider .swiper .section-headline {
        text-align: left;
    }

    .play-button {
        width: 4rem !important;
    }

    /* footer */
    footer .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    footer .logo-wrapper {
        width: 100%;
        gap: 2rem;
        flex-direction: row;
        align-items: flex-start;
        flex-wrap: wrap;
    }

    footer .logo-wrapper li {
        justify-content: flex-start;
        max-width: 60%;
        width: fit-content;
    }

    footer .logo-wrapper li img {
        max-height: 50px;
    }
}


/* P H O N E  landscape only */
@media (max-width: 1023px) and (orientation: landscape) {}

/* everything bigger than phone */
@media (min-width: 768px) {
    .phone-only {
        display: none;
    }

    .phone-upwards {
        display: block;
    }
}

/* T A B L E T  only */

@media (min-width: 768px) and (max-width: 991.98px) {
    .mobile {
        display: block;
    }

    .desktop {
        display: none;
    }
}


/* T A B L E T  landscape only */
@media (min-width: 1024px) and (max-width: 1199px) and (orientation: landscape) {}


/* S C R E E N */

/* mini screens */
@media (max-width: 515.98px) {

    /* VIDEO SLIDER SECTION */
    .swiper-button-next,
    .swiper-button-prev {
        bottom: 35% !important;
    }

}

@media (min-width: 992px) and (max-width: 1199.98px) {}

@media (max-width: 1199.98px) {}

@media (min-width: 1200px) {

    /* page width */
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1200px;
    }
}