main {
    overflow: hidden;
}

.torch-slide:not(.torch-slide.hero) {
    min-height: 200vh;
    background: linear-gradient(180deg,#010101 0%, rgba(1, 1, 1, 0) 11.65%, #010101 77.21%);
}
.torch-slide.hero {
    min-height: 100vh;
    background: linear-gradient(180deg, rgba(1, 1, 1, 0) 11.65%, #010101 77.21%);
}
.torch-slide-content {
    min-height: 100vh;
}
.torch-slide-space {
    height:50vh;
}
@media screen and (min-width:1024px) {
    .torch-slide:not(.torch-slide.hero) {
        height: 200vh;
    }
    .torch-slide.hero,
    .torch-slide-content {
        height: 100vh;
    }
}


.torch-slide.hero > div {
    min-width: 50%;
}

.torch-logo {
    height: 72px;
}

.slide-image {
    border-radius: 16px;
    overflow: visible;
    position: relative;
    width: 80%;
    height: auto;
}
.slide-image > img {
    border-radius: 16px;
}

.first-section,
.second-section,
.third-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.slide-image.first,
.slide-image.second,
.slide-image.third {
    bottom: 0;
    display: flex;
    justify-content: end;
    position: relative;
    width: 80%;
    height: auto;
    margin: 16px 0;
}

.second-section .slide-image.second {
    display: none;
}

@media screen and (min-width:1024px) {
    .slide-image {
        position: absolute;
        height: 248px !important;
    }
    .first-section,
    .second-section,
    .third-section {
        display: inline;
    }

    .slide-image {
        border-radius: 16px;
        overflow: visible;
        position: absolute !important;
        height: 248px;
    }
    .slide-image.first {
        right: 100%;
        width: 500px;
        margin: 0 48px 0 0;
    }
    .slide-image.second {
        bottom: 50%;
        transform: translateY(50%);
        left: 100%;
        width: 500px;
        display: flex;
        justify-content: start;
        margin-left: 48px
    }
    .second-section .slide-image.second {
        display: block;
    }
    .third-section .slide-image.second {
        display: none;
    }

    .slide-image.third {
        top: 100%;
        right: 100%;
        height: 180px !important;
        width: 500px;
        display: flex;
        justify-content: end;
        margin-right: 48px;
    }
}

.pin-container img {
    transition: opacity 0.3s ease-in-out;
}
.pin-container:not(.active) img {
    opacity: 0.1;
}
.pin-container.active {
    z-index: 100;
}

.dots-container {
    top: 50%;
    transform: translateY(-50%);
}
.dots-container li::marker {
    display: none;
}
.dots-container li {
    height: auto;
}
.torch-dot {
    cursor: pointer;
    width: 8px;
    height: 8px;
    border: 1px solid #FFFFFF;
    border-radius: 50%;
    background: transparent;
    transition: all 0.3s ease-in-out;
    margin: 5px 0;
}
.torch-dot.active {
    background: #FFFFFF;
    width: 12px;
    height: 12px;
}
