:root {
    --bg: hsla(248, 44%, 7%);
    --border: hsl(280 10% 50% / 4);
    --card: hsla(237, 37%, 10%, 0.493);
    --color: hsl(240 18% 80%);
    --border-width: 2.5px;
    --border-radius: 40px;
    --gradient: conic-gradient( from 180deg at 50% 70%, hsla(0, 0%, 98%, 1) 0deg, #eec32d 72.0000010728836deg, #ec4b4b 144.0000021457672deg, #709ab9 216.00000858306885deg, #4dffbf 288.0000042915344deg, hsla(0, 0%, 98%, 1) 1turn );
}

body,
html {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: "Exo 2.0", "SF Pro Text", "SF Pro Icons", "AOS Icons", "Helvetica Neue", Helvetica, Arial, sans-serif, system-ui;
    font-weight: 800;
    background: #19181a;
    color: #fff;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    position: relative;
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

header {
    background: linear-gradient(90deg, #00c8f4 0.83%, #b9eb21 100%);
    color: #fff;
    position: fixed;
    top: 0;
    right: 0;
    padding: 10px;
    z-index: 9999;
    border-bottom-left-radius: 30px;
    animation: gradientShift 4s infinite alternate;
    background-size: 200% 100%;
}

.swiper-pagination-progressbar-fill {
    background: linear-gradient(to bottom, #00c8f4 0%, #66d062 50%, #b9eb21 100%) !important;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
    left: auto !important;
    right: 0 !important;
    position: absolute !important;
}

.swiper-pagination {
    transition: opacity 2s;
    opacity: 0;
}

.swiper-pagination-visible {
    transition: opacity 2s;
    opacity: 1 !important;
}


    @keyframes gradientShift {
        0% {
            background-position: 0% 50%;
        }

        100% {
            background-position: 100% 50%;
        }
    }

    .swiper-slide {
    background-color: rgba(255, 255, 255, 0);
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.swiper-container {
    flex: 1;
    overflow: hidden;
    width: auto; 
}

.swiper-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: -1;
}

.main-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    max-height: 100%;
    align-items: center;
    justify-content: center;
}


/* __________________________Стили опенинга__________________________ */
.wrapfirst {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    margin: 0;
}

.preview-main {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.content-main {
    text-align: center;
}

.header-main { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    justify-content: center;
}
/*    .header-main h1 {
        background: linear-gradient(90deg, #00c8f4 0.83%, #b9eb21 100%);
        font-size: 2.5rem;
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        display: inline;
        font-weight: 900;
        animation: glow 2s infinite alternate;
        text-shadow: 0 0 2px rgba(0, 200, 244, 0.5), 0 0 4px rgba(185, 235, 33, 0.5);
    }*/

.logo-main {
    width: max(4vw,6vh); 
    height: auto; 
}

.slogan-main-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100vw;
}

.slogan-main {
    font-size: 2rem; 
    text-align: center; 
    white-space: normal; 
    opacity: 0;
    padding: 0 20px;
}

.slogan-main span {
    display: inline-block;
    opacity: 0;
    transition: opacity 0.5s ease;
    word-break: break-word;
    overflow-wrap: break-word;
    text-align: center; 
}
    .slogan-main span.visible {
        opacity: 1;
        animation: flicker-in 1s ease-in forwards;
        text-shadow: 0 0 4px rgba(255, 255, 255, 0.6), 0 0 8px rgba(255, 255, 255, 0.6);
    }

.slogan-main p {
    margin-bottom: 1em;
    line-height: 0.3;
}

    .slogan-main p:after {
        content: "\A";
        white-space: pre;
    }

.progressBarOp {
    position: absolute;
    right: 0;
    top: 0;
    height: 0;
    width: 4px;
    background: linear-gradient(to bottom, #00c8f4 0%, #66d062 50%, #b9eb21 100%);
    /*    box-Shadow: 0 0 2px rgba(0, 200, 244, 0.5), 0 0 4px rgba(185, 235, 33, 0.5);*/
}
/*.arrowDown {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 2s ease-in-out;
}*/

@media only screen and (max-width: 1024px), only screen and (max-height: 768px) {
    .slogan-main p {
        margin-bottom: 1em;
        line-height: 0.8;
    }

    .header-main h1 {
        font-size: 2rem;
    }

    .slogan-main {
        font-size: 16px;
    }

    .logo-main {
        width: 30px;
        height: auto;
    }
}

@keyframes glow {
    from {
        text-shadow: 0 0 8px rgba(0, 200, 244, 0.5), 0 0 12px rgba(185, 235, 33, 0.5);
    }

    to {
        text-shadow: 0 0 13px rgba(0, 200, 244, 0.3), 0 0 18px rgba(185, 235, 33, 0.3);
    }
}

@keyframes glow-slog {
    from {
        text-shadow: 0 0 8px rgba(255, 255, 255, 0.8), 0 0 12px rgba(255, 255, 255, 0.8);
    }

    to {
        text-shadow: 0 0 13px rgba(255, 255, 255, 0.6), 0 0 18px rgba(255, 255, 255, 0.6);
    }
}

@keyframes flicker-in {
    0%, 100% {
        opacity: 0;
    }

    10%, 30%, 50%, 70%, 90% {
        opacity: 0.2;
    }

    20%, 40%, 60%, 80% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

.display-wrapper {
    position: absolute;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
}

#display-skyfi {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
    #display-skyfi svg {
        width: 100%;
        height: 100%;
    }

/* __________________________Стили опенинга__________________________ */


/* ____________________Стили для блока с планетой____________________ */
.globe-wrapper {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    scroll-snap-align: center;
}

.planet {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#globe-3d,
#globe-2d-overlay,
#globe-popup-overlay,
.globe-popup {
    display: block;
    position: absolute;
}

#globe-2d-overlay,
#globe-popup-overlay {
    pointer-events: none;
}

.globe-popup {
    top: 0;
    left: 0;
    background-color: white;
    opacity: 0;
    color: #111;
    padding: 5px 10px;
    font-size: 15px;
    border-radius: 3px;
    filter: drop-shadow(0 0 3px #555);
}

.text-overlay {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 20;
    opacity: 0;
    display: flex;
    align-items: center;
}


    .text-overlay.loaded {
        opacity: 1;
    }


    .text-overlay h1 {
        font-size: 38px;
        background: linear-gradient(90deg, #00c8f4 0.83%, #b9eb21 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        margin: 0;
    }

.logo {
    max-width: 35px;
    margin-right: 10px;
}

.hidden {
    display: none;
}

.image-popup {
    display: none;
    position: fixed;
    width: 75vw;
    max-width: 1200px;
    min-height: 75vh;
    overflow: hidden;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 40;
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px); 
    background-color: rgba(255,255,255,0.1); 
    border-radius: 40px;
}

    .image-popup.visible {
        display: block;
    }

.visible {
    display: block;
}

#popup-image {
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin: auto;
}

#close-popup-button {
    position: absolute;
    top: 1vw;
    right: 1vw;
    padding: 0; 
    border: none;
    cursor: pointer;
    z-index: 100;
    background: none;
    width: 60px;
    height: 60px;
}

    #close-popup-button svg {
        fill: #b9eb21;
        width: 100%;
        height: 100%;
    }

.layer {
    position: absolute;
    width: 100%; 
    height: 100%;
    overflow: hidden;
}
    .layer .content-wrap {
        border-radius: 40px;
        width: 75vw;
        max-width: 1200px;
        min-height: 75vh;
    }

    .layer img {

        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover; 
        top: 0;
        left: 0;
    }

.bottom {
    z-index: 1;
}

.top {
    z-index: 2;
}

.handle {
    position: absolute;
    height: 100%;
    display: block;
    background-color: #b9eb21;
    width: 5px;
    top: 0;
    left: 50%;
    z-index: 3;
}

.image-popup .handle {
    top: 50%;
    transform: rotate(30deg) translateY(-50%);
    height: 200%;
    transform-origin: top;
}


.image-popup .top {
    transform: skew(-30deg);
    margin-left: -1000px;
    width: calc(50vw + 1000px);
}

    .image-popup .top .content-wrap {
        transform: skew(30deg);
        margin-left: 1000px;
    }

/*кнопки переключения между маркерами*/
/*.arrow-button {
    cursor: pointer;
    z-index: 5;
    user-select: none;
    background-color: rgba(255, 255, 255, 0.6);
    color: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(0, 0, 0, 0.6);
    padding: 0.75rem;
    border-radius: 50%;
}

.arrow-svg-marker {
    height: 50px;
    width: auto;
}

#prev-marker {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

#next-marker {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.arrow-button:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

#prev-marker {
    left: 10px;
}

#next-marker {
    right: 10px;
}*/

.description-popup {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: translateY(100%);
    background-color: #fff;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.3);
    transition: transform 0.5s ease-in-out;
    z-index: 5;
    display: flex;
    justify-content: center; 
    align-items: center;
    text-align: center;
    height: 80px;
    display: flex;
    flex-direction: column;
}

    .description-popup.active {
        transform: translateY(0) !important;
        background: rgba(0, 0, 0, 0.9);
        
    }

#marker-description {
    padding: 10px 20px;
    white-space: pre-wrap;
    margin: 0;
}

#marker-credit {
    padding: 10px 20px;
    font-size: 0.75rem;
    margin: 0;
    font-weight: normal;
}

