/*Global styling*/

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;
}
*, :before, :after {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
body {
	font-size: 11px;
	font-family: 'Century Gothic';
	line-height: 1;
	font-weight: 400;
	color: #fff;
}

/*
 2.0.1) Font Face
 -----------------------------*/
@font-face {
	font-family: 'Century Gothic';
	src: url('../fonts/CenturyGothic.woff2') format('woff2'), url('../fonts/CenturyGothic.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Century Gothic-bold';
	src: url('../fonts/CenturyGothic-Bold.woff2') format('woff2'), url('../fonts/CenturyGothic-Bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
}

/*
 1.) Homepage
 ----------------------------------------*/
.content {
	background-image: url(../images/content-bg.jpg);
	height: 100vh;
	background-position: center center;
	-webkit-background-size: cover;
	background-size: cover;
	background-repeat: no-repeat;
}
.design-info {
	position: absolute;
	left: 33px;
	top: 41px;
}
.design-info strong {
	font-family: 'Century Gothic-bold';
	font-weight: 700;
	font-size: 19px;
	display: block;
	margin-bottom: 10px;
}
.design-info a {
	color: #fff;
	position: relative;
	padding: 0 4px;
	text-decoration: none;
}
.design-info li:first-child a {
	padding: 0 4px 0 0;
}
.design-info li:last-child a:after {
	display: none;
}
.design-info ul, .social-contact ul {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	list-style-type: none;
}
.design-info a:after {
	width: 1px;
	height: 100%;
	background-color: #fff;
	position: absolute;
	content: '';
	top: 2px;
	right: 2px;
	-webkit-transform: rotate(-6deg);
	-moz-transform: rotate(-6deg);
	-ms-transform: rotate(-6deg);
	-o-transform: rotate(-6deg);
	transform: rotate(-6deg);
	display: none;
}
.social-contact {
	position: absolute;
	left: 0;
	right: 0;
	width: 200px;
	margin: 0 auto;
	bottom: 68px;
}
.social-contact ul {
	align-items: center;
	justify-content: center;
}
.social-contact li {
	margin-right: 10px;
}
.social-contact li:last-child {
	margin-right: 0;
}

/*----media query for mobile----*/

@media only screen and (max-width: 767px) {
	.design-info {
		position: absolute;
		left: 0;
		top: 30px;
		width: 254px;
		margin: 0 auto;
		right: 0;
		text-align: center;
	}
	.social-contact {
		bottom: 30px;
	}
}
