<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
/* full view: md, lg */
@media (min-width: 992px) {
    .firstpage-categories a {
        width: calc(20% - 35px);
        margin: 15px;
    }
}

/* responsive view: xxs, xs, sm */
@media (max-width: 992px) {
	
	
	h1 {
		font-size: 30px;
	}
	h2, h3 {
		font-size: 25px;
	}
	
	.pagination {
		text-align: center;
	}
	
	.pagination li a {
		font-size: 1.6em !important;
		margin: 5px;
		padding: 0.5em 0.8em !important;
	}
	
	ul#main-menu &gt; li {
		display: block !important;
		border-top: solid 1px #CBEA93 !important;
	}
	
	ul#main-menu &gt; li &gt; a {
		text-align: left !important;
	}
	
	#modal-login .row &gt; div,
	#modal-join .row &gt; div {
		margin: 10px 0px;
	}
	
	#modal-login .btn,
	#modal-join .btn {
		width: 100%;
	}
	
	#footer {
		text-align: center;
	}
	
	#footer ul {
		text-align: left !important;
	}
	
	.sidebar .banners {
		 text-align: center;
	}
	
	.sidebar .banner {
		display: inline-block;
		margin: 10px;
	}
    
    .menu-button span {
        text-transform: lowercase;
    }
}

/* lg only */
@media (min-width:1200px) {
	.caption h3,
    .caption h4 {
        font-size: 48px;
    }
}

/* md only */
@media (min-width: 992px) and (max-width: 1199px) {
	.caption h3,
    .caption h4 {
        font-size: 40px;
    }
}

/* sm only */
@media (min-width: 768px) and (max-width: 991px) {
	.caption h3,
    .caption h4 {
        font-size: 32px;
    }
    
    .firstpage-categories a {
        width: calc(33.33% - 30px);
        margin: 15px;
    }
}

/* xs+xxs only */
@media (max-width: 767px) { 
	h1 {
		text-align: center;
		font-size: 28px;
	}
	h2, h3 {
		font-size: 22px;
	}
    
    .firstpage-categories a {
        width: calc(50% - 30px);
        margin: 15px;
    }
}

/* xxs only */
@media (max-width: 479px) { 
    .col-xxs-12 {
        width: 100%;
    }
    
    #footer {
        text-align: left;
    }
    
    .firstpage-categories a {
        width: calc(100% - 30px);
        margin: 15px;
    }
}</pre></body></html>