/**
* CSS
* @version 5
* @author Ozhan Binici
*/

::selection {
	background: #501f7e;
	color:#FFFFFF;
}

*:focus {
	outline:none;
}

sup {
	line-height:0.6em;
}

html {
	width:100%;
	height:100%;
	padding:0px;
	margin:0px;
	background-color:#FFFFFF;
	overflow-x:hidden;
	-webkit-overflow-scrolling:touch;
}

body {
	width: 100%;
	height: auto;
	padding: 0px;
	margin: 0px;
	background-color: #ffffff;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
	-webkit-font-smoothing: antialiased;
	font-size: 16px;
	line-height: 24px;
	font-family: turnip, serif;
	font-weight: 400;
	overflow-x: hidden;
	-webkit-text-size-adjust: none;
	color: #000000;
	min-height: 100vh;
	height:100vh;
	background: linear-gradient(0deg, rgba(112,224,0,1) 0%, rgba(123,44,191,1) 40%, rgba(123,44,191,1) 60%, rgba(255,72,0,1) 100%);
	background-attachment: scroll;
}

/* COMMON ITEMS */

.container {
	width:100%;
	max-width:1700px;
	margin:0 auto;
	display:flex;
	padding-left:30px;
	padding-right:30px;
}


div {
	position:relative;
	display:block;
}

header .container {
	display:flex;
	align-items:flex-start;
}

header .logo-menu {
	width:40%;
	display:flex;
	flex-wrap:wrap;
	margin-top:38px;
}

header a#logo {
	width:100%;
	height:auto;
	display:block;
	margin-bottom:13px;
}

header a#logo h1 {
	width:100%;
	display:block;
	font-size:26px;
	line-height:32px;
	color:#FFFFFF;
	font-family:turnip, serif;
	font-weight:500;
	margin-bottom:8px;
}

header a#logo h2 {
	width:100%;
	display:block;
	font-size:34px;
	line-height:38px;
	color:#FFFFFF;
	font-family: maple-web, sans-serif;
	font-weight:500;
}


header nav {
	width:100%;
	display:none;
}

header.expanded nav {
	display:block;
}

header nav ol {
	display:flex;
	flex-wrap:wrap;
	width:100%;
}

header nav li {
	margin-right:10px;
	margin-bottom:10px;
}

header nav li.break {
	flex-basis: 100%;
	height: 0px;
	margin:0px;
}

header nav a,
header a#lang-switch {
	font-family: maple-web, sans-serif;
	font-weight:500;
	color:#000000;
	background-color:#FFFFFF;
	font-size:20px;
	line-height:24px;
	padding:4px 8px 2px 8px;
	display:block;
	margin:0px;
	
	
}

header nav a {
	white-space:pre-wrap;
	box-shadow:0 0 0 #FFFFFF;
	-webkit-box-decoration-break:clone;
	box-decoration-break:clone;
	display:inline;
}


header a#lang-switch  {
	position:relative;
	display:block;
	background-color:#000000;
	color:#FFFFFF;
	width:45px;
	text-align:center;
	height:30px;
	margin-right:10px;
	margin-bottom:10px;
}

header a#instagram  {
	position:relative;
	display:block;
	background-color:#000000;
	color:#FFFFFF;
	width:45px;
	text-align:center;
	height:30px;
	padding:5px;
	margin-bottom:10px;
}

header a#instagram img {
	width:20px;
	height:20px;
	display:inline-block;
	margin:0px;
	padding:0px;
}

header nav a.active,
header nav a:hover,
header a#lang-switch:hover,
header a#instagram:hover {
	background-color:#CCCCCC;
}

header nav a.inactive {
	/*opacity:0.5;*/
	color:#CCCCCC;
	pointer-events:none;
}

header div.title-description {
	width:40%;
	display:flex;
	margin-top:43px;
}
header div.title {
	width:50%;
	color:#000000;
	font-size:15px;
	line-height:17px;
	font-family: maple-web, sans-serif;
	font-weight:500;
}

