@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');

html {
	-webkit-font-smoothing: antialiased;
	scroll-behavior: smooth;
	scroll-padding-top: 0px;
}

body {
	margin: 0;
	padding: 0;
	background: #000;
	font-family: 'Montserrat', sans-serif;

}

*:focus {
	outline: none !important;
}

body::-webkit-scrollbar {
	width: 4px;
}

body::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

body::-webkit-scrollbar-thumb {
	background-color: #F0B31D;
	outline: 1px solid #F0B31D;
	border-radius: 10px;
}

.top-fullscreen {
	position: relative;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: space-between;

}

header {
	display: flex;
	justify-content: center;
	width: 100%;
	padding: 40px 0 40px 0;
}

.top-reveal-section {
	display: flex;
	justify-content: center;
	width: 100%;
	padding: 0px 0 40px 0;
}

.timer-date {
	float: left;
	width: 100%;
	text-align: center;
	color: #666666;
	font-weight: 600;
	font-size: 29px;
	padding-bottom: 20px;
}

.clear {
	margin: 0;
	padding: 0;
	clear: both;
}

.main {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	clear: both;
}

.countdown {

	width: 100%;
	float: left;
	text-align: center;
	margin-top: -50px;

}

.countdown .day,
.countdown .hour,
.countdown .min,
.countdown .sec {
	color: #fff;
	padding: 0 20px;
	text-align: center;
	display: inline-block;
	width: 60px;
}

.countdown .day .num,
.countdown .hour .num,
.countdown .min .num,
.countdown .sec .num {
	display: block;
	font-size: 48px;
	line-height: 1em;
	font-weight: 300;
}

.countdown .day .word,
.countdown .hour .word,
.countdown .min .word,
.countdown .sec .word {
	display: block;
	font-size: 16px;
	color: #fff;
}

.evolution-section {
	float: left;
	width: 100%;
	background-image: url("../images/q-bg-logo.jpg");
	background-position: right 50px;
	background-repeat: no-repeat;
	padding: 100px 0 140px 0;
}

.evolution-section .title {
	font-size: 58px;
	font-weight: 600;
	background: #0B1422;
	background: linear-gradient(to top, #06090c 10%, #666666 90%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	padding-bottom: 50px;
}

.history-main {
	margin: 0 auto;
	width: 100%;
}

.history-img {
	float: left;
	width: 125px;
	margin-right: 80px;
}

.history-text {
	float: left;
	width: 619px;
}

.history-text ul {
	margin: 0;
	padding: 0;
}

.history-text ul li {
	float: left;
	width: 100%;
	list-style: none;
	font-size: 20px;
	color: #666;
	font-weight: 400;
	padding-bottom: 56px;
}

.history-text ul li span {
	color: #edb01d;
	font-weight: 600;
}

.q-story-section {
	float: left;
	width: 100%;
	background: #181818;
	padding-bottom: 100px;
}

.q-story-section .title {
	width: 100%;
	color: #666666;
	font-size: 48px;
	font-weight: 700;
	text-align: center;
	padding: 40px 0 90px 0;
}

.q-story-section .image-row {
	display: flex;
	justify-content: center;
	justify-content: space-around;

}

.q-story-image-box {
	position: relative;
}

.q-story-image-box img {
	-webkit-box-shadow: 8px 8px 24px -17px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: 8px 8px 24px -17px rgba(0, 0, 0, 0.75);
	box-shadow: 8px 8px 24px -17px rgba(0, 0, 0, 0.75);
	transition: .5s ease;
	border-radius: 30px;
}

/*.q-story-image-box:hover img {
	webkit-filter: blur(4px);
	filter: blur(4px);
}

.q-story-image-box:hover .q-story-image-box-text {
	webkit-filter: blur(4px);
	filter: blur(4px);
}
*/

.q-story-image-box .q-story-image-box-text {
	position: absolute;
	left: 20px;
	bottom: 20px;
	font-size: 38px;
	color: #e6e7e8;
	font-weight: 600;
	line-height: 40px;
	transition: .5s ease;
}

.q-story-image-box .q-story-image-box-text span {
	font-weight: 300;
	color: #f0b01b;
}

.q-story-image-box .q-story-link {
	position: absolute;
	left: 0;
	right: 0;
	font-size: 16px;
	color: #fff;
	top: 50%;
	display: none;
	transition: .5s ease;
	width: 100%;
	text-decoration: none;
	text-align: center;
	background: #f0b01b;
	padding: 10px;
	width: 100px;
	margin: 0 auto;
}

.q-story-image-box:hover .q-story-link {
	display: block;
	webkit-filter: blur(0px);
	filter: blur(0px);
	transition: .5s ease;

}

@media only screen and (max-width:1080px) {
	.top-fullscreen {
		height: 95vh;
	}

	header {
		padding: 25px 0 15px 0;
	}

	header img {
		width: 50%;
	}

	.top-reveal-section img {
		width: 90%;
	}

	.timer-date {
		font-size: 20px;
		padding-bottom: 15px;
	}

	.countdown .day,
	.countdown .hour,
	.countdown .min,
	.countdown .sec {
		font-size: 36px !important;
		width: 50px;
	}


	.evolution-section .title {
		font-size: 36px;
		text-align: center;
		padding-bottom: 30px;
	}

	.evolution-section {
		background-image: inherit;
		padding-bottom: 15px;
		padding-top: 30px;
	}

	.history-img {
		text-align: center;
		margin-right: 0px;
		width: 100%;
		padding-bottom: 30px;
	}

	.history-text {
		width: 96%;
		padding: 0 2%;
		line-height: 22px;
	}

	.history-text ul li {
		font-size: 16px;
		padding-bottom: 20px;
		line-height: 22px;
	}

	.history-text ul li br {
		display: none;
	}

	.q-story-section .title {
		padding: 20px 0 20px 0;
	}

	.q-story-section .image-row {
		display: block;
	}

	.q-story-image-box {
		margin-bottom: 15px;
		text-align: center;
	}

	.q-story-image-box .q-story-image-box-text {
		left: 50px;
		bottom: 40px;
		font-size: 24px;
		line-height: 25px;
		text-align: left;
	}
}