/*Мобильная версия*/
@media only screen and (max-width: 1024px) {
    #marker-description {
        padding: 5px 10px;
    }

    #marker-credit {
        padding: 2px 10px;
    }

    .image-popup {
        width: 95vw;
        height: 75vh;
    }

    #close-popup-button {
        width: 45px;
        height: 45px;
    }

    .layer {
        width: 100%;
        height: 100%;
    }

        .layer img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
        }


        .layer .content-wrap {
            width: 100vw;
            min-height: 100%;
        }

    .bottom {
        z-index: 1;
    }

    .top {
        z-index: 2;
    }

    .handle {
        width: 7px;
    }
    /*кнопки переключения между маркерами*/
/*    .arrow-button {
        cursor: pointer;
        z-index: 5;
        user-select: none;
        background-color: rgba(255, 255, 255, 0.6);
        color: rgba(0, 0, 0, 0.7);
        border: 2px solid rgba(0, 0, 0, 0.6);
        padding: 1rem;
        border-radius: 50%;
    }

    .arrow-svg-marker {
        height: 60px;
        width: auto;
    }*/
}

/* ____________________Стили для блока с планетой____________________ */

/* ____________________Стили для звёзд на фоне____________________ */
.starry-sky-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.starry-sky {
    width: 100%;
    height: 100%;
}

/* ____________________Стили для звёзд на фоне____________________ */

/* ____________________Стили для слайдшоу____________________ */

