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;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

* {
	box-sizing: border-box;
}

body {
	font-family: 'Arial', sans-serif;
	font-size: 18px;
	color: #798e96;
}

a {
	color: #0b64d6;
}

.container {
	display: flex;
	justify-content: space-between;
    margin: 0 120px;
    height: 100vh;
    min-height: 600px;
	align-items: stretch;
	padding: 50px 0;
}

.right {
	display: flex;
	flex-direction: column;
	text-align: right;
	justify-content: space-between;
}

.left {
	display: flex;
	flex-direction: column;
	text-align: left;
	justify-content: space-between;
}

.for-sale {
	display: flex;
	align-items: center;
}

.for-sale > div {
	margin-right: 40px;
	font-weight: 700;
}

h1 {
	font-weight: 700;
}

.offer,
.domains-list {
	display: flex;
	flex-direction: column;
}

.offer > *,
.domains-list > * {
	margin-top: 10px;
	display: inline-block;
}

.heading {
	font-size: 100px;
	color: #333333;
}

.heading span {
	display: block;
}

.heading .desc {
	font-size: 40px;
    margin-top: 10px;
}

.offer-email {
	margin-top: 30px;
}

@media (max-width: 1480px) {

	.container {
		margin: 0 40px;
	}
}

@media (max-width: 1300px) {

	.for-sale {
		flex-direction: column;
		align-items: flex-start;
	}

	.for-sale > div{
		margin: 0 0 15px;
	}

	.right {
		position: relative;
		justify-content: flex-end;
	}

	h1 {
		position: absolute;
		top: 0;
		right: 0;
		white-space: nowrap;
	}
}

@media (max-width: 940px) {

	body {
		font-size: 16px;
	}

	.container {
		margin: 0 20px;
	}

	.heading {
        font-size: 40px;
		margin: 40px 0;
	}

	.heading .desc {
		font-size: 22px;
	}

	.for-sale {
		flex-direction: column;
		align-items: self-start;
	}

	.for-sale > div {
		margin-right: 0;
		margin-bottom: 10px;
	}
}

@media (max-width: 768px) {

	.container {
		padding: 20px 0;
		flex-direction: column;
		justify-content: flex-start;
	}

	.right {
		text-align: left;
	}

	h1 {
		margin-top: 40px;
		position: static;
		white-space: none;
	}

	.domains-list {
		margin: 0 0 20px;
	}
}