#main {
    width: 100%;
    background-color: antiquewhite;
}

#main .steps {
    width: 100%;
    height: 100%;
    background-color: black;
    position: absolute;
    top: auto;
    left: auto;
    overflow: hidden;
    clip-path: inset(0 0 0 0);
    transform-origin: left;
    will-change: clip-path;
    transition: clip-path 1s ease;
    transition-delay: 0.25s;
}

#main .steps img {
    width: 100vw;
    image-rendering: optimizeSpeed;
}

#main .feedback-main-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(360deg, rgba(0, 0, 0, 0.3) 10%, transparent 90%); 
    width: 100%; 
    height: 100%;
    padding: 40px; 
    position: absolute; 
    z-index: 10;
}

#main .feedback-sub-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}

#main .feedback-text-container {
    display: flex;
    flex-direction: column;
    gap: 0px;
    width: 100%;
    color: white;
    clip-path: inset(0 0 0 0);
}

#main .sub-feedback-number {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    width: min-content;
    padding: 2px 10px;
    margin-bottom: 15px;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(3px);
    border-radius: 16px;
}

#main .sub-feedback-number > * {
    color: white;
    font-size: 0.8rem;
    font-weight: var(--subtitle-weight);
}

#main .number-feedback-container {
    color: var(--subtitle-color);
}

#main .feedback-dot-container {
    display: flex;
    flex-direction: row;
    gap: 5px;
    justify-content: space-between;
    align-items: center;
}

#main .feedback-dot-container > * {
    border: var(--border-style);
    background: transparent;
    border-radius: 100%;
}

#main .step-title, .step-description {
    width: 100%;
}

#main .step-title {
    font-size: var(--title-size);
    line-height: var(--title-line-height);
    font-weight: var(--title-weight);
}

#main .step-description {
    font-weight: var(--subtitle-weight);
    color: var(--subtitle-color);
}

@media (max-width: 1024px) {
    #main .steps img {
        width: 100vw;
        height: 100dvh;
        object-fit: cover;
    }

    #main .step-title {
        font-size: 2.5rem;
        line-height: 2.5rem;
    }

    #main .feedback-main-container {
        padding: 20px;
    }
}