.slideshow {
    position: relative;
    width: 70vw;
    height: 80vh;
    border-radius: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    margin: auto;
    overflow: hidden;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
}

.item {
    width: 200px;
    height: 300px;
    list-style-type: none;
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    z-index: 1;
    background-size: cover;
    background-position: top;
    border-radius: 20px;
    box-shadow: 0 20px 30px rgba(255, 255, 255, 0.3) inset;
    transition: transform 0.1s, left 0.75s, top 0.75s, width 0.75s, height 0.75s;
}

    .item:nth-child(1),
    .item:nth-child(2) {
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        transform: none;
        border-radius: 20px;
        box-shadow: none;
        opacity: 1;
    }
        .item:nth-child(2)::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 40%;
            border-radius: 20px 20px 0 0;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
            pointer-events: none;
        }

    .item:nth-child(3) {
        left: 80%;
        opacity: 0.9;
        z-index: 6;
    }

    .item:nth-child(4) {
        left: calc(80% + 220px);
        opacity: 0.75;
        z-index: 5;
    }

    .item:nth-child(5) {
        left: calc(80% + 440px);
        opacity: 0.5;
    }

    .item:nth-child(n+6):nth-child(-n+16) {
        opacity: 0;
    }


.content {
    width: 90%;
    position: relative;
    top: 5%;
    /* transform: translateY(-50%); */
    justify-content: center;
    /* white-space: pre-wrap; */
    align-items: center;
    color: white;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
    opacity: 0;
    display: none;
    z-index: 100;
    padding-left: 5%;
    padding-right: 5%;
}

    .content .slidetitle {
        text-indent: 5px;
    }

        .content .slidetitle span {
            text-transform: uppercase;
            display: inline;
            font-size: min(32px, 4vw)
        }

    .content button {
        width: fit-content;
        background-color: rgba(0, 0, 0, 0.1);
        color: white;
        border: 2px solid white;
        border-radius: 0.25rem;
        padding: 0.75rem;
        cursor: pointer;
    }


.item:nth-of-type(2) .content {
    display: block;
    animation: show 0.50s ease-in-out 0.3s forwards;
}

#preview3 {
    background-position: bottom center;
}

.credit {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    font-size: 0.95rem;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
    opacity: 0;
    display: none;
}
.item:nth-of-type(2) .credit {
    display: block;
    animation: show 0.50s ease-in-out 0.3s forwards;
}

@keyframes show {
    0% {
        filter: blur(50px);
        transform: translateY(calc(-50% + 75px));
    }

    100% {
        opacity: 1;
        filter: blur(0);
    }
}

.nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    user-select: none;
    & .btn

{
    background-color: rgba(255, 255, 255, 0.5);
    color: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(0, 0, 0, 0.6);
    margin: 0 0.25rem;
    padding: 0.75rem;
    border-radius: 50%;
    cursor: pointer;
    &:hover

{
    background-color: rgba(255, 255, 255, 0.3);
}

}
}

@media (width > 650px) and (width < 1080px) {
    .slideshow {
        position: relative;
        width: 95vw;
        height: 95vh;
        border-radius: 40px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
        margin: auto;
        overflow: hidden;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
    }

    .content {
        font-size: 0.8rem;
    }

        .content .slidetitle span {
            /* Здесь укажите стили, если они подразумеваются */
        }

    .item {
        width: 160px;
        height: 270px;
        top: 70%;
    }

        .item:nth-child(3) {
            left: 75%;
        }

        .item:nth-child(4) {
            left: calc(65% + 170px);
            opacity: 0.5;
        }

        .item:nth-child(5),
        .item:nth-child(6),
        .item:nth-child(7),
        .item:nth-child(8),
        .item:nth-child(9),
        .item:nth-child(10) {
            opacity: 0;
        }

}

@media (width < 650px) {
    .slideshow {
        position: relative;
        width: 95vw;
        height: 95vh;
        border-radius: 40px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
        margin: auto;
        overflow: hidden;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
    }

    .content {
        width: 90%;
    }

        .content .slidetitle span {
            font-size: 1.2rem;
        }

    .item {
        width: 130px;
        height: 220px;
        top: 70%;
    }

        .item:nth-child(3) {
            left: 90%;
        }

        .item:nth-child(4) {
            left: calc(75% + 140px);
        }

        .item:nth-child(5) {
            left: calc(75% + 280px);
        }

        .item:nth-child(6),
        .item:nth-child(7),
        .item:nth-child(8),
        .item:nth-child(9),
        .item:nth-child(10) {
            opacity: 0;
        }

}


/* ____________________Стили для актуального слайдшоу____________________ */

/* ____________________Стили для метеоритов____________________ */
.global-problems {
    display: grid;
    place-items: center;
    min-height: 100vh;
}

