.experience_slider {
    width: 600vw;
}

/* Selección de experiencia */
.experience_buttons_container {
    display: flex;
    width: 90%;
    flex-direction: column;
    align-items: center;
    margin: 70px 0 auto 0;
}

.experience_buttons_container .rounded-button-start {
    margin: 10px 0;
    width: 100%;
}

.button_experience {
    position: static;
}

.button_experience:first-child {
    margin-top: 30px;
}

.not-back-ground {
    background-color: transparent;
    background-image: none;
}

.dots_container {
    display: flex;
    margin: auto 0;
    min-height: 50px;

}

.animated_dot {
    position: relative;
    display: flex;
    z-index: 9999;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #fff;
    margin: 0 10px;
    animation: bounce 1s infinite ease-in-out;
}

.animated_dot:nth-child(2) {
    animation-delay: 0.25s;
}

.preload_buttons_container {
    display: flex;
    width: 90%;
    flex-direction: column;
    align-items: center;
    margin: 150px 0 auto 0;
}

.animated_dot:nth-child(3) {
    animation-delay: 0.5s;
}

/*  */
.logo_experiencia_container {
    position: relative;
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.xperience_text_container{
    color: #FFF;
    font-size: 1.5em;
    font-weight: 100;
    margin-top: 15px;
}

@keyframes bounce {
    0% {
        top: 100%;
    }

    50% {
        top: 50%;
    }

    100% {
        top: 100%;
    }
}