header div.description {
	width:50%;
	color:#000000;
	font-size:15px;
	line-height:17px;
	font-family: maple-web, sans-serif;
	font-weight:400;
}

header div.description.mobile {
	display:none;
}

header .venedik-bienali-logo {
	width:20%;
	padding-top:16px;
	padding-top:14px;
	padding-left:15px;
	padding-right:50px;
}
header .venedik-bienali-logo img {
	max-width:160px;
	max-width:205px;
	width:100%;
	height:auto;
	display:block;
	margin-left:72px;
	margin-left:auto;
	margin-right:auto;
}

.menu-toggle {
	position:relative;
	display:block;
	border:0px;
	pointer-events:auto;
	width: 45px;
	height: 30px;
	margin:0px;
	padding:0px;
	cursor: pointer;
	background-color:#000000;
	margin-right:10px;
	margin-bottom:10px;
}

.menu-toggle span {
	display: block;
	position: absolute;
	height: 2px;
	width: 25px;
	background: #FFFFFF;
	border-radius: 0px;
	opacity: 1;
	left: 10px;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: rotate .25s ease-in-out;
	-moz-transition: rotate .25s ease-in-out;
	-o-transition: rotate .25s ease-in-out;
	transition: rotate .25s ease-in-out;
}

.menu-toggle:hover span {
	background:#000000;
}

.menu-toggle span:nth-child(1) {
	top: 7px;
}

.menu-toggle span:nth-child(2), .menu-toggle span:nth-child(3) {
	top: 14px;
}

.menu-toggle span:nth-child(4) {
	top: 21px;
}

.expanded .menu-toggle span:nth-child(1) {
	top: 14px;
	width: 0%;
	left: 50%;
}



.expanded .menu-toggle span:nth-child(2) {
	-webkit-transform: rotate(34deg);
	-moz-transform: rotate(34deg);
	-o-transform: rotate(34deg);
	transform: rotate(34deg);
	width:50px;
	left:-2px;
}

.expanded .menu-toggle span:nth-child(3) {
	-webkit-transform: rotate(-34deg);
	-moz-transform: rotate(-34deg);
	-o-transform: rotate(-34deg);
	transform: rotate(-34deg);
	width:50px;
	left:-2px;
}

.expanded .menu-toggle span:nth-child(4) {
	top: 13px;
	width: 0%;
	left: 50%;
}

.menu-toggle:hover {
	background-color:#CCCCCC;
	outline: none;
}

.menu-toggle:focus {
	outline:none;
}

.expanded .menu-toggle,
.expanded .menu-toggle:hover,
.expanded .menu-toggle:focus {
	background-color:#CCCCCC;
	background:transparent;
}




main {
	margin-top:60px;
	margin-bottom:60px;
}

header.expanded + main {
	margin-top:10px;
}

main .container {
	/*
	display:flex;
	flex-wrap:wrap;
	*/
	/*
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-template-rows: masonry;
	*/
	display:block;
}

main .box {
	display:block;
	border-left:4px solid #FFFFFF;
	width:auto;
	padding-right:50px;
	color:#FFFFFF;
	padding-left:13px;
	display:flex;
	flex-direction:column;
	margin-bottom:50px;
	width:20%;
}

main .box.hidden {
	display:none;
}

main .grid.columns-5 .box {
	width:20%;
}

main .grid.columns-4 .box {
	width:25%;
}

main .grid.columns-3 .box {
	width:33.33%;
}

main .grid.columns-2 .box {
	width:50%;
}

main .grid.columns-1 .box {
	width:100%;
}

main .box:hover {
	border-left:4px solid #CCCCCC;
	color:#CCCCCC;
}

main .box h2 {
	font-size:26px;
	line-height:32px;
	font-family:turnip, serif;
	font-weight:500;
	padding-bottom:20px;
}

main .box h3 {
	font-size:13px;
	line-height:16px;
	font-family:turnip;
	font-weight:500;
	padding-top:5px;
	padding-bottom:20px;
	text-transform:uppercase;
}

