.expo {
    -webkit-font-smoothing: antialiased;
    font-feature-settings: "kern";
    font-kerning: normal;
    text-rendering: optimizelegibility;
    background-color: var(--color-dark);
    color: var(--color-white);
}

.expo__meta-text {
    margin-top: 10vw;
    font-size: 1.04vw;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
}

@media screen and (max-width: 600px) {
    .expo__meta-text {
        font-size: 2.5vw;
    }
}

.expo__main {
    display: block;
    position: relative;
    max-width: 100%;
    width: 100%;
    z-index: 30;
}

@media (max-width: 600px) {
    .expo__main {
        overflow: hidden;
    }
}

.expo__container {
    display: block;
    position: relative;
    border-bottom: 5px solid var(--color-white);
}

@media (max-width: 600px) {
    .expo__container {
        padding-top: 0vw !important;
    }
}

.expo__slides-wrapper {
    pointer-events: none;
    position: fixed;
    top: 0vw;
    left: 0vw;
    width: 100%;
    height: 100vh;
    z-index: 1;
    perspective: 100vw;
}

.expo__slide {
    position: absolute;
    overflow: hidden;
    border-radius: 1vw;
    opacity: 0;
}

.expo__slide-image {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    top: 0vw;
    left: 0vw;
}

.expo__content-wrapper {
    position: sticky;
    opacity: 1;
    pointer-events: auto;
    top: 0vw;
    left: 0vw;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    z-index: 10;
}

@media (max-width: 600px) {
    .expo__content-wrapper {
        position: relative;
        height: auto;
        padding-top: 10vw;
        padding-bottom: 20vw;
    }
}

.expo__scroll-content {
    max-width: 94.33vw;
    margin-left: auto;
    margin-right: auto;
    width: 78.36vw;
    position: relative;
    display: block;
}

.expo__scroll-content > :not([hidden]) ~ :not([hidden]) {
    margin-top: 2.9vw;
}

@media (max-width: 600px) {
    .expo__scroll-content {
        max-width: 90vw;
        width: 100%;
    }
}

.expo__description {
    font-size: 1.85vw;
    line-height: 1.4;
    font-weight: 300;
    color: var(--color-white);
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
}

.expo__description p {
    margin-bottom: 2em;
}

@media (max-width: 768px) {
    .expo__description {
        font-size: 4.5vw;
        padding: 0;
    }

    .expo__meta-text {
        font-size: 4.5vw;
        padding: 0;
    }

    .expo__slide:nth-child(1) {
        left: 5vw !important;
        width: 60vw !important;
        top: 10vw !important;
        bottom: auto !important;
    }

    .expo__slide:nth-child(2) {
        left: 45vw !important;
        top: 40vw !important;
        width: 50vw !important;
    }

    .expo__slide:nth-child(3) {
        left: -5vw !important;
        top: 70vw !important;
        width: 65vw !important;
    }

    .expo__slide:nth-child(4) {
        left: 35vw !important;
        top: 100vw !important;
        width: 55vw !important;
        bottom: auto !important;
    }

    .expo__slide:nth-child(5) {
        left: -10vw !important;
        top: 130vw !important;
        width: 60vw !important;
    }

    .expo__slide:nth-child(6) {
        left: auto !important;
        right: 5vw !important;
        top: 160vw !important;
        width: 65vw !important;
        bottom: auto !important;
    }

    .expo__slide:nth-child(7) {
        left: 10vw !important;
        top: 190vw !important;
        width: 60vw !important;
    }
}