* {
	padding: 0;
	margin: 0;
	-webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@font-face {
	font-family: Avenir;
	src: url("fonts/AvenirMediumOblique.otf") format("opentype");
}

@font-face {
	font-family: HelveticaLight;
	src: url('fonts/Helvetica-Light.woff') format('woff');
  }

body {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	font-family: HelveticaLight;
	position: relative;
	height: 100vh;
}

.heading {
	position: absolute;
	top: 50%;
	left: 50%;

	width: 400px;
	height: 400px;
	margin: -200px 0 0 -200px;

	text-align: center;
	color: #908f8f;

	-webkit-animation: heading 1000ms forwards;

	        animation: heading 1000ms forwards;
	-webkit-animation-delay: 500ms;
	        animation-delay: 500ms;
	opacity: 0;
}

.heading h1 {
	font-size: 70px;
	font-weight: 200;
}

.heading h2 {
	margin-top: -10px;
	font-size: 40px;
	font-weight: 200;
}

.heading h3 {
	font-size: 25px;
	color: rgb(19, 19, 19);
	font-weight: 200;
	margin-top: 20px;
}

.wrapper {
	position: absolute;
	bottom: 60px;
	width: 100%;
}

.container {
	max-width: 1500px;
	padding: 0 80px;
	margin: 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

.container .logo {
	font-family: Avenir;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	-webkit-animation: logo 1500ms forwards;

	        animation: logo 1500ms forwards;
	-webkit-animation-delay: 2000ms;
	        animation-delay: 2000ms;
	opacity: 0;
}

.container .logo .img {
	display: inline-block;
	padding-right: 5px;
}

.container .logo .img img {
	width: 100%;
	height: 100%;;
}

.container .logo .company {
	padding-top: 101px;
	display: inline-block;
	letter-spacing: 5px;
}

.container .logo .company .first-word {
	color: black;
}

.container .logo .company .second-word {
	color: #7e7e7e;
}

.container .social-links {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: distribute;
	    justify-content: space-around;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;

	-webkit-animation: social 2000ms forwards;

	        animation: social 2000ms forwards;
	-webkit-animation-delay: 2500ms;
	        animation-delay: 2500ms;
	opacity: 0;
}

.container .social-links .link-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.container .social-links .link-item i {
	font-size: 40px;
	color: rgb(164, 164, 164);
	margin-right: 10px;
	width: 40px;
}

.container .social-links .link-item span {
	color: rgb(156, 156, 156);
	font-size: 20px;
}

.container .social-links .link-item span a {
	color: inherit;
	text-decoration: none;
}

@media only screen and (max-width: 1200px) {
	.container {
		width: 100%;
		padding: 0 40px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		text-align: center;
		height: 100%;
	}

	.heading {
		margin: 0 auto;
		position: relative;
		top: 0;
		left: 0;
		padding-top: 40px;
	}

	.wrapper {
		height: 50vh;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}

	.container .logo {
		width: 584px;
		margin: 0 auto;
		margin-bottom: 20px;
	}
	
	.container .social-links {
		width: 370px;
		margin: 0 auto;
	}

	.container .social-links {
		height: 150px;
	}
}

@media only screen and (max-width: 700px) {
	.container {
	}

	.heading {
		/* margin-top: -300px;
		margin-left: -120px; */
		width: 240px;
		margin: 0 auto;
		position: relative;
	}

	.heading h1 {
		font-size: 50px;
	}
	
	.heading h2 {
		font-size: 30px;
	}

	.heading h3 {

	}

	.container .logo {
		width: 100%;
	}
	.container .logo .company {
		display: none;
	}

	.container .logo {
		display: block;
	}

	/*  */
	.container .social-links {
		width: 100%;
		height: 110px;
	}

	.container .social-links .link-item {
	}
	
	.container .social-links .link-item i {
		font-size: 30px;
	}
	
	.container .social-links .link-item span {
		font-size: 16px;
	}
}

@-webkit-keyframes heading {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-100px) scale(1.2);
		        transform: translateY(-100px) scale(1.2);
	}
	
	100% {
		opacity: 1;
		-webkit-transform: translateY(0px);
		        transform: translateY(0px);
	}
}

@keyframes heading {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-100px) scale(1.2);
		        transform: translateY(-100px) scale(1.2);
	}
	
	100% {
		opacity: 1;
		-webkit-transform: translateY(0px);
		        transform: translateY(0px);
	}
}

@-webkit-keyframes logo {
	0% {
		opacity: 0;
	}
	
	100% {
		opacity: 1;
	}
}

@keyframes logo {
	0% {
		opacity: 0;
	}
	
	100% {
		opacity: 1;
	}
}

@-webkit-keyframes social {
	0% {
		opacity: 0;
	}
	
	100% {
		opacity: 1;
	}
}

@keyframes social {
	0% {
		opacity: 0;
	}
	
	100% {
		opacity: 1;
	}
}