.meteor {
    aspect-ratio: 1;
    width: 200px;
    filter: url(#drop);
    position: absolute;
    left: 50%;
    bottom: 100%;
    translate: -50% 0%;
    -webkit-animation: scale var(--speed) calc(var(--delay, var(--speed) * -0.5)) infinite linear;
    animation: scale var(--speed) calc(var(--delay, var(--speed) * -0.5)) infinite linear;
}

@-webkit-keyframes scale {
    to {
        transform: translateY( calc(var(--distance, 100cqh) + (var(--buffer, 100%))) );
    }
}

@keyframes scale {
    to {
        transform: translateY( calc(var(--distance, 100cqh) + (var(--buffer, 100%))) );
    }
}

.line:not(.line--collider) {
    top: 10%;
    translate: 0 -50%;
}

.line {
    --speed: 6s;
    position: relative;
    height: 150vmax;
    width: 2px;
    background: hsl(0 0% 40% / 0);
    rotate: 50deg;
    position: fixed;
    left: 50%;
    container-type: size;
}

    .line:nth-of-type(2) {
        --speed: 10s;
        top: 90%;
    }

article {
    width: 60vmin;
    height: 60vmin;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    z-index: 2;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    position: relative;
}

.line--collider {
    --distance: 200cqh;
    --buffer: 100%;
    position: absolute;
    top: unset;
    bottom: calc(50% + ((1) * 29vmin));
    translate: 0 0;
    transform-origin: 50% 100%;
}

.line:nth-of-type(3) {
    position: absolute;
    top: unset;
    bottom: 50%;
    translate: 0 0;
    transform-origin: 50% 100%;
    left: calc(50% + 29vmin);
}

.line--collider:nth-of-type(3) {
    --speed: 8s;
    --delay: -2s;
}

.line--collider:nth-of-type(4) {
    --speed: 14s;
    --delay: -6s;
}

.line--collider::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    height: 100%;
    width: 2px;
    background: hsl(0 0% 40% / 0);
    translate: -50% 0;
    z-index: -1;
}

