@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Barlow:wght@100&display=swap');

html, body {
	height: 100%;
	overflow: hidden;
}

html,
body,
ul {
	font-family: 'Barlow', sans-serif;
	padding: 0;
	margin: 0;
	color: #fff;
}

.main-wrapper {
	width: 100%;
	height: 100%;
	top: 0;
	position: fixed;
	background: linear-gradient(to top, rgba(23,37,46,1) 0%, rgba(22,36,45,1) 100%);
	z-index: -1;
}

.main-wrapper .upper-wrapper {
	height: 100%;
	width: 100%;
	top: 0;
	position: absolute;
	background: linear-gradient(135deg, rgba(48,67,79,1) 0%, transparent 25%);
	z-index: 1;
}

.main-wrapper .lower-wrapper {
	width: 200%;
	height: 20%;
	bottom: -10%;
	left: -50%;
	position: absolute;
	background: #000;
	filter: blur(150px);
}

aside {
	position: fixed;
	bottom: 80px;
	z-index: 99;
}

aside ul li {
	background: #fff;
	color: black;
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 500;
	text-transform: uppercase;
	text-align: right;
	padding: 10px;
	margin: 5px 0;
	transform: translate(-75%, 0);
	transition: transform 200ms ease-in-out;
}

aside ul li.prev:after {
	content: '<';
	padding: 0 5px 0 20px;
}
aside ul li.next:after {
	content: '>';
	padding: 0 5px 0 20px;
}

aside ul li:hover {
	transform: translate(0, 0);
	transition: transform 400ms ease-in-out;
}

.content-wrapper {
	display: flex;
	align-items: center;
	height: 100vh;
	position: relative;
	transition: 1500ms ease-in-out;
}

.content-wrapper img {
	width: 100vw !important;
	height: 100vh;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 1;
	transition: opacity 1500ms ease-in-out;
	animation: popIn 2s;
}

@keyframes popIn {
0% {transform: scale(1); opacity: 0.15;}
50% {transform: scale(1); opacity: 1;}
100% {transform: scale(1); opacity: 0.15;}
}

.content-wrapper img.lighten {
	opacity: 0;
}

section {
	width: 100%;
}

.wrap-sec {
	height: 100vh;
	display: flex;
	align-items: center;
	z-index: 9;
}

article {
	width: calc(50% - 220px);
	max-width: 700px;
	padding-left: 220px;
	padding-top: 80px;
	opacity: 0;
	transition: 1200ms ease-in-out;
}

article.slick-current {
	opacity: 1;
	transition: opacity 2s ease-in-out;
	transition-delay: 400ms ease-in-out;
}

article h2 {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 50px;
	line-height: 50px;
	font-weight: 600;
	text-transform: uppercase;
	margin-top: 0;
	margin-bottom: 40px;
}

.slideOut,
.slideIn {
	opacity: 0;
	transform: translateY(-50vh);
	transition: 2s;
}


article p {
	font-size: 20px;
	line-height: 28px;
}

article p:last-of-type {
	margin-bottom: 0;
}