main .box h4 {
	font-size:20px;
	line-height:24px;
	font-family:turnip;
	font-weight:300;
	font-style:italic;
	padding-bottom:30px;
}

main .box p {
	font-size:19px;
	line-height:23px;
	font-family: maple-web, sans-serif;
	font-weight:400;
}

main .box h5 {
	padding-top:30px;
	margin-top:auto;
	font-family:turnip;
	font-weight:300;
	font-size:20px;
	line-height:24px;
}

main .box .arrow {
	display:block;
	width:21px;
	height:1px;
	background-color:#FFFFFF;
	margin-top:15px;
	margin-bottom:15px;
}

main .box .arrow:after {
	content:" ";
	display:block;
	position:absolute;
	top:-6px;
	left:21px;
	width: 0;
	height: 0;
	border-top: 7px solid transparent;
	border-bottom: 7px solid transparent;
	border-left: 9px solid #FFFFFF;
}

main .box:hover .arrow {
	background-color:#CCCCCC;
}

main .box:hover .arrow:after {
	border-left: 9px solid #CCCCCC;
}

main .box.destekciler-box {
	display:none;
}

main .box.destekciler-box.for-5-columns {
	display:block;
}
main .box.destekciler-box.for-5-columns.hidden {
	display:none;
}

main .box .logos {
	position:relative;
	display:block;
	margin-bottom:0px;
	margin-top:28px;
	
	color:#000000;
	text-align:center;
	font-size:14px;
	line-height:17px;
	font-family: maple-web, sans-serif;
	font-weight:400;
}

main .box:hover .logos {
	color:#CCCCCC;
}

main .box .logos img {
	width:auto;
	height:100%;
	display:block;
	margin:0 auto;
}

main .box .logos #iksv {
	height:56px;
	width:auto;
	margin-top:11px;
	margin-bottom:26px;
}

main .box .logos #tc-kultur-ve-turizm-bakanligi {
	height:64px;
	width:auto;
	margin-top:6px;
	margin-bottom:22px;
}

main .box .logos #tc-disisleri-bakanligi {
	height:57px;
	width:auto;
	margin-top:6px;
	margin-bottom:30px;
}

main .box .logos #schuco {
	height:15px;
	width:auto;
	margin-top:11px;
	margin-bottom:20px;
}

main .box .logos #vitra {
	height:18px;
	width:auto;
	margin-top:23px;
	margin-bottom:19px;
}

main .grid.columns-4,
main .grid.columns-3,
main .grid.columns-2,
main .grid.columns-1 {
	display:none;
}








#content {
	max-width:1350px;
	margin:0px auto;
	background-color:#FFFFFF;
	padding-bottom:50px;
	margin-bottom:-60px;
}

#content .columns.double {
	width:100%;
	display:flex;
	max-width:740px;
	margin:0 auto;
}

#content .columns.double .column {
	width:100%;
	max-width:350px;
}

#content .columns.double .column:first-child {
	margin-right:20px;
	align-self: flex-start;
	position: -webkit-sticky;
	position: sticky;
	top: 0px;
}

#content .columns.double .column:nth-child(2) {
	margin-left:20px;
}

figure {
	width:100%;
	height:auto;
	margin-bottom:30px;
	margin-left:auto;
	margin-right:auto;
}

figure:has(img.large) {
	max-width:1000px;
}
figure:has(img.text) {
	max-width:700px;
}

figure img {
	width:100%;
	height:auto;
	margin:0px;
	display:block;
}

figcaption {
	font-family:maple-web, sans-serif;
	font-size:17px;
	line-height:21px;
	font-weight:400;
	margin-top:12px;
	padding:0 20px;
}

#content h1 {
	font-size:60px;
	line-height:70px;
	font-family:maple-web, sans-serif;
	font-weight:500;
	padding:20px 20px 0px 20px;
	max-width:740px;
	margin:0px auto 25px auto;
	position:relative;
	display:block;
}

#content h1:first-child {
	padding-top:50px;
}