.line--collider .meteor {
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.global-problems {
    display: grid;
    place-items: center;
    min-height: 100vh;
}

.meteor {
    aspect-ratio: 1;
    width: 200px;
    filter: url(#drop);
    position: absolute;
    left: 50%;
    bottom: 100%;
    translate: -50% 0%;
    -webkit-animation: scale var(--speed) calc(var(--delay, var(--speed) * -0.5)) infinite linear;
    animation: scale var(--speed) calc(var(--delay, var(--speed) * -0.5)) infinite linear;
}

@-webkit-keyframes scale {
    to {
        transform: translateY( calc(var(--distance, 100cqh) + (var(--buffer, 100%))) );
    }
}

@keyframes scale {
    to {
        transform: translateY( calc(var(--distance, 100cqh) + (var(--buffer, 100%))) );
    }
}

.line:not(.line--collider) {
    top: 10%;
    translate: 0 -50%;
}

.line {
    --speed: 6s;
    position: relative;
    height: 150vmax;
    width: 2px;
    background: hsl(0 0% 40% / 0);
    rotate: 50deg;
    position: fixed;
    left: 50%;
    container-type: size;
}

    .line:nth-of-type(2) {
        --speed: 10s;
        top: 90%;
    }

article {
    width: 60vmin;
    height: 60vmin;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    z-index: 2;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    position: relative;
}

.line--collider {
    --distance: 200cqh;
    --buffer: 100%;
    position: absolute;
    top: unset;
    bottom: calc(50% + ((1) * 29vmin));
    translate: 0 0;
    transform-origin: 50% 100%;
}

.line:nth-of-type(3) {
    position: absolute;
    top: unset;
    bottom: 50%;
    translate: 0 0;
    transform-origin: 50% 100%;
    left: calc(50% + 29vmin);
}

.line--collider:nth-of-type(3) {
    --speed: 8s;
    --delay: -2s;
}

.line--collider:nth-of-type(4) {
    --speed: 14s;
    --delay: -6s;
}

.line--collider::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    height: 100%;
    width: 2px;
    background: hsl(0 0% 40% / 0);
    translate: -50% 0;
    z-index: -1;
}

.line--collider .meteor {
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.svg-box {
    width: 100%;
    height: 100%;
    bottom: -40%;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .svg-box svg {
        max-width: 100%;
        max-height: 100%;
    }

/* #meteorShowerCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.meteor {
  position: absolute;
  
}

.centered-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}

.circle {
  width: 60vmin;
  height: 60vmin;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  margin: 0 auto;
}

.centered-text {
  margin-top: 20px;
  color: white;
}

.particle {
  position: absolute;
  width: 5px;
  height: 5px;
  background-color: #FFD700; 
  border-radius: 50%;
}
 */

/* ____________________Стили для метеоритов____________________ */

/* ____________________Стили для фото____________________ */
.photo-event {
    position: relative; /* Делаем родительский контейнер относительно позиционированным */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    z-index: 10;
}

p {
    line-height: 1;
}

a {
    color: crimson;
    text-decoration: none;
}

#gallery figure img {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
}

#gallery {
    height: 100vh;
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 100vw;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
    #gallery figure {
        position: relative;
        padding: 0.5rem;
        border-radius: 5px;
        box-shadow: 0 7px 8px rgba(0, 0, 0, 0.4);
        height: auto;
        text-align: center;
        background-color: ghostwhite;
        background-size: cover;
        background-position: center;
        background-blend-mode: multiply;
        overflow: hidden;
        outline: 1px solid transparent;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

figure img {
    aspect-ratio: 1/1;
    width: 100%;
    object-fit: cover;
    display: block;
    border-radius: 5px;
    margin-bottom: 10px;
}

figure figcaption {
    color: black;
    font-weight: 500;
    font-size: 1rem;
    white-space: pre-wrap;
}

figure h2 {
    color: crimson;
    font-size: 22px;
}

figure p {
    font-size: 17px;
}

figure small {
    font-size: 12px;
}

@media only screen and (min-width: 1201px) { 
    .photo-event {
        height: 100vh;
    }

    #gallery {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        align-items: center;
    }

    .swiper-slide.photo {
        position: absolute;
        max-width: 380px;
        max-height: 380px;
        width: 23%;
        height: 48%;
        margin: 1%;
    }
        .swiper-slide.photo:nth-child(1) {
            top: -10%;
            left: 0%;
        }

        .swiper-slide.photo:nth-child(2) {
            transform: rotate(2deg);
            top: 0%;
            left: 35%;
        }

        .swiper-slide.photo:nth-child(3) {
            transform: rotate(-4deg);
            top: 5%;
            left: 54%;
        }

        .swiper-slide.photo:nth-child(4) {
            transform: rotate(6deg);
            top: 5%;
            left: 75%;
        }

        .swiper-slide.photo:nth-child(5) {
            transform: rotate(4deg);
            top: 49%;
            left: 1%;
        }

        .swiper-slide.photo:nth-child(6) {
            transform: rotate(12deg);
            top: 47%;
            left: 22%;
        }

        .swiper-slide.photo:nth-child(7) {
            transform: rotate(-6deg);
            top: 50%;
            left: 42%;
        }

        .swiper-slide.photo:nth-child(8) {
            transform: rotate(6deg);
            top: 50%;
            left: 60%;
        }
    .svg-container {
        position: absolute;
        z-index: 5;
        width: 100%;
        height: 100%;
        background-image: url('/eco/images/photo-event/wall.webp'); /* Путь к вашему изображению */
        background-size: cover; /* Обеспечивает покрытие всего контейнера, не сохраняя пропорции */
        background-position: center; /* Центрирует изображение в контейнере */
        background-repeat: no-repeat; /* Предотвращает повторение изображения */
    }
}

@media only screen and (min-width: 1201px) and (max-height: 680px) {
    .swiper-slide.photo {
        position: absolute; /* Указание на абсолютное позиционирование */
        max-width: 320px; /* Максимальная ширина для карточек */
        max-height: 320px; /* Максимальная высота для карточек */
        width: 17%; /* Регулировка ширины для создания 4 столбцов */
        height: 35%; /* Регулировка высоты для создания 2 строк */
        margin: 1%; /* Минимальный отступ для визуального разделения */
    }

        .swiper-slide.photo img {
            max-width: 380px; /* Максимальная ширина для карточек */
            max-height: 380px; /* Максимальная высота для карточек */
        }

    figure figcaption {
        font-size: 0.8rem;
    }
}

    @media only screen and (max-width: 1200px) {
        .swiper-wrapper.photo {
            justify-content: center; /* Центрирование элементов внутри контейнера */
            align-items: center;
            background-image: url('/eco/images/photo-event/wall_vertical.webp');
            background-size: cover;
            background-position: center;
        }

        .swiper-slide.photo {
            display: flex;
            align-items: center;
            justify-content: center;
            height: auto;
            width: 90vw;
        }

        figure figcaption {
            font-size: 1.1rem;
        }

        #gallery {
            grid-template-columns: 1fr; /* Отображение столбиком на мобильных устройствах */
        }

            #gallery figure {
                height: auto;
                width: auto;
                max-width: 600px;
            }

        .swiper-slide.photo:nth-child(1) {
            transform: rotate(1deg);
        }

        .swiper-slide.photo:nth-child(2) {
            transform: rotate(2deg);
        }

        .swiper-slide.photo:nth-child(3) {
            transform: rotate(-4deg);
        }

        .swiper-slide.photo:nth-child(4) {
            transform: rotate(6deg);
        }

        .swiper-slide.photo:nth-child(5) {
            transform: rotate(4deg);
        }

        .swiper-slide.photo:nth-child(6) {
            transform: rotate(12deg);
        }

        .swiper-slide.photo:nth-child(7) {
            transform: rotate(-6deg);
        }

        .swiper-slide.photo:nth-child(8) {
            transform: rotate(6deg);
        }

        .swiper-container .swiper-slide .photo:first-child img {
            width: 100%; /* Пример изменения ширины */
            height: auto; /* Сохранение пропорций изображения */
        }

        /* Стили для изображения в последнем слайде */
        .swiper-container .swiper-slide .photo:last-child img {
            width: 100%; /* Пример изменения ширины */
            height: auto; /* Сохранение пропорций изображения */
        }
    }


    /* ____________________Стили для фото____________________ */

    /* ____________________Стили для ракеты____________________ */
    .fon-rocket {
        width: 100vw;
        height: 100vh;
        overflow: visible; /* Измените на visible, если это безопасно для вашего макета */
        position: static;
        z-index: -10;
        display: flex;
        justify-content: center;
        align-items: center;
        scroll-snap-align: center;
        /* background: radial-gradient(
    circle,
    rgba(250, 227, 18, 0.829) 0%,
    rgba(255, 255, 255, 0) 70%
  ); */
    }

        .fon-rocket img {
            background-color: transparent;
            width: 100%;
            height: 100%;
            display: flex;
            object-fit: cover;
            position: absolute;
            bottom: 0;
            left: 0;
        }

            .fon-rocket img:first-child {
                z-index: 2;
            }

            .fon-rocket img:last-child {
                z-index: 1;
            }

    #robot-body {
        width: 300px;
        height: 300px;
        z-index: 12;
        top: 60%;
        left: 60%;
        position: absolute;
    }

    #robot-hand {
        width: 300px;
        height: 300px;
        z-index: 11;
        top: 60%;
        left: 60%;
        position: absolute;
    }

    .rocket {
        position: absolute;
        width: 80px;
        top: 13%;
        z-index: 10;
    }

        .rocket .rocket-body .elbody {
            background-color: #dadada;
            height: 180px;
            border-top-right-radius: 100%;
            border-top-left-radius: 100%;
            border-bottom-left-radius: 50%;
            border-bottom-right-radius: 50%;
            border-top: 5px solid #f5f5f5;
        }

        .rocket .rocket-body:before {
            content: "";
            position: absolute;
            left: calc(50% - 24px);
            top: calc(100% - 92px);
            width: 48px;
            height: 13px;
            background-color: #554842;
            bottom: -13px;
            z-index: 12;
            border-bottom-right-radius: 60%;
            border-bottom-left-radius: 60%;
        }

        .rocket .rocket-body .elbody p {
            position: absolute;
            font-family: "Arimo";
            color: rgb(43, 224, 52);
            font-weight: 900;
            font-size: 10px;
            left: calc(7%);
            top: calc(40%);
        }

        .rocket .window {
            position: absolute;
            width: 40px;
            height: 40px;
            border-radius: 100%;
            background-color: #00c8f4;
            left: calc(50% - 25px);
            top: 40px;
            border: 5px solid #b4b2b2;
        }

        .rocket .fin {
            position: absolute;
            z-index: -100;
            height: 55px;
            width: 50px;
            background-color: #00c8f4;
        }

        .rocket .fin-left {
            left: -30px;
            top: calc(100% - 105px);
            border-top-left-radius: 80%;
            border-bottom-left-radius: 20%;
        }

        .rocket .fin-right {
            right: -30px;
            top: calc(100% - 105px);
            border-top-right-radius: 80%;
            border-bottom-right-radius: 20%;
        }

        .rocket .fire {
            left: calc(50% - 33px);
            position: relative;
            width: 70px;
            height: 70px;
        }

            .rocket .fire .flame {
                position: absolute;
                bottom: 0;
                left: 0;
                opacity: 0.9;
                width: 100%;
                height: 100%;
                border-bottom-right-radius: 70%;
                border-bottom-left-radius: 70%;
                border-top-left-radius: 70%;
                transform: rotate(-45deg) skew(-10deg, -10deg);
                background-color: #ff2200;
                background-image: linear-gradient( to bottom left, rgba(255, 34, 0, 0.9), rgba(255, 106, 0, 0.7) );
                z-index: 1;
            }

    .fire .flame:nth-of-type(2n) {
        animation-name: burn-right;
    }

    .fire .flame:nth-of-type(2) {
        height: 80%;
        width: 80%;
        left: 10%;
        background-color: #ff6a00;
        background-image: linear-gradient( to bottom left, rgba(255, 106, 0, 0.1), rgba(255, 200, 0, 0.1) );
        z-index: 2;
    }

    .fire .flame:nth-of-type(3) {
        height: 50%;
        width: 50%;
        left: 25%;
        background-image: linear-gradient(to bottom left, #ffc800, #ffffff);
        z-index: 3;
    }

    .fire .flame:nth-of-type(4) {
        height: 30%;
        width: 30%;
        left: 35%;
        background-color: white;
        background-image: linear-gradient( to bottom left, rgba(255, 255, 255, 0.3), rgba(0, 55, 255, 0.9) );
        opacity: 1;
        z-index: 4;
    }

    .rocket .exhaust-fumes li {
        width: 60px;
        height: 60px;
        background-color: #f5f5f5;
        list-style: none;
        position: absolute;
        border-radius: 100%;
    }

        .rocket .exhaust-fumes li:first-child {
            opacity: 0;
            width: 200px;
            height: 200px;
            bottom: -300px;
        }

        .rocket .exhaust-fumes li:nth-child(2) {
            opacity: 0;
            width: 150px;
            height: 150px;
            left: -120px;
            top: 260px;
        }

        .rocket .exhaust-fumes li:nth-child(3) {
            opacity: 0;
            width: 120px;
            height: 120px;
            left: -40px;
            top: 330px;
        }

        .rocket .exhaust-fumes li:nth-child(4) {
            opacity: 0;
            width: 100px;
            height: 100px;
            left: -170px;
            top: 380px;
        }

        .rocket .exhaust-fumes li:nth-child(5) {
            opacity: 0;
            width: 130px;
            height: 130px;
            left: -120px;
            top: 350px;
        }

        .rocket .exhaust-fumes li:nth-child(6) {
            opacity: 0;
            width: 200px;
            height: 200px;
            left: -60px;
            top: 280px;
        }

        .rocket .exhaust-fumes li:nth-child(7) {
            opacity: 0;
            width: 100px;
            height: 100px;
            left: -100px;
            top: 320px;
        }

        .rocket .exhaust-fumes li:nth-child(8) {
            opacity: 0;
            width: 110px;
            height: 110px;
            left: 70px;
            top: 340px;
        }

        .rocket .exhaust-fumes li:nth-child(9) {
            opacity: 0;
            width: 90px;
            height: 90px;
            left: 200px;
            top: 380px;
        }

    @media only screen and (max-width: 1024px) {
        .rocket {
            top: 0%;
            left: 0%;
            transform: translateX(-50%);
        }

        #robot-body {
            top: 60%;
            left: 40%;
        }

        #robot-hand {
            top: 60%;
            left: 40%;
        }
    }

    /* ____________________Стили для ракеты____________________ */

    /* ____________________Стили для горизонтального слайдера____________________ */
    /* Общие стили */
    .horizontal-container {
        padding-left: 50px;
        padding-right: 50px; 
        width: 100%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        height: 80vh;
        justify-content: center;
    }

    .horizontal-slide {
        /*    margin-left: 30px;*/
        width: 50vh;
        max-width: 450px;
        box-sizing: border-box;
        border-radius: var(--border-radius);
        overflow: hidden;
    }

    .horizontal-content {
        height: 100%;
        display: flex;
        flex-direction: column;
        position: relative;
    }

    .image-container {
        overflow: hidden;
        flex: 1;
        text-align: center;
        /* Установите flex на 1, чтобы изображение занимало всю высоту .horizontal-slide */
    }

        .image-container img {
            display: block;
            margin: auto;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }



    .text-container {
        color: rgb(255, 255, 255);
        flex: 1;
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
        background: var(--card);
    }

        .text-container h1 {
            font-size: 26px;
            margin-bottom: 15px; /* Убираем отступы */
        }

        .text-container p {
            text-align: justify;
            font-size: 18px;
            margin-bottom: 15px; /* Убираем отступы */
            font-weight: 500;
        }

    .projectlink {
        font-weight: 600;
        position: absolute;
        bottom: 20px; /* Отступ снизу */
        left: 50%;
        transform: translateX(-50%);
        display: inline-block;
        padding: 10px 20px;
        background-color: #00c8f4;
        color: #fff;
        text-decoration: none;
        border-radius: 20px;
        text-align: center;
    }

    @media only screen and (max-width: 768px) {
        .horizontal-container {
            height: 75vh;
        }

        .horizontal-slide {
            width: calc(100vw - 80px);
            max-width: 320px;
        }

        .text-container {
            padding-left: 15px;
            padding-right: 15px;
        }

            .text-container h1 {
                font-size: 18px;
                margin-bottom: 10px;
            }

            .text-container p {
                font-size: 14px;
                margin-bottom: 10px;
                font-weight: 600;
            }

        .projectlink {
            font-size: 18px;
            padding: 5px 8px;
        }
    }


    /* ____________________Стили для горизонтального слайдера____________________ */

    /* ____________________Карточки медиа (с волнами)____________________ */
    .wrapper {
        position: relative;
        gap: 45px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100vh;
        top: 30%;
        /* Заменил высоту на 100vh */
    }

    .wave-cards {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 40px;
    }

    .box {
        width: 30vw;
        max-width: 250px;
        height: 250px;
        border-radius: var(--border-radius);
        box-shadow: 0 2px 30px rgba(black, 0.2);
        /*    background: lighten(#f0f4c3, 10%);*/
        position: relative;
        overflow: hidden;
        transform: translate3d(0, 0, 0);
        flex-shrink: 0;
    }

    .wave {
        opacity: 0.4;
        position: absolute;
        top: 3%;
        left: 50%;
        background: linear-gradient(90deg, #00c8f4 0.83%, #b9eb21 100%);
        width: 40vw;
        max-width: 450px;
        height: 450px;
        margin-left: -250px;
        margin-top: -250px;
        transform-origin: 50% 48%;
        border-radius: 43%;
        animation: drift 3000ms infinite linear;
    }

        .wave.-three {
            animation: drift 5000ms infinite linear;
        }

        .wave.-two {
            animation: drift 7000ms infinite linear;
            opacity: 0.1;
            background: #b9eb21;
        }

    .box:after {
        content: "";
        display: block;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient( to bottom, rgba(#e8a, 1), rgba(#def, 0) 80%, rgba(white, 0.5) );
        z-index: 11;
        transform: translate3d(0, 0, 0);
    }

    .title-wave-card {
        position: absolute;
        left: 0;
        top: 25%;
        width: 100%;
        z-index: 1;
        text-align: center;
        transform: translate3d(0, 0, 0);
        color: white;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-size: 24px;
        text-shadow: 0 1px 0 rgba(black, 0.1);
    }

    .social-icons {
        display: flex;
        justify-content: center;
        align-items: center;
        /* Уберите margin-top: 0px; */
    }

        .social-icons .svg-link {
            margin: 0 30px;
            fill: white;
        }

        .social-icons img {
            width: 80px;
            height: 80px;
            margin: 0 30px;
            fill: white;
        }

    .subscribe {
        text-align: center;
    }

    #subscribe-form {
        display: flex;
        align-items: center;
    }

    #email-input {
        width: 602px;
        opacity: 0.85;
        background-color: #fff;
        padding: 20px;
        border: 1px solid #ccc;
        border-radius: 40px;
        font-family: "Arimo";
        font-size: 24px;
    }

    .btn-subscribe {
        width: 290px;
        height: 70px;
        background: linear-gradient(90deg, #00c8f4 0.83%, #b9eb21 100%);
        color: #fff;
        border: none;
        border-radius: 40px;
        overflow: hidden;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 40px;
    }

        .btn-subscribe h1 {
            font-family: "Arimo";
            font-size: 24px;
            margin-right: 10px;
        }

        .btn-subscribe img.i-hand {
            height: 30px;
            margin-left: 5px;
        }

        .btn-subscribe:hover {
            background: linear-gradient(90deg, #b9eb21 100%, #00c8f4 0.83%);
        }

    @keyframes drift {
        from {
            transform: rotate(0deg);
        }

        to {
            transform: rotate(360deg);
        }
    }

    @media only screen and (max-width: 1024px) {
        .wrapper {
            gap: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            height: 100vh;
            top: 30%;
        }

        .wave-cards {
            display: flex;
            flex-direction: column;
            gap: 10px;
            align-items: center;
        }

        #subscribe-form {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 35px;
        }

        .btn-subscribe {
            margin-left: 0px;
        }

            .btn-subscribe h1 {
                font-family: "Arimo";
                font-size: 18px;
                margin-right: 0px;
            }

        .box {
            max-width: none;
            width: 70vw;
            max-width: 300px;
            height: 100px;
        }

        #email-input {
            width: 85vw;
            max-width: 500px;
            opacity: 0.85;
            background-color: #fff;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 40px;
            font-family: "Arimo";
            font-size: 18px;
        }

        .btn-subscribe {
            width: 220px;
            height: 45px;
        }

        .wave {
            width: 360px;
            height: 360px;
            margin-left: -200px;
            margin-top: -270px;
        }

        .title-wave-card {
            font-size: 22px;
        }

        .social-icons .svg-link {
            margin: 0;
        }

        .social-icons img {
            width: 60px;
            height: 60px;
            margin: 0 40px;
        }
    }

    .connect-subscribe {
        justify-content: center;
        align-items: center;
    }

        .connect-subscribe h1 {
            text-align: center;
            font-size: 3rem;
            margin: 0;
        }

        .connect-subscribe p {
            text-align: center;
            font-size: 1.2rem;
        }

    /* ____________________Карточки медиа (с волнами)____________________ */


    /*Тут для дисплея стили*/
    /*.display-wrapper {
    position: absolute;*/ /* изменено на relative */
    /*justify-content: center;
    align-items: center;
    scroll-snap-align: center;
    width: 100vw;
    height: 100vh;
    overflow: hidden;*/ /* добавлено для скрытия части изображения, если оно больше области родительского контейнера */
    /*}

    .display-wrapper img {
        background-color: transparent;
        width: 100%;*/ /* изменено на max-width */
    /*height: 100%;*/ /* изменено на max-height */
    /*position: absolute;
        object-fit: cover;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);*/ /* используется для центрирования */
    /*}*/



@media (max-width: 768px) {
    #preview16 {
        background-image: url('/eco/images/ecoslider/slide-16.webp');
    }

    #preview1 {
        background-image: url('/eco/images/ecoslider/slide-1_mob.webp');
    }

    #preview2 {
        background-image: url('/eco/images/ecoslider/slide-2_mob.webp');
    }

    #preview3 {
        background-image: url('/eco/images/ecoslider/slide-3_mob.webp');
    }

    #preview4 {
        background-image: url('/eco/images/ecoslider/slide-4.webp');
        background-position-x: 32%;
    }

    #preview5 {
        background-image: url('/eco/images/ecoslider/slide-5_mob.webp');
    }

    #preview6 {
        background-image: url('/eco/images/ecoslider/slide-6_mob.webp');
        background-position-x: 17%;
    }

    #preview7 {
        background-image: url('/eco/images/ecoslider/slide-7_mob.webp');
        background-position-x: 60%;
    }

    #preview8 {
        background-image: url('/eco/images/ecoslider/slide-8.webp');
        background-position-x: 39%;
    }

    #preview9 {
        background-image: url('/eco/images/ecoslider/slide-9.webp');
    }

    #preview10 {
        background-image: url('/eco/images/ecoslider/slide-10.webp');
    }

    #preview11 {
        background-image: url('/eco/images/ecoslider/slide-11.webp');
    }

    #preview12 {
        background-image: url('/eco/images/ecoslider/slide-12.webp');
    }

    #preview13 {
        background-image: url('/eco/images/ecoslider/slide-13.webp');
    }

    #preview14 {
        background-image: url('/eco/images/ecoslider/slide-14.webp');
    }

    #preview15 {
        background-image: url('/eco/images/ecoslider/slide-15.webp');
    }
}

