:root {
	--kirmizi: #cd181f;
}
* {
    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;
}


body, html {
	position: relative;
	font-family: 'Urbanist';
    font-style: normal;
	font-size: 17px;
	text-decoration: none;
	font-weight: normal;
	color: #7b7b7b;
	width: 100%;
	background-color: #FFF;
	overflow: hidden;
	opacity: 0;
}

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

#loading {
	position: fixed;
	inset: 0;
	z-index: 999;
	background-color: #FFF;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
}#loading svg {
	fill: transparent;
	width: 400px;
}


.border {
	border: 1px solid #FF0032;
}.relative {
	position: relative;
}.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;
}


.m_beyaz_h1 {
	position: relative;
	text-align: center;
	font-size: 14pt;
	color: #FFF;
}.m_beyaz_h1:after {
	content: "";
	position: absolute;
	width: 190px;
	height: 1px;
	background-color: #FFF;
	left: 50%;
	bottom: -20px;
	transform: translateX(-50%);
}.m_beyaz_h1:before {
	content: "";
	position: absolute;
	width: 28px;
	height: 28px;
	background-color: #FFF;
	left: 50%;
	bottom: -34px;
	transform: translateX(-50%);
	border-radius: 50%;
}


.m_kirmizi_h1 {
	position: relative;
	text-align: center;
	font-size: 14pt;
	color: var(--kirmizi);
}.m_kirmizi_h1:after {
	content: "";
	position: absolute;
	width: 190px;
	height: 1px;
	background-color: var(--kirmizi);
	left: 50%;
	bottom: -20px;
	transform: translateX(-50%);
}.m_kirmizi_h1:before {
	content: "";
	position: absolute;
	width: 28px;
	height: 28px;
	background-color: var(--kirmizi);
	left: 50%;
	bottom: -34px;
	transform: translateX(-50%);
	border-radius: 50%;
}

@media only screen and (max-width: 900px) {
	body, html {
		overflow: auto;
	}#loading svg {
		width: 50%;
	}
}