@font-face {
    font-family: 'roboto_condensedbold';
    src: url('assets/fonts/robotocondensed-bold-webfont.woff2') format('woff2'),
         url('assets/fonts/robotocondensed-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'roboto_condenseditalic';
    src: url('assets/fonts/robotocondensed-italic-webfont.woff2') format('woff2'),
         url('assets/fonts/robotocondensed-italic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'roboto_condensedregular';
    src: url('assets/fonts/robotocondensed-regular-webfont.woff2') format('woff2'),
         url('assets/fonts/robotocondensed-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

:root {
	--color-primary: rgb(73, 102, 195);
	--color-primary-alt: rgb(54, 79, 160);
	--color-secondary: rgb(146, 155, 183);
	--color-secondary-alt: rgb(99, 110, 143);
	--color-gray: #f0f0f0;
	--color-font: #999;
	--color-white: #fff;
	--color-black: rgb(8, 16, 42);
	--border-radius: 8px;
	--grid-s: 10px;
	--text-size: 18px;
	--text-lineheight: 1.4em;
	--text-size-small: 13px;
}

* {
	margin: 0;
	padding: 0;
	list-style: none;
	border: none;
	text-decoration: none;
	outline: none;
	font-family: 'roboto_condensedregular';
	font-style: normal;
}

html, body {
	background: var(--color-gray);
	min-height: 100%;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: auto;
}

article, figure {
	box-sizing: border-box;
}

h1 {
	font-size: 2em;
	font-family: 'roboto_condensedbold';
	color: var(--color-white);
}

h2 {
	color: var(--color-white);
}

strong {
	font-family: 'roboto_condensedbold';
	display: block;
	margin-bottom: 10px;
}

em {
	font-family: 'roboto_condenseditalic';
}

article strong {
	display: block;
	margin-top: var(--grid-s);
}

.clr {
	clear: both;
}

footer {
	padding: var(--grid-s);
	text-align: right;
}

a {
	color: var(--color-primary);
}

a.btn {
	display: block;
	background: var(--color-secondary);
	height: 40px;
	box-sizing: border-box;
	padding: 10px 20px;
	line-height: 20px;
	cursor: pointer;
	border-radius: var(--border-radius);
	color: var(--color-white);
}

a.btn.back {
	position: absolute;
	right: 20px;
	top: 20px;
}

a.btn:hover {
	background: var(--color-secondary-alt);
}

a.btn.primary {
	margin: 20px 0;
	background: var(--color-primary);
}

a.btn.primary:hover {
	background: var(--color-primary-alt);
}

a.btn img {
	float: left;
	margin-right: 10px;
}

footer a {
	color: var(--color-font);
	margin-left: 10px;
	display: inline-block;
}

li, a, p, strong, em {
	font-size: var(--text-size);
	line-height: var(--text-lineheight);
}

li {
	display: block;
	margin-left: 15px;
	position: relative;
}

li::before {
	content: '';
	display: inline-block;
	width: 6px;
	position: absolute;
	left: -15px;
	top: 11px;
	height: 6px;
	background: var(--color-primary);
}

hr {
	margin: 10px 0;
}

.left {
	padding: 20px;
	background: var(--color-gray);
}

.right {
	padding: 20px;
	background: var(--color-white);
	background: var(--color-white);
}

header {
	background: var(--color-black);
	padding: 20px;
	position: relative;
}

.card {
	background: var(--color-white);
}

.card article {
	padding: 20px;
	width: 100%;
}

.card figure {
	display: none;
}

.card .information {
	padding: 20px;
}

.card::after {
	content: '';
	display: block;
	clear: both;
}

.card .usps {
	background: var(--color-gray);
	padding: 10px 20px;
	margin-bottom: 10px;
}

.card address {
	margin-bottom: 10px;
}

.card .pricing {
	margin-left: 20px;
	font-size: 24px;
}

.card small,
.card small * {
	font-size: var(--text-size-small);
}

.card .price-sub {
	display: block;
}

@media screen and (min-width: 600px) {
	.card {
		margin: 40px 0;
		display: flex;
	}

	.card figure {
		display: block;
	}

	a.btn {
		display: inline-block;
	}

	a + .btn.primary {
		margin-left: 20px;
	}
}

@media screen and (min-width: 840px) {
	.card .information {
		float: left;
	}
	.card .pricing {
		margin-left: 0;
		float: right;
	}
}

@media screen and (min-width: 1024px) {
	:root {
		--grid-s: 30px;
		--text-size: 20px;
		--text-lineheight: 1.4em;
	}

	hr {
		margin: 40px 0;
	}

	a + .btn.primary {
		float: right;
		margin: 0;
	}

	.left, .right {
		width: 50%;
		box-sizing: border-box;
		float: left;
	}
	.left {
		padding-right: 20px;
	}
	.right {
		padding-left: 20px;
	}
	.container {
		padding-top: 200px;
		margin-bottom: 200px;
	}
}
