@import url('https://fonts.googleapis.com/css2?family=Teko:wght@300..700&display=swap');
:root {
	--c1: #7504c4;
}
* {
    margin: 0;
    padding: 0;
    list-style-type: none;
    box-sizing: border-box;
}

/*
::-webkit-scrollbar {
	width: 2px;
}::-webkit-scrollbar-track {
	background: #333;
}::-webkit-scrollbar-thumb {
	background: #ddd;
}::-webkit-scrollbar-thumb:hover {
	background: #333;
}::selection {
    background: #e79e4a;
    text-shadow: none;
    color: #202020;
}
*/
body, html {
	position: relative;
	font-family: "Khand", sans-serif;
    font-style: normal;
	font-size: 17px;
	text-decoration: none;
	font-weight: normal;
	color: #555;
	width: 100%;
	background-color: #FFF;
	opacity: 0;
}

a {
	text-decoration: none;
	color: inherit;
}a:hover {
	cursor: pointer;
}

.border {
	border: 1px solid #FF0032;
}.relative {
	position: relative;
}.pointer {
	cursor: pointer;
}.fcc {
	display: flex;
	justify-content: center;
	align-items: center;
}.fcl {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}.fcr {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}.fbr {
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
}.fbc {
	display: flex;
	justify-content: center;
	align-items: flex-end;
}.fbl {
	display: flex;
	justify-content: flex-start;
	align-items: flex-end;
}.fct {
	display: flex;
	justify-content: center;
	align-items: flex-start;
}.ftr {
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
}.frb {
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
}.ftc {
	display: flex;
	justify-content: center;
	align-items: flex-start;
}.image_contain {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}.image_cover {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}.sw {
	position: relative;
	max-width: 1400px;
	margin: auto;
	height: inherit;
}.tb {
	text-transform: uppercase;
}#loading {
	position: fixed;
	inset: 0;
	background-color: #FFF;
	z-index: 999;
	display: flex;
	justify-content: center;
	align-items: center;
	user-select: none;
}#loading svg {
	width: 400px;
}.page {
	height: 100VH;
}#banner {
	position: relative;
	height: 100VH;
	background-color: #CCC;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

/*

.lin {
    position: relative;
    padding-left: 10px;
}.lin:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: var(--c1);
}#wait {
	position: fixed;
	inset: 0;
	z-index: 99999;
	cursor: wait;
	display: none;
}#banner {
	position: relative;
	height: 100VH;
	overflow: hidden;
	background-color: #FFF;
}#banner .image {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 1;
}#banner .core {
	position: relative;
	z-index: 10;
}#banner .core h1 {
	position: relative;
	text-align: center;
	font-weight: 400;
	color: #FFF;
	font-size: 40px;
	letter-spacing: 4px;
	margin-bottom: 20px;
}#banner .core .text {
	position: relative;
	text-align: center;
	font-weight: 400;
	color: #FFF;
}#banner .scroll {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 150px;
	border-top: 1px solid rgba(255, 255, 255, .5);
	z-index: 11;
}#banner .scroll .piston {
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 1px;
	height: 100px;
	border-right: 1px solid rgba(255, 255, 255, .5);
	z-index: 12;
}#banner .scroll .piston .bar {
	position: absolute;
	left: 0;
	top: 0;
	width: 1px;
	height: 40px;
	background-color: #FFF;
	z-index: 13;
	animation: moveBar 1s linear infinite alternate;
}@keyframes moveBar {
    0% { top: 0; }
    100% { top: 60px; }
}#banner .scroll .piston:after {
	content: "Scroll";
	transform: rotate(-90deg);
	position: absolute;
	left: -14px;
	top: -28px;
	font-size: 12px;
	color: #FFF;
}

*/



/* INPUT */
.inp {
	position: relative;
	display: flex;
	flex-flow: column-reverse;
	width: 100%;
	margin-bottom: 20px;
}.inp:focus-within:after {
	content: "";
	position: absolute;
	bottom: 0px;
	height: 2px;
	left: 0%;
	width: 100%;
	background-color: var(--c1);
	animation: inp_aktif 300ms linear;
}@keyframes inp_aktif {
	from {
		width: 0%;
		left: 50%
	} to {
		width: 100%;
		left: 0%;
	}
}.inp label, .inp input, .inp select, .inp textarea {
	transition: all 0.2s;
	touch-action: manipulation;
	resize: none;
}.inp label {
	letter-spacing: 0.05em;
	text-align: left;
	font-size: 16px;
	font-weight: normal;
	font-family: inherit;
}.inp input, .inp select, .inp textarea {
	position: relative;
	width: 100%;
	padding: 10px 0;
	font-family: inherit;
	font-size: 14px;
	border: none;
	background: none;
	outline: none;
	border-bottom: 1px solid #ced4da;
}.inp input:focus, .inp select, .inp textarea {
	outline: 0;
	border-bottom: 1px solid #666;
}.inp input:placeholder-shown + label,
	.inp input:placeholder-shown + select,
	.inp input:placeholder-shown + textarea {
	cursor: text;
	max-width: 66.66%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	text-align: left;
	transform-origin: left bottom;
	transform: translate(0, 1.9rem) scale(1);
	opacity: 1;
}.inp input::-webkit-input-placeholder,
	.inp select::-webkit-input-placeholder,
	.inp textarea::-webkit-input-placeholder {
	opacity: 0;
	transition: inherit;
}.inp input:focus::-webkit-input-placeholder,
	.inp select:focus::-webkit-input-placeholder,
	.inp textarea:focus::-webkit-input-placeholder {
	opacity: 1;
}.inp input:not(:placeholder-shown) + label,
	.inp input:focus + label,
	.inp select:not(:placeholder-shown) + label,
	.inp select:focus + label,
	.inp textarea:not(:placeholder-shown) + label,
	.inp textarea:focus + label {
	transform: translate(0, 6px) scale(1);
	cursor: pointer;
	color: var(--c1);
}.inp input:not(:placeholder-shown) + .none,
	.inp input:focus + .none,
	.inp select:not(:placeholder-shown) + .none,
	.inp select:focus + .none,
	.inp textarea:not(:placeholder-shown) + .none,
	.inp textarea:focus + .none {
	opacity: 1 !important;
}.inp .none {
	opacity: 0 !important;
}


@media only screen and (max-width: 1200px) {
	
}

.d_disable {
	display: none;
}

@media only screen and (max-width: 900px) {
	.m_fcc {
		display: flex;
		justify-content: center !important;
		align-items: center !important;
	}.m_disable {
		display: none;
	}.page {
		height: auto;
	}#banner {
		height: auto;
		aspect-ratio: 1920 / 1080;
	}.d_disable {
		display: block;
	}.m_block {
		display: block !important;
	}
}