body{
    margin:0;
}
.container{
    width:100vw;
    height:100vh;
    display:flex;
    justify-content: center;
    align-items: center;
    background: grey;
}

.baner{
    position: relative;
    width: 750px;
    height: 300px;
    overflow: hidden;
}
.abs{
    position:absolute;
}

.move{
    transition: transform 1s;
    width: 400px;
    height: 100%;
    position: absolute;
}

.baner:hover .move{

    transform: translate(-510px);
    transition: transform 1s ease !important;
}
.rest{
    width:100%;
    height:100%;
    display: flex;
    align-items: center; 
    
}
.btn{
    width: 175px;
    height: 60px;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.5s linear;
    background: url(img/poz2/CTA_White_2.png);
    background-repeat: no-repeat;
    position:absolute;
    right:45px;
}

.baner:hover .btn{
visibility: visible;
opacity: 1;
}

.btn:hover{
    background: url(img/poz2/Przycisk_2_AfterHover.png);
    background-repeat: no-repeat;
    cursor: pointer;
}
.rs{
    width: 500px;
    height: 100%;
}
#ts{
    
    margin-left: 230px;
    transition: margin-left 1s ease;
    transition-delay: 0.14s;   
}
.baner:hover #ts{
    margin-left:0;
    transition: all 0.5s ease;
}
