<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
* #.# Top Message Content
*/

#top-message-section p {
    margin-top: 0;
    margin-bottom: 1rem;
}
#top-message-section .img-wrap {
    position: relative;
    width: 250px;
    height: 250px;
}

#top-message-section .img-wrap::before {
    position: absolute;
    left: -30px;
    bottom: 0;
    width: 30px;
    height: 80%;
    background: #1dbb95;
    content: "";
}

#top-message-section .img-wrap::after {
    position: absolute;
    top: 0;
    right: -30px;
    width: 30px;
    height: 80%;
    background: #1dbb95;
    content: "";
}

@media screen and (max-width: 991px) {
    #top-message-section .img-wrap {
        width: 200px;
        height: 200px;
    }
}

@media screen and (max-width: 767px) {
    #top-message-section .img-wrap {
        width: 250px;
        height: 250px;
    }
}
</pre></body></html>