.showcase{
    background-color: black;
    position: absolute;
    right: 0;
    width: 100%;
    height: 700px;
    padding: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 1.5s;
}

.showcase video{
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.showcase-active{
    right: 100%;
}

.text {
    color: white;
    opacity: 1;
    padding-top: 300px;
    padding-right: 0;
    transition: 1s;
}

.text h1{
    font-size: 60px;
    font-weight: 900;
}

.text h3{
    font-size: 90px;
    font-weight: 900;
}

@media screen and (max-width:1000px){
    .text h1{
        font-size: 35px;
    }
    
    .text h3{
        font-size: 50px;
    }
}

@media screen and (max-width:700px){
    .showcase{
        padding: 50px;
    }
    .text{
        text-align: center;
    }
    .text h1{
        font-size: 25px;
    }
    .text h3{
        font-size: 60px;
    }
}


@media screen and (max-width:510px){
    .text{
        text-align: center;
    }
    .text h1{
        font-size: 25px;
    }
    .text h3{
        font-size: 40px;
    }
}