@keyframes touch-anim {
    0% {
        left: 0;
    }
    100% {
        left: -5vw;
    }
}
@keyframes blink-anim {
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
.foreground * {
    position: absolute;
}
.foreground-content-list {
    display: flex;
    width: 100vw;
    height: 75.15vh;
    position: absolute;
    bottom: 5.64vh;
    left: 0;
    right: 0;
    margin: auto;
    overflow-y: hidden;
    overflow-x: scroll;
    z-index: 10;
}
.foreground-content-list::-webkit-scrollbar {
    display: none;
}
.foreground-content-item {
    position: relative;
    width: 100%;
    height: 100%;
    margin-right: 5%;
}
.foreground-bar {
    position: relative;
    margin-top: 13.61vh;
    width: 75.15vw;
    height: 29.07vh;
    clip-path: polygon(20.16% 0, 100% 0, 100% 100%, 0 100%);
    z-index: 6;
}
.foreground-bar p {
    text-transform: uppercase;
    padding-bottom: 2.12vh;
    z-index: 7;
}
.foreground-bar p:nth-child(1) {
    font-size: 2.5vh;
    top: 13.69%;
    left: 25.84%;
}
.foreground-bar p:nth-child(2) {
    font-size: 3vh;
    top: 30.89%;
    left: 23.14%;
}
.foreground-bar p:nth-child(2) span {
    font-size: 2.5vh;
    line-height: 1;

}
.foreground-bar p:nth-child(3) {
    font-size: 7.22vh;
    top: 67.42%;
    left: 26.47%;
}
.foreground-bar p:nth-child(3) span {
    font-size: 4.53vh;
    line-height: 2.05;
}
.foreground-main-content {
    position: relative;
    height: 100%;
    width: 58vw;
    object-fit: cover;
    object-position: center;
    margin-left: 45%;
    margin-top: -42.68vh;
    z-index: 8;
}
.touch-icon {
    left: 30.78vw;
    bottom: 26.11vh;
    height: 9.44vh;
    display: flex;
    align-items: flex-end;
    animation: blink-anim 2s infinite;
}
.touch-icon img{
    height: 100%;
    position: relative;
    left: -5vw;
    animation: touch-anim 2s infinite cubic-bezier(.88,0,.47,1);
}
.touch-icon p {
    position: relative;
    text-transform: uppercase;
    font-size: 1.85vh;
}
.title span img {
    width: 3.17vw;
}
.foreground-content-item * {
    pointer-events: none;
    object-fit: contain;
}