@charset "UTF-8";

@font-face {
  font-family: "bodyfontregular";
  src: url("../fonts/LabilGrotesk-Regular.ttf");
}
@font-face {
  font-family: "bodyfontmedium";
  src: url("../fonts/LabilGrotesk-Medium.ttf");
}


/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* END CSS RESET */

body {
	margin:0;
	font: 1rem "bodyfontregular", sans-serif;
	color:#101029;
	background-color: #F2F3EC;
    animation: fadein 3s;
    -moz-animation: fadein 3s; /* Firefox */
    -webkit-animation: fadein 3s; /* Safari and Chrome */
    -o-animation: fadein 3s; /* Opera */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

@keyframes fadein {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-moz-keyframes fadein { /* Firefox */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-webkit-keyframes fadein { /* Safari and Chrome */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-o-keyframes fadein { /* Opera */
    from {
        opacity:0;
    }
    to {
        opacity: 1;
    }
}

a {
	font-family: "bodyfontmedium", sans-serif;
	text-decoration: none;
	color: #101029;
}
a:hover {
	text-decoration: underline;
	color: #030EEE;
	transition: all ease 0.5s;
}
a.instagram {
	line-height: 40px !important;
	background: -webkit-linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}a.instagram:hover {
	border-bottom: 2px solid currentColor;
}
svg:hover path { 
    fill: #030EEE;
    transition: all ease 0.5s;
}
h1 {
	font: 60px "bodyfontmedium", sans-serif;
	max-width: 900px;
}

header {
	display: block;
	padding: 64px 128px 0px;
	flex: : left;
}

nav {
	float: right;
	text-align: right;
	margin-top: -20px;
}

a#logo {
	width: 96px;
	height: 24px;
	display: block;
	clear: both;
}

.main {
	display: block;
	padding: 0px 128px 0px;
	position: absolute;
	top: 50%;
	transform: translateY(-48%);
}
.description {
	font: 22px "bodyfontregular", sans-serif;
	padding: 0;
	margin: 38px 0 0;
	letter-spacing:0;
	line-height: 35.2px;
	max-width: 850px;
}


/*MEDIA QUERIES START HERE*/
@media only screen and (max-width: 400px) {
}
@media only screen and (max-width: 540px) {
	.main {
		padding: 0px 32px 0px !important;
	}
	header {
		padding: 32px 32px 0px !important;
	}
}
@media only screen and (max-width: 660px) {
	.description {
		font: 18px "bodyfontregular", sans-serif;
		line-height: 25.2px;
	}
	h1 {
		font: 32px "bodyfontmedium", sans-serif !important;
	}
}
@media only screen and (max-width: 768px) {
	.description {
		font: 18px "bodyfontregular", sans-serif;
		line-height: 25.2px;
		margin: 24px 0 0;
	}
}
@media only screen and (max-width: 1024px) {
	h1 {
		font: 48px "bodyfontmedium", sans-serif;
	}
	.main {
		padding: 0px 64px 0px;
	}
	header {
		padding: 64px 64px 0px;
	}
@media only screen and (max-height: 700px) {
	.main {
		position: relative;
		top: 0;
		transform: none;
		margin: 64px 0;
	}
}
/*MEDIA QUERIES END HERE*/