
/* @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap'); */

.slider-valores{
    width: 100%;
    height: 100vh;
    display: flex;
}

.slider-valores .controls{
    position:relative;
    top: 50%;
    left: 50%;
    transform: translate(1px, -50%);
    width: 100px;
    height: 100px;
    z-index: 2;
}


.slider-valores .controls>div{
    position: absolute;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.2s ease-in-out;  
}

.slider-valores .controls>.up:active{
    transform: translateY(-10px);
}

.slider-valores .controls>.down:active{
    transform: translateY(10px);
}

.slider-valores .controls>.up{
    top: 0px;
    right: 0px;
    background: #000;
    color: #ffffff;
    border-radius: 0 5px 5px 0;
}

.slider-valores .controls>.down{
    bottom: 0px;
    right: 0px;
    background: #ba0c0c;
    color: #fff;
    border-radius: 0 5px 5px 0;
}

.slider-valores .wrapper{
    width: 100%;
    height: 100%;
    display: flex;
}

.slider-valores .wrapper .left,
.slider-valores .wrapper .right{
    width: 50%;
    overflow: hidden;
}

.slider-valores .wrapper .left>div,
.slider-valores .wrapper .right>div{
    width: 100%;
    height: 100%;
    transition: all 0.5s ease-in-out;
}

.slider-valores .wrapper .left>div{
    display: flex;
    flex-direction: column  ;
    justify-content: center;
    padding: 0 90px 0 40px;
}

.slider-valores .wrapper .left>div h2{
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    background: #ff0000;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.slider-valores .wrapper .left>div{
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 25px;
    color: #ddd;
    text-align: justify;
}

.slider-valores .wrapper .right>div img{
    width: 100%;
    height: 100%;
    object-fit: obtain;
}

.slider-valores .wrapper .right div:nth-child(1){
    margin-top:  -400vh;
}