@charset "utf-8";
/* CSS Document */

.hat { 
	position: absolute;
	top: -20px;
	left: -260px;
	z-index: 1;
	width: 340px;
	height: 250px;
}

.chef { 
	position: absolute;
	top: 20px;
	right: -220px;
	z-index: 1;
	width: 346px;
	height: 500px;
}

@media(max-width:1299px){ 
	.chef {
		position: absolute;
		top: 20px;
		right: -190px;
		z-index: 1;
		width: 346px;
		height: 500px;
	}	
}

@media(max-width:1199px){ 
	.chef {
		position: absolute;
		top: 25px;
		right: -200px;
		z-index: 1;
		width: 346px;
		height: 500px;
	}	
}

@media(max-width:991px){ 
	.hat {
		position: absolute;
		top: -100px;
		left: -160px;
		z-index: 1;
	width: 340px;
	height: 250px;
	}

	.chef { 
		position: absolute;
		top: 360px;
		right: -90px;
		z-index: 1;
		width: 346px;
		height: 500px;
	}	
}

@media(max-width:768px){
	.hat {
		display: none;
	}

	.chef { 
		position: absolute;
		top: -130px;
		right: -130px;
		z-index: 1;
		width: 346px;
		height: 500px;
	}	
}

@media(max-width:768px){
	.chef { 
		display: none;
	}	
}

#master {
	background: #fff;/*var(--color-primary-middle)*/
}

	@media(max-width: 575px){
		#master {
			background: var(--color-white);
			margin-top: -70px;
		}	
	}

#master h3 {
	font-family: var(--font-header);
	font-size: 34px;
	text-align: center;
	margin-bottom: 30px;
}

.details {
	background: #fff;
	padding: 2em 1em; 
	box-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
	position: relative;
}

.details img {
	position: absolute;
}


.detail {
	background: #f5f5f5;
}

@media(max-width: 575px){
	#venue h3 {
		margin-bottom: 0;
	}
	
	.details {
		background: var(--color-white);
		padding: 0; 
		box-shadow: none;
	}

	.detail {
		background: var(--color-white);
	}	
}

.detail h4 {
	font-family: var(--font-primary);
	text-transform: uppercase;
	font-size: 19px;
	text-align: left;
	margin-bottom: 25px;
}

@media(max-width: 768px){
	.detail h4 {
		text-align: center;
		font-size: 18px;
	}
}

.details li strong {
	text-transform: uppercase;
	font-size: 15px;
	font-weight: 600;
	color: var(--color-primary);
}

@media(max-width: 768px){
	.details li strong {
		color: var(--color-body);
	}
}

.column-container {
	display: flex;
	justify-content: space-between;
}

.column {
	flex: 1;
	padding: 1em; 
	box-sizing: border-box; 
	margin: 0 1em; 
	padding: 2em 2em 0.5em 2em;
	outline: 2px double var(--color-primary);
	outline-offset: -5px;
}

@media (max-width: 991px) {
	.details {
		padding: 1em 2em; 
	}
	.column-container {
		flex-direction: column;
	}

	.column {
		margin: 1em 0;
	}
}

@media(max-width: 575px){
	.column {
		margin: 0;
	}
}

.detail ul {
	padding-left: 0;
	list-style: none;
	margin-bottom: 30px;
}

.detail ul li {
	display: flex;
	align-items: center; 
	font-size: 16px;
	line-height: 1.5em;
	margin-bottom: 20px;
}

.detail ul li i {
	padding-right: 10px;
	color: var(--color-primary);
	font-size: 1.5em;
}

.detail ul li i .clock {
	padding-right: 10px;
	color: var(--color-primary);
	font-size: 1em;
}

.detail ul li span {
	flex-grow: 1; 
}

.detail .span {
	display: block;
	font-size: 16px;
	font-style: italic;
	margin-bottom: 20px;
}

@media(max-width: 768px){
	.detail {
		text-align: center;
	}
	
	.detail ul {
		padding-left: 0;
		list-style: none;
		margin-bottom: 30px;
	}

	.detail ul li {
		display: block;
		text-align: center; 
	}

	.detail ul li i {
		display: none;
	}
	
	.detail p {
		font-size: 16px;
	}
}
	