#content h2 {
	font-family: turnip, serif;
	font-size: 26px;
	line-height: 32px;
	padding:30px 20px 0px 20px;
	max-width:740px;
	margin:0px auto 30px auto;
	font-weight:500;
}

#content h3 {
	font-size:17px;
	line-height:21px;
	font-family:turnip;
	font-weight:500;
	padding:0px 20px;
	max-width:740px;
	margin:0px auto 5px auto;
	text-transform:uppercase;
}

#content h3:first-child {
	padding-top:50px;
}

#content p {
	font-family:turnip, sans-serif;
	font-size:23px;
	line-height:30px;
	font-weight:300;
	width:100%;
	max-width:740px;
	padding:0 20px;
	margin:0 auto 30px auto;
	position:relative;
	display:block;
}

#content p strong {
	font-weight:500;
}

#content p:has(iframe) {
	max-width:none;
	padding:0px;
	height:600px;
	/*filter:grayscale(1);*/
}

#content p:has(iframe[src^="https://www.youtube"]) {
	height:auto;
	position:relative;
	max-width:1000px;
}

#content p:has(iframe[src^="https://www.youtube"]):before {
	content:" ";
	display:block;
	position:relative;
	top:0px;
	left:0px;
	width:100%;
	padding-top:56.25%;
}

#content p:has(iframe[src^="https://www.youtube"]) iframe {
	width:100%;
	height:100%;
	position:absolute;
	top:0px;
	left:0px;
}

#content p:has(iframe[src^="https://open.spotify.com"]) {
	position:relative;
	max-width:1000px;
	height:auto;
	margin:0 auto 30px auto;
}

#content p a {
	color:#7b2cbf;
	text-decoration:underline;
}

#content p a:hover {
	color:#CCCCCC;
}

#content p a[href^="#ref"] {
	color: #7b2cbf;
	font-size: 0.8em;
	text-decoration: none;
	vertical-align: super;
	line-height: 0.8em;
	display: inline-block;
	position: relative;
}

#content p a[href^="#ref"]:hover {
	color:#CCCCCC;
}

#content cite {
	font-family: maple-web, sans-serif;
	font-size: 17px;
	line-height: 21px;
	font-weight: 400;
	display:block;
	padding-top:15px;
}

#content p:has(cite){
	margin-bottom:12px;
}

#content p:has(cite) + p:has(cite){
	margin-top:-15px;
}

#content p:has(img.large){
	max-width:1000px;
	padding:0px;
}

#content p:has(img.full){
	max-width:none;
	padding:0px;
}

#content p img {
	width:100%;
	height:auto;
	position:relative;
	display:block;
}


#content p.meta {
	font-size:20px;
	line-height:24px;
	font-style:italic;
	padding-top:20px;
}


#content table {
	width:100%!important;
	height:auto!important;
	margin-bottom:15px;
	box-sizing:border-box;
	border:0px;
	margin-left:auto;
	margin-right:auto;
	
	width:calc(100% + 30px)!important;
	margin-left:-15px;
	margin-right:-15px;
}

#content table + table {
	margin-top:-30px;
}

#content figure + table {
	margin-top:-15px;
}

#content table.large {
	max-width:1030px!important;
	margin-left:auto;
	margin-right:auto;
}

#content table.text {
	max-width:730px!important;
	margin-left:auto;
	margin-right:auto;
}

#content table tr {
	display:flex;
	width:100%!important;
	box-sizing:border-box;
	border:0px;
	height:auto!important;
}

#content table tr td {
	display:table-cell;
	flex-grow:1;
	box-sizing:border-box;
	border:0px;
	padding:15px;
	width:100%!important;
	height:auto!important;
	flex-grow:1;
	
	font-family: maple-web, sans-serif;
	font-size: 17px;
	line-height: 21px;
	font-weight: 400;
}


#content table tr td strong {
	font-weight: bold;
}


#content table tr td figure,
#content table tr td img {
	width:100%;
}
#content table tr td figure {
	margin-bottom:0px;
}

