<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Large desktops and laptops */
@media (min-width: 1200px) {

}

/* Portrait tablets and medium desktops */
@media (min-width: 992px) and (max-width: 1199px) {

}

/* Portrait tablets and small desktops */
@media (min-width: 768px) and (max-width: 991px) {
.box .content {
    margin-left: 50px;
}
}

/* Landscape phones and portrait tablets */
@media (max-width: 767px) {
.box .content {
    margin-left: 0px;
}

.pattern .box {
    background-image:none !important;
}

.logo h1 {
    font-size: 50px !important;
}

.navbar-nav &gt; li {
    display:block;
	float:none;
}

}

/* Landscape phones and smaller */
@media (max-width: 480px) {

}</pre></body></html>