@charset "UTF-8";
/* CSS Document */
/* main styles */ 

:root {
	--mainColor: rgb(153, 192, 230);
	--compColor: rgb(38, 70, 102);
	--bgColor: rgb(255, 255, 255);
	--antiBgColor: rgb(0, 0, 0);
}
* {
	margin: 0;
	padding: 0;
}
@font-face {
	font-family: 'TradeGothic LT Extended';
	src: url('/fonts/TradeGothicLT-BoldExtended.eot');
	src: url('/fonts/TradeGothicLT-BoldExtended.eot?#iefix') format('embedded-opentype'), url('/fonts/TradeGothicLT-BoldExtended.woff2') format('woff2'), url('/fonts/TradeGothicLT-BoldExtended.woff') format('woff'), url('/fonts/TradeGothicLT-BoldExtended.ttf') format('truetype'), url('/fonts/TradeGothicLT-BoldExtended.svg#TradeGothicLT-BoldExtended') format('svg');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}
@media screen and (min-width: 300px) {
	.mobile {
		display: initial;
	}
	.desktop {
		display: none;
	}
}
@media screen and (min-width: 800px) {
	.mobile {
		display: none;
	}
	.desktop {
		display: initial;
	}
}
html {
	font-size: 62.5%;
}
body {
	background-color: var(--bgColor);
	font: 1.4rem/125% Georgia, "Times New Roman", Times, serif;
	text-align: center;
}

/* classes */
.es {
	color: var(--mainColor);
}
.space {
	margin-right: 10px;
	display: inline;
}