.containertransition {
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
}

.slider {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: #000;
}

.slider1 {
    background-color: rgb(35, 35, 35);

    height: 100%;
}

.slider2 {
    background-color: rgb(25, 25, 25);
    height: 100%;
}

.slider3 {
    background-color: rgb(15, 14, 14);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.progress{
    font-family: Swiss721, Serif;
    color: rgb(217, 217, 217);/*var(--white);*/
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-top: 2rem;
    font-size: 1rem;
    text-align: center;
}
.progressbar{
    width: 100%;
    overflow: hidden;

    height: 1px;
}
#progressBar{
    background-color: rgb(217, 217, 217);/*var(--white);*/
    transition: 0.4s;
    height: 100%;
    width: 0;
}
.progressText{
    position: relative;
}
.loaderName{
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
    margin-bottom: 4rem;
    color: rgb(217, 217, 217);/*var(--white);*/
    font-family: Swiss721,Serif;
}

.pseudoload, .nameload {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    font-size: 2rem;
    display: flex;
    align-items: center;
    position: absolute;
    justify-content: center;
}

.pseudoload {
    transform: translateY(0%);
    width: 100%;
    text-align: center;
    display: none;
}

.nameload {
    transform: translateY(0%);
    margin-bottom: 0.1rem;
}
