<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.show-on-mobile{
    display: none !important;
}
.hide-on-mobile{
    display: block !important;
}

.image-container {
    position: relative;
}
.image-container .main-text {
    position: absolute;
    top: 0;
    left: 0;
}
.image-container .secondary-text {
    position: absolute;
    top: 40px;
    left: 0;
}

@media(max-width:767px) {
    .show-on-mobile{
        display: block !important;
    }
    .hide-on-mobile{
        display: none !important;
    }
}
</pre></body></html>