/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

html
{
	font-size: 10px !important;
}

body
{
	font-family: 'Bellefair', serif;
	font-weight: 300;
	font-style: normal;

	overflow-x: hidden;

	color: #111;
	background: #fff;

	-webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
a
{
	font-family: 'Bellefair', serif;
	font-weight: normal;

	color: #111;
}

h1
{
	font-size: 6rem;
}

h2
{
	font-size: 5rem;
}

h3
{
	font-size: 4rem;
}

h4
{
	font-size: 3rem;
}

h5
{
	font-size: 2rem;
}

h6
{
	font-size: 1.8rem;
}

p
{
	font-size: 1.8rem;
}

pre
{
	font-size: 1.8rem;
	white-space: pre-wrap;
}

a,
a:hover,
a:focus
{
	cursor: pointer;
	-webkit-transition: all 300ms ease;
		 -o-transition: all 300ms ease;
			transition: all 300ms ease;
	text-decoration: none;
}

a:hover
{
	color: #fff;
}

.navigation-button
{
	position: absolute;
	z-index: 10;
	top: 0;
	right: 0;

	cursor: pointer;
}

.navigation-button p
{
	font-size: 2.8rem;
	font-weight: 400;
	line-height: 9rem;

	width: 9rem;
	height: 9rem;
	margin: 0;
	padding: 0;

	-webkit-transition: .1s ease;
		 -o-transition: .1s ease;
			transition: .1s ease;
	text-align: center;
	letter-spacing: .01em;

	color: #fff;
	border-radius: 100px;
	background: none;
}

.navigation-button p:after
{
	position: absolute;
	z-index: -2;
	top: 0;
	right: 0;

	content: '';
	-webkit-transition: .1s ease;
		 -o-transition: .1s ease;
			transition: .1s ease;

	border-width: 0 15rem 15rem 0;
	border-style: solid;
	border-color: transparent #d80247 transparent transparent;
}

.navigation-button p:hover:after
{
	border-color: transparent #111 transparent transparent;
}

@media (max-width:700px)
{
	html
	{
		font-size: 8px !important;
	}
}

@media (max-width:500px)
{
	html
	{
		font-size: 6px !important;
	}
}

@media (orientation:landscape) and (max-height:420px)
{
	html
	{
		font-size: 8px !important;
	}
}

@-webkit-keyframes spinner-pulse
{
	0%
	{
		-webkit-transform: scale(0);
	}
	100%
	{
		-webkit-transform: scale(1.0);

		opacity: 0;
	}
}

@keyframes spinner-pulse
{
	0%
	{
		-webkit-transform: scale(0);
				transform: scale(0);
	}
	100%
	{
		-webkit-transform: scale(1.0);
				transform: scale(1.0);

		opacity: 0;
	}
}

.intro
{
	position: relative;
	top: 0;
	left: 0;

	width: 100%;
}

.intro .front-content
{
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;

	width: 100%;
	height: 100%;
}

.intro .front-content
{
	position: relative;
	left: 0;

	width: 100%;
	margin: 25vh 0 10vh 0;
	padding: 0 30px;

	text-align: center;
}

.intro .front-content .logo
{
	font-weight: bold;
	margin: 0 auto 6rem auto;
	max-width: 100%;
}

.intro .front-content h1
{
	line-height: 1.7em;
	margin: 0;
}

.intro .front-content h1 span
{
	line-height: 1.4em;

	display: inline-block;

	padding: 0 4rem;

	color: #fff;
	border-radius: 100px;
	background: #d80f48;
}

.portfolio
{
	font-size: 0;
	margin: 0 auto;
	padding: 0 30px;
}

.portfolio .item
{
	position: relative;

	display: inline-flex;
	overflow: hidden;

	width: 50%;
	margin: 0;
	padding: 0;

	border: 2.5rem solid #fff;
	background: #111;
}

.portfolio .item:before
{
	display: block;

	padding-top: 70%;

	content: '';
}

.portfolio .item:last-child
{
	margin-bottom: 0;
}

.portfolio .item .item-cover
{
	position: absolute;
	top: 0;
	left: 0;

	width: 100%;
	height: 100%;

	background-position: center;
	background-size: cover;
}

.portfolio .item i
{
	font-size: 2.5rem;
	line-height: 6rem;

	position: absolute;
	z-index: 10;
	top: 0;
	right: 0;

	width: 6rem;
	height: 6rem;
	padding: 0;

	-webkit-transition: .1s ease;
		 -o-transition: .1s ease;
			transition: .1s ease;
	text-align: center;

	opacity: 0;
	color: #fff;
	border-radius: 100%;
}

.portfolio .item:hover i
{
	opacity: 1;
}

.portfolio .item i:after
{
	position: absolute;
	z-index: -2;
	top: 0;
	right: 0;

	content: '';
	-webkit-transition: .1s ease;
		 -o-transition: .1s ease;
			transition: .1s ease;

	border-width: 0 10rem 10rem 0;
	border-style: solid;
	border-color: transparent #d80247 transparent transparent;
}

.about
{
	margin: 10vh 0 0 0;
	text-align: center;
}

.about .container-fluid
{
	max-width: 900px;
	margin: 0 auto;
}

.about img
{
	margin-bottom: 6rem;
	margin-left: auto;
	margin-right: auto;
}

.about h3
{
	line-height: 1.2em;
	margin-bottom: 1.5em;
}

.about p
{
	line-height: 1.7em;
}

.about .contact
{
	font-size: 2.4rem;
	margin-top: 2.8em;
}

.about .contact span
{
	font-size: inherit;

	margin-left: .8em;
	padding: .5em 1em;

	color: #fff;
	border-radius: 100px;
	background: #d80f49;
}

.footer
{
	overflow: hidden;

	padding: 10rem 2.5rem;

	text-align: center;
}

.footer p
{
	font-size: 1.8rem;

	display: inline-block;

	margin: 0;
	margin-right: 1.4em;
	padding: 2.4rem 0;

	vertical-align: middle;
	letter-spacing: .05em;

	opacity: .85;
}

.footer p a
{
	border-bottom: 1px solid #ccc;
}

.footer p a:hover
{
	color: #111;
}

.social-icons
{
	margin: 0;
	padding: 0;
	list-style: none;
	vertical-align: middle;
}

.social-icons li
{
	font-size: 2.3rem;
	line-height: 6.4rem;
	line-height: 6.4rem;

	position: relative;

	display: inline-block;
	overflow: hidden;

	width: 6.4rem;
	height: 6.4rem;
	margin: 0;
	margin-right: 1em;

	-webkit-transition: .1s ease;
		 -o-transition: .1s ease;
			transition: .1s ease;
	text-align: center;

	color: #fff;
	border-radius: 100%;
	background: grey;
}

.social-icons li:hover
{
	background: #111;
}

.social-icons li a
{
	font-size: inherit;

	display: block;

	color: #fff;
	border: none;
}

/*--------------------------------------------------------------
# Customize
--------------------------------------------------------------*/

@media (max-width: 1279px) {

	/* Mobile */
	.portfolio .item
	{
		width: 100%;
	}
	.portfolio .item i
	{
		opacity: 1;
	}
}