.clearfix:before,
.clearfix:after {
	content: "";
	display: table;
}

.clearfix:after {
	clear: both;
}

.l-left {
	float: left;
}

.l-left a:hover{
   color: #F2AE72;
}

.l-right {
	float: right;
}

.end {
	margin-top: 30px;
	font-size: 3em;
	font-weight: bold;
	opacity: 0;
	-webkit-transform: translateY(300px);
	-ms-transform: translateY(300px);
	transform: translateY(300px);
	-webkit-transition: opacity, -webkit-transform 1s;
	transition: opacity, transform 1s;
	-webkit-transition-delay: 1s;
	transition-delay: 1s;
}

* {
	margin: 0;
	padding: 0;
	font-family: 'Alegreya Sans', Arial, sans-serif;
	box-sizing: border-box;
}

html {
    height: 100%;
    font-size: 75%;
}

html,
body {
	margin: 0;
	padding: 0;
	height: 100%;
	scroll-behavior: smooth;
	font-family: sans-serif;
}

.section {
	padding: 20px;
	box-sizing: border-box;
	text-align: center;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

body {
	color: black;
	letter-spacing: .18em;
	margin-bottom: 0;
	padding-bottom: 0;
}

a {
	text-decoration: none;
	color: white;
}

ul,
li {
	list-style-type: none;
}

h2 {
	font-size: 2.5em;
	margin-bottom: 20px;
	margin-top: 120px;
	color: white;
	text-align: center;
}

h3 {
	font-weight: 300;
	font-size: 2.8em;
}

/**Animation**/

@keyframes fadeInLeft {
  0% { opacity: 0; transform: translateX(-30px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  0% { opacity: 0; transform: translateX(30px); }
  100% { opacity: 1; transform: translateX(0); }
}

.heading-animate {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.heading-left {
  animation: fadeInLeft 0.8s ease forwards;
}

.heading-right {
  animation: fadeInRight 0.8s ease forwards;
}

.fade-in-left {
  transform: translateX(-50px);
}

.fade-in-right {
  transform: translateX(50px);
}

.fade-in-left.show, .fade-in-right.show {
  opacity: 1;
  transform: translateX(0);
}

.show {
  opacity: 1 !important;
  transform: translateX(0) !important;
}
