.box8 {
    background: url(./../img/holding_cell2.webp);
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: #DBE2E2;
    object-fit: fill;
    position: relative;
    padding: 20px;
    box-sizing: border-box;
    width: 100vw;
    height: 100vh;
}
    
    
.box8 .logo {
    position: absolute;
    left: 0;
    top: 10%;
    width: 100%;
    height: auto;
}


.box8 .logo img{
    width: 100%;
    height: 100%;
}




.box8 .welcome {
    width: 100%;
    height: auto;

    position: absolute;
    left: 15%;
    bottom: 10%;

    display: flex;
    flex-direction: column;

    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 500;
    color: rgb(63, 0, 82);

}

.box8 .welcome p {
    margin-block-start: 0;
    margin-block-end: 0;
}

.box8 .welcome .text_normal{
    font-weight: 400;
}

.box8 .welcome .text_strong{
    font-weight: 700;
}
    
@media only screen and (orientation: landscape){
    .box8{
        background-size: cover;
    }
    
}


@media only screen and (min-width: 768px) {
    .box8 .logo {
        top: -15%;
    }

    .box8 .welcome{
        left: 30%;
    }
}

@media only screen and (min-width: 1000px) {
    .box8 .logo {
        top: -20%;
        width: auto;
        height: 100vh;
    }

    .box8 .welcome{
        left: 35%;
        font-size: 4rem;
    }    

    .box8 .logo img{
        width: auto;
        height: 100%;        
    }
}    