@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
	--c1: #13351d;
	--border: #cececf;
}
* {
    margin: 0;
    padding: 0;
    list-style-type: none;
    box-sizing: border-box;
}

body, html {
	position: relative;
	font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-style: normal;
	font-size: 17px;
	text-decoration: none;
	font-weight: normal;
	color: #555;
	width: 100%;
	background-color: #f5f5f7;
	opacity: 0;
	/* scroll-behavior: smooth; */
}

@media (prefers-color-scheme: dark) {
	body {
		position: relative;
		font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	    font-style: normal;
		font-size: 17px;
		text-decoration: none;
		font-weight: normal;
		color: #555;
		width: 100%;
		background-color: #f5f5f7;
	}
}

::selection {
	background: var(--c1);
	color: white;
}

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;
}.fbl {
	display: flex;
	justify-content: flex-start;
	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 {
	max-width: 1400px;
	margin: auto;
}#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;
}



/* 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: 1420px) {
	.sw {
		margin-left: 10px;
		margin-right: 10px;
	}
}



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