* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
}body, html {
	font-family: 'KoHo';
    font-style: normal;
	font-size: 17px;
	text-decoration: none;
	font-weight: normal;
	color: #383d45;
	width: 100%;
	background-color: #FFF;
	overflow: hidden;
	cursor: none;
}#win {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	height: 100VH;
}#win .item {
	position: relative;
	overflow: hidden;
}#win .item .mask {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 1;
}#win .item .mask:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: rgba(50,50,50,.9);
	z-index: 1;
	transition: 600ms all;
}#win .item .mask .bg {
	position: relative;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: blur(4px) grayscale(100%);
	-webkit-filter: blur(4px) grayscale(100%);
	transition: 400ms all;
}#win .item .core {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 2;
	display: flex;
	justify-content: center;
	align-items: center;
}#win .item .core .logo {
	position: relative;
	width: calc(25VW - 200px);
	height: auto;
	border: 6px solid rgba(235, 103, 37, 0);
	border-radius: 12px;
	padding: 14px;
	transition: 400ms all;
	display: block;
	margin: 0 auto;
}#win .item .core .giris {
	position: relative;
	display: block;
	background-color: rgba(235, 103, 37, 1);
	width: min-content;
	height: auto;
	padding: 10px 24px;
	margin: 0 auto;
	font-family: 'KoHo';
	font-weight: bold;
	color: #FFF;
	text-decoration: none;
	font-size: 18px;
	letter-spacing: 1px;
	opacity: 0;
	transition: 400ms all;
	cursor: none;

	position: absolute;
	bottom: 10%;
	left: 50%;
	transform: translateX(-50%);
}#win .item:hover .mask:after {
	opacity: 0;
}#win .item:hover .mask .bg {
	filter: blur(0px) grayscale(0%);
	-webkit-filter: blur(0px) grayscale(0%);
}#win .item:hover .core .logo {
	/* border: 6px solid rgba(235, 103, 37, 1); */
}#win .item:hover .core .giris {
	opacity: 1;
}#win .item .ic {
	position: relative;
	padding-left: 30px;
	padding-top: 30px;
	height: 150px;
	transition: 400ms all;
}#win .item .ic .madde {
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 16px;
	color: #FFF;
	font-weight: normal;
}#win .item .ic .madde img {
	position: relative;
	margin-right: 10px;
}#win .item:hover .ic {
	opacity: 0;
}

#cursor {
	position: absolute;
	width: 32px;
	height: 32px;
	left: -100px;
	top: -100px;
	border-radius: 50%;
	background-color: #eb6725;
	opacity: 50%;
	z-index: 10;
	border: 1px solid #FFF;
}

@media only screen and (max-width: 900px) {
	#win {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 1fr 1fr;
		height: calc(100VH - 60px);
	}#win .item .ic .madde {
		font-size: 12px;
	}#win .item .core {
		width: 100%;
	}#win .item .core .logo {
		width: 90%;
	}
}