#content .share {
	display:flex;
	width:100%;
	max-width:760px;
	padding-left:30px;
	padding-right:30px;
	margin-left:auto;
	margin-right:auto;
	margin-bottom:10px;
}

#content .share li {
	width:30px;
	margin-right:20px;
}

#content .share li a {
	position:relative;
	display:block;
	width:100%;
	height:auto;
}

#content .share li a svg {
	position:relative;
	display:block;
	width:100%;
	height:auto;
}

#content .share li a:hover svg rect {
	fill:#CCCCCC;
}

#content p .reference {
	display:inline-block;
	position:relative;
}


#content p .reference .tooltip {
	display:none;
	position: absolute;
	bottom: 35px;
	left: -15px;
	z-index: 3;
	border-style: solid;
	background-color: #CCCCCC;
	width:300px;
	padding:13px 15px;
	color:#000000;
	font-family: maple-web, sans-serif;
	font-size: 17px;
	line-height: 21px;
	font-weight: 400;
	
}

#content p .reference .tooltip a {
	text-decoration:none;
}

#content p .reference .tooltip a:hover {
	text-decoration:underline;
	color: #7b2cbf;
}

#content p .reference:hover .tooltip {
	display:block;
	display:none;
}


#content .logos {
	position:relative;
	display:flex;
	flex-wrap:wrap;
	margin-bottom:30px;
	margin-top:93px;
	max-width:1200px;
	margin-left:auto;
	margin-right:auto;
	justify-content:center;
}

#content .logos li {
	width:20%;
}

#content .logos li.break {
	display:none;
}

#content .logos li .inner-logos {
	position:relative;
	display:flex;
	flex-wrap:nowrap;
	margin:0px;
}

#content .logos li h4 {
	width:100%;
	display:block;
	color:#000000;
	text-align:center;
	font-size:14px;
	line-height:17px;
	font-family: maple-web, sans-serif;
	font-weight:400;
}

#content .logos li a {
	width:auto;
	position:relative;
	display:block;
	margin-left:auto;
	margin-right:auto;
	padding:10px;
}
#content .logos li.double a {
	margin-right:4px;
}
#content .logos li.double a + a {
	margin-left:0px;
	margin-right:auto;
}
#content .logos li a + a:before {
	content:" ";
	position:absolute;
	width:1px;
	height:32px;
	top:6px;
	left:-1px;
	background-color:#000000;
}

#content .logos li a:hover {
	opacity:0.5;
}

#content .logos img {
	width:auto;
	height:100%;
	display:block;
	margin:0 auto;
}

@media (max-width:1700px){
	main .box {
		width:25%;
	}
	
	header .logo-menu {
		width:50%;
		padding-right:30px;
	}
	
	header div.title-description {
		width:25%;
		flex-wrap:wrap;
	}
	header div.title {
		width:100%;
	}
	
	header div.description {
		width:100%;
		padding-top:15px;
	}
	header .venedik-bienali-logo {
		width:25%;
	}
	
	main .box.destekciler-box.for-5-columns {
		display:none;
	}
	
	main .box.destekciler-box.for-4-columns {
		display:block;
	}
	main .box.destekciler-box.for-4-columns.hidden {
		display:none;
	}
}

@media (max-width:1280px){
	main .box {
		width:33.33%;
	}
	
	header .logo-menu {
		width:33.33%;
		padding-right:30px;
	}
	header .venedik-bienali-logo {
		width:33.33%;
	}
	
	header div.title-description {
		width:33.33%;
	}
	
	header nav li.break {
		display:none;
	}
	/*
	header nav {
		width:66.66%;
		order:1;
		padding-right:0px;
	}
	header .container {
		flex-wrap:wrap;
	}
	
	
	
	header div.title {
		width:100%;
		order:3;
		padding-top:10px;
	}
	header div.title br {
		display:none;
	}
	
	header div.description {
		position:relative;
		top:auto;
		left:auto;
		width:100%;
		order:4;
		padding-top:5px;
	}
	
	header div.description br {
		display:none;
	}
	*/
	
	main {
		margin-top:40px;
		margin-bottom:40px;
	}
	
	main .box.destekciler-box.for-4-columns {
		display:none;
	}
	
	main .box.destekciler-box.for-3-columns {
		display:block;
	}
	
	main .box.destekciler-box.for-3-columns.hidden {
		display:none;
	}
}