@media (min-width: 769px) {
    #preview16 {
        background-image: url('/eco/images/ecoslider/slide-16.webp');
    }
    #preview1 {
        background-image: url('/eco/images/ecoslider/slide-1.webp');
    }
    #preview2 {
        background-image: url('/eco/images/ecoslider/slide-2.webp');
    }
    #preview3 {
        background-image: url('/eco/images/ecoslider/slide-3.webp');
    }
    #preview4 {
        background-image: url('/eco/images/ecoslider/slide-4.webp');
    }
    #preview5 {
        background-image: url('/eco/images/ecoslider/slide-5.webp');
    }
    #preview6 {
        background-image: url('/eco/images/ecoslider/slide-6.webp');
    }
    #preview7 {
        background-image: url('/eco/images/ecoslider/slide-7.webp');
    }
    #preview8 {
        background-image: url('/eco/images/ecoslider/slide-8.webp');
    }
    #preview9 {
        background-image: url('/eco/images/ecoslider/slide-9.webp');
    }
    #preview10 {
        background-image: url('/eco/images/ecoslider/slide-10.webp');
    }
    #preview11 {
        background-image: url('/eco/images/ecoslider/slide-11.webp');
    }
    #preview12 {
        background-image: url('/eco/images/ecoslider/slide-12.webp');
    }
    #preview13 {
        background-image: url('/eco/images/ecoslider/slide-13.webp');
    }
    #preview14 {
        background-image: url('/eco/images/ecoslider/slide-14.webp');
    }
    #preview15 {
        background-image: url('/eco/images/ecoslider/slide-15.webp');
    }
}