<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    background-image: url("assets/images/background-smoft.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top left;
}
.bg-half-1, .bg-half-2{
    width: 100%; 
    min-height: 100px; 
    position: relative;
}
.bg-half-1::before, .bg-half-2::before{
    content: '';
    background-color: #eeeeee; 
    width: 75%; 
    height: 100%; 
    position: absolute;
    top: 0; 
    z-index: -1; 
    border-radius: 0.375rem;
}
.bg-half-1::before{
    left: 0; 
}
.bg-half-2::before{
    right: 0; 
}
.image-hover{
    cursor: pointer;
}
.image-hover:hover{
    filter:brightness(0.5);
}

@media (max-width:767px){
    .bg-half-1, .bg-half-2{
        margin: auto;
        padding: 1rem;
    }
    .bg-half-1::before, .bg-half-2::before{
        background-color: #eeeeee; 
        width: 100%; 
        height: 100%; 
    }
}</pre></body></html>