@media (max-width:1100px){
	#content .logos li {
		width:33.33%;
	}
	#content table.large {
		margin-left:-15px;
		margin-right:-15px;
		max-width:none!important;
	}
	figure:has(img.large) {
		max-width:none;
	}
}

@media (max-width:830px){
	main .box {
		width:50%;
	}
	header .logo-menu {
		width:50%;
	}
	header .venedik-bienali-logo {
		width:130px;
		padding-left:0px;
		padding-right:0px;
	}
	header .venedik-bienali-logo img {
		margin-left:0px;
	}
	header div.title-description {
		width:calc(50% - 130px);
		padding-right:30px;
	}
	
	/*
	header div.title-description br {
		display:none;
	}
	*/
	main .box.destekciler-box.for-3-columns {
		display:none;
	}
	
	main .box.destekciler-box.for-2-columns {
		display:block;
	}
	main .box.destekciler-box.for-2-columns.hidden {
		display:none;
	}
}

@media (max-width:805px){
	#content table.text {
		margin-left:-15px;
		margin-right:-15px;
		max-width:none!important;
	}
	figure:has(img.text) {
		max-width:none;
	}
}


@media (max-width:720px){
	#content .logos li {
		width:50%;
	}
	#content .logos li.break {
		 flex-basis: 100%;
		 display:block;
	}
}

@media (max-width:620px){
	main .box {
		width:100%;
		padding-right:0px;
	}
	
	header .container {
		flex-wrap:wrap;
	}
	header div.title-description {
		width:calc(100% - 130px);
		max-width:200px;
		order:1;
		margin-top:34px;
		padding-right:20px;
	}
	
	header div.description.desktop {
		display:none;
	}
	header div.description.mobile {
		display:block;
	}
	
	header div.title-description.lang-tr {
		max-width:180px;
	}
	
	header div.description {
		padding-top:2px;
	}
	
	header .venedik-bienali-logo {
		order:2;
		margin-left:auto;
	}
	
	header .logo-menu {
		width:100%;
		order:3;
		padding-right:0px;
	}
	
	
	#content h1 {
		font-size: 26px;
		line-height: 31px;
		padding-left: 15px;
		padding-right: 15px;
		padding-top:10px;
		margin-bottom: 20px;
	}
	
	#content h1:first-child {
		padding-top:40px;
	}
	
	#content h2 {
		font-size: 22px;
		line-height: 26px;
		padding-left: 15px;
		padding-right: 15px;
		margin-bottom: 20px;
	}
	
	#content p {
		font-size: 18px;
		line-height: 23px;
		padding-left: 15px;
		padding-right: 15px;
		margin-bottom: 23px;
	}
	#content p.meta {
		font-size: 13px;
		line-height: 15px;
		font-style: italic;
		padding-top: 10px;
	}
	#content .share {
		padding-left:15px;
		padding-right:15px;
		margin-bottom:-20px;
	}
	
	.container {
		padding-left:20px;
		padding-right:20px;
	}
	
	header .logo-menu {
		margin-top:20px;
	}
	
	main {
		margin-top:30px;
	}
	
	main .box {
		margin-bottom:30px;
	}
	
	#content .columns.double {
		display:block;
	}
	#content .columns.double .column:first-child {
		margin-right:auto;
		position:relative;
		top:auto;
	}
	#content .columns.double .column:nth-child(2) {
		margin-left:0px;
	}
}

@media (max-width:460px){
	#content .logos li {
		width:100%;
	}
	
	#content .logos {
		margin-bottom:0px;
	}
	#content table tr {
		flex-wrap:wrap;
	}
}