:root {
	--c1: #de1921;
}
* {
    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: 'Poppins', sans-serif;
    font-style: normal;
	font-size: 17px;
	text-decoration: none;
	font-weight: normal;
	color: #555;
	width: 100%;
	background-color: #f5f5f5;
	opacity: 0;
	overflow: hidden;
}

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;
}.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 {
	width: 100%;
	height: 100%;
	object-fit: contain;
}.image_cover {
	width: 100%;
	height: 100%;
	object-fit: cover;
}.sw {
	width: 1400px;
	margin: auto;
}#loading {
	position: fixed;
	inset: 0;
	background-color: #f5f5f5;
	z-index: 999;
	display: flex;
	justify-content: center;
	align-items: center;
	user-select: none;
}#loading svg {
	width: 400px;
}.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;
}



/* 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;
}



.page {
    position: relative;
    background-position: center center;
    background-size: cover;
    width: 100VW;
    height: 100VH;
    display: flex;
    justify-content: center;
    align-items: center;
}


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



@media only screen and (max-width: 900px) {
	.m_fcc {
		display: flex;
		justify-content: center;
		align-items: center;
	}.m_disable {
		display: none;
	}
}