/*
/
/		RESET
/
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
.clearfix::after {
	content: "";
	clear: both;
	display: table;
}





/*
/
/		COLORS & GRADIENTS & FONTS
/
*/

:root {
	--color-offblack: rgb(16,16,16);				/* #101010 */
	--color-offwhite: rgb(242,242,242);				/* #f2f2f2 */
	--color-graylight: rgb(232,232,232);			/* #e8e8e8 */
	--color-graydark: rgb(127,127,127);				/* #7f7f7f */
	--color-live: rgb(182,5,5);						/* #B60505 */
	--color-sg: rgb(118,188,237);					/* #76BCED */
}

@font-face {
	font-family: "ProximaNova-Regular";
	src: url('../../fonts/proximanova-regular-webfont.eot');
	src: url('../../fonts/proximanova-regular-webfont.eot?#iefix') format('embedded-opentype'),
		 url('../../fonts/proximanova-regular-webfont.woff2') format('woff2'),
		 url('../../fonts/proximanova-regular-webfont.woff') format('woff');
}
@font-face {
	font-family: "ProximaNova-Bold";
	src: url('../../fonts/proximanova-bold-webfont.eot');
	src: url('../../fonts/proximanova-bold-webfont.eot?#iefix') format('embedded-opentype'),
		 url('../../fonts/proximanova-bold-webfont.woff2') format('woff2'),
		 url('../../fonts/proximanova-bold-webfont.woff') format('woff');
}

@font-face {
	font-family: "PublicoHeadline-Bold";
	src: url('../../fonts/PublicoHeadline-Bold-Web.eot');
	src: url('../../fonts/PublicoHeadline-Bold-Web.eot?#iefix') format('embedded-opentype'),
		 url('../../fonts/PublicoHeadline-Bold-Web.woff2') format('woff2'),
		 url('../../fonts/PublicoHeadline-Bold-Web.woff') format('woff');
}

@font-face {
	font-family: "PublicoHeadline-Black";
	src: url('../../fonts/PublicoHeadline-Black-Web.eot');
	src: url('../../fonts/PublicoHeadline-Black-Web.eot?#iefix') format('embedded-opentype'),
		 url('../../fonts/PublicoHeadline-Black-Web.woff2') format('woff2'),
		 url('../../fonts/PublicoHeadline-Black-Web.woff') format('woff');
}

@font-face {
	font-family: "PublicoHeadline-BlackItalic";
	src: url('../../fonts/PublicoHeadline-BlackItalic-Web.woff2') format('woff2'),
		 url('../../fonts/PublicoHeadline-BlackItalic-Web.woff') format('woff');
}







/*
/
/		MAIN
/
*/

body {
	background: var(--color-offwhite);
}

section h1 {
	font-family: "open-sans",sans-serif;
	font-style: normal;
	font-weight: 300;
	font-size: 50px;
	color: var(--color-sg);
}

.card {
	/* background: var(--color-offwhite); */
	/* border: 1px dashed var(--color-sg); */
	/* box-shadow: inset 0 0 0 1px var(--color-sg); */
}
.card h1,
.annotation {
	padding: 20px;
	font-family: "open-sans",sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 16px;
	letter-spacing: 0.05em;
	color: var(--color-sg);
	text-transform: uppercase;
}
.ad {
	background: lightgreen;
	border: none;
	box-shadow: none;
}
.mpu {
	background: lightgreen;
	width: 300px !important;
	height: 250px !important;
}
.ad h1,
.mpu h1 {
	color: white;
}










