@charset "UTF-8";
@font-face {
	font-family: "Font";
	src: url("Content/Font/Avenir-Regular.ttf") format("truetype");
}

html { 
	font-family: "Nunito", calibri;
}

body { 
	margin: 0px;
	padding: 0px;
}

p {
	font-size: 16px;
	font-weight: normal;
	margin: 0px;
	padding: 0px;
}

h1 {
	font-size: 24px;
	font-weight: normal;
	margin: 0px;
	padding: 0px;
}

h2 {
	}

h3 {
	font-size: 16px;
	font-weight: normal;
	margin: 0px;
	padding: 0px;
	}

a {
	text-decoration: none;
	color: #000;
}
a:hover {
	font-weight: bold;
}

#index-button {
	position: absolute;
	bottom: 75px;
	right: 75px;
	margin-left: -75px;
	z-index: 5;
	opacity: 0.8;
	width: 10px;
}

#index-button:hover {
	opacity: 1;
}

#index-button-content {
	color: #FFF;
	padding-left: 10px;
	padding-right: 10px;
	background-color: #000;
	margin: 1px;
	float: right;
}

#index-button-content:hover {

}

#index-mute {
	position: absolute;
	bottom: 50px;
	left: 50px;
	z-index: 5;
	cursor: pointer;
}

.fullscreen-video {
    position: fixed;
    overflow: hidden;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
	z-index: 1;
}

#header {
	margin-top: 75px;
	margin-left: 75px;
	margin-right: 75px;

}

#logo {
	height: 150px;
	text-align: center;
}

#menu {
	background-color: #;
	margin-top: 75px;
	text-align: center;
}

#sub-menu {
	background-color: #;
	margin-top: 25px;
	text-align: center;
}

#content {
	background-color: #;
	padding-left: 75px;
	padding-right: 75px;
	margin-top: 75px;
	max-width: 1250px;
	margin-left: auto;
	margin-right: auto;
}

#content-txt {
	background-color: #;
}

#content-sessions {
	background-color: #;
	margin-top: 75px;
	width: 100%;
	border-top: 1px dashed black;
}

.content-sessions-info {
	padding-top: 25px;
	padding-bottom: 25px;
	border-bottom: 1px dashed black;
}

.content-sessions-info1 {
	background-color: #;
	float: left;
}

.content-sessions-info2 {
	background-color: #;
	float: right;
	text-align: right;
}

#content-gallery {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 75px;
	background-color: #;
	margin-top: 75px;
	width: 100%;
}

#content-gallery-item {
	width: 100%;
	background-color: #;
}

.content-gallery-item-img {
	background-color: #DDD;
	aspect-ratio : 1 / 1;
	width: 100%;
}
.content-gallery-item-txt {
	background-color: #;
	margin-top: 25px;
	width: 100%;
}

#footer {
	background-color: #;
	margin: 75px;
	text-align: center;
	font-size: 12px;
	font-weight: normal;
}



/* Screen less than 800px??? 1 column */
@media (max-width: 800px) {
	#content-gallery { grid-template-columns: repeat(1, 1fr); }
	#index-button { bottom: 25px; right: 25px; }
	#index-mute { bottom: 25px; left: 25px; }
}