/*------------*/
/* !SUBHEADER */
/*------------*/
div.subheader {
	background: none;
	border: none;
	background: #f2efed;
	align-items: stretch;
	position: relative;
}
div.subheader div.content::after {
	content: "";
	width: 88%;
	height: 1px;
	position: absolute;
	bottom: 0;
	right: 0;
	background-image: linear-gradient(90deg, transparent, #ccc, #ccc, #ccc, #ccc, #ccc);
}
div.subheader div.contact {
	height: 100%;
	display: flex;
	align-items: stretch;
	border-right: 1px solid #ccc;
	margin-right: 40px;
}
div.subheader div.contact a {
	color: #666;
	border-left: 1px solid #ccc;
	display: flex;
	align-items: center;
	font-size: 14px;
	padding: 0 16px;
	margin: 0;
}
/*---------*/
/* !HEADER */
/*---------*/
header#header {
	background: #f2efed;
}
header#header div.content a.logo {
	height: 104px;
	transform: translateY(-40px);
	padding: 0;
}
header#header div.content a.logo picture img {
	filter: none;
}
/*------*/
/* !NAV */
/*------*/
nav#nav {
	margin-top: -42px;
}
nav#nav ul li a {
	color: #666;
}
nav#nav ul li a:hover,
nav#nav ul li.current-menu-item a {
	color: #000;
}
/*-----------------*/
/* !SECTION SINGLE */
/*-----------------*/
*.template-tuvsud section {
	padding: 2vh 0;
}
/*---------*/
/* !EVENTS */
/*---------*/
div.events {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}
div.events div.event_box {
	width: calc(50% - 12px);
	min-width: calc(50% - 12px);
	max-width: calc(50% - 12px);
	border: 1px solid var(--light);
	border-radius: var(--borderRadius);
	box-shadow: var(--boxShadow);
	padding: 16px 24px;
	overflow: hidden;
}
div.events div.event_box div.event_box_header.header_image {
	margin: -16px -24px 0 -24px;
	width:  calc( 100% + 48px);
	height: auto;
	position: relative;
	height: 300px;
}
div.events div.event_box div.event_box_header.header_image::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	height: 40%;
	width: 100%;
	z-index: 6;
	background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%);
}
div.events div.event_box div.event_box_header.header_image h2 {
	position: absolute;
	left: 24px;
	bottom: 0;
	z-index: 9;
	color: var(--white);
	text-shadow: 0 0 8px rgba(0,0,0,0.2);
}
div.events div.event_box div.event_box_header.header_image span.credits {
	position: absolute;
	top: 8px;
	right: 8px;
	z-index: 9;
	color: gba(0,0,0,0.8);
	background: rgba(255,255,255,0.6);
	border-radius: var(--borderRadius);
	padding: 0px 8px;
	font-size: 10px;
}
div.events div.event_box div.event_box_header.header_image picture {
	width: 100%;
	height: 100%;
	display: flex;
	position: relative;
	z-index: 1;
}
div.events div.event_box div.event_box_header.header_image picture img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media ( max-width: 768px ) {
	div.events div.event_box {
		width: 100%;
		min-width: 100%;
		max-width: 100%;
	}
}
/*----------*/
/* !SECTION */
/*----------*/
section#section-1 {
	padding-top: calc(104px + 0vh);
}
section.text div.assets {
	min-height: 40vh;
}
/*--------*/
/* !TABLE */
/*--------*/
*.template-tuvsud table {
	border: none;
}
*.template-tuvsud table td {
	padding: 6px 0;
}
*.template-tuvsud table td:first-child {
	width: 180px;
}
*.template-tuvsud table td+td {
	border-left: none;
}
*.template-tuvsud table tr+tr {
	border-color: var(--light);
}