/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

header {
	visibility: hidden;
	overflow-y: auto;
	overflow-x: hidden;
	position: fixed;
	top: 0;
	width: 100%;
	max-height: 100%;
	background-color: rgb(255 255 255 / 98%);
	-webkit-backdrop-filter: saturate(180%) blur(16px);
	        backdrop-filter: saturate(180%) blur(16px);
	z-index: 6;
}

.top-nav {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	border-bottom: solid 1px var(--Gray10);
}

.top-nav .top-nav-logo, .top-nav .top-nav-insta {
	position: relative;
	top: 2.5px;
}

.top-nav .top-nav-logo {
	-ms-flex-item-align: baseline;
	    align-self: baseline;
	padding: 20px 0;
	margin-right: 20px;
}

.top-nav .top-nav-logo a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

#mobile-menu__checkbox {
	position: absolute;
	top: -999px;
	left: -999px;
	display: none;
	opacity: 0;
	z-index: 1;
}

#mobile-menu__checkbox:focus-visible {
	outline: none;
}

#mobile-menu__checkbox:focus-visible ~ .top-nav #mobile-menu__label svg {
	outline: -webkit-focus-ring-color auto 1px;
}

#mobile-menu__label {
	position: absolute;
	top: 0;
	right: 0;
	width: 20px;
	display: none;
	cursor: pointer;
	border: none;
	background-color: transparent;
	-webkit-tap-highlight-color: transparent;
	margin: 20px 0 0 0;
}

#mobile-menu__label label {
	position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    cursor: pointer;
	z-index: 1;
}

#mobile-menu__label svg {
	-webkit-transition: opacity var(--hover-out);
	-o-transition: opacity var(--hover-out);
	transition: opacity var(--hover-out);
}

#mobile-menu__label:hover > svg {
	opacity: 0.7;
	-webkit-transition: opacity var(--hover-in);
	-o-transition: opacity var(--hover-in);
	transition: opacity var(--hover-in);
}

#mobile-menu__label svg {
	position: relative;
	top: 2px;
	display: block;
	margin: auto;
}

.top-nav nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: baseline;
	    -ms-flex-align: baseline;
	        align-items: baseline;
}

.top-nav ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: end;
	margin-bottom: 4px;
}

.top-nav ul li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.top-nav ul a {
	text-align: right;
	font-size: var(--Body-High);
	font-weight: 200;
	color: var(--Gray50);
	padding: 20px;
	-webkit-transition: color var(--hover-out);
	-o-transition: color var(--hover-out);
	transition: color var(--hover-out);
}

.top-nav ul a:hover {
	color: var(--Black);
	-webkit-transition: color var(--hover-in);
	-o-transition: color var(--hover-in);
	transition: color var(--hover-in);
}

.top-nav .top-nav-insta {
	padding: 20px 0;
	margin-left: 20px;
}

.top-nav .top-nav-insta:focus-visible {
	outline: none;
}

.top-nav .top-nav-insta:focus-visible > svg {
	outline: -webkit-focus-ring-color auto 1px;
}

.top-nav .top-nav-insta::after {
	pointer-events: none;
	content: '';
	position: absolute;
	top: 7px;
	right: -20px;
	width: 1px;
	height: 15px;
	display: none;
	background-color: var(--Gray10);
}

.top-nav .top-nav-insta svg {
	-webkit-transition: -webkit-filter var(--hover-out);
	transition: -webkit-filter var(--hover-out);
	-o-transition: filter var(--hover-out);
	transition: filter var(--hover-out);
	transition: filter var(--hover-out), -webkit-filter var(--hover-out);
}

.top-nav .top-nav-insta:hover > svg {
	-webkit-filter: contrast(1.3);
	        filter: contrast(1.3);
	-webkit-transition: -webkit-filter var(--hover-in);
	transition: -webkit-filter var(--hover-in);
	-o-transition: filter var(--hover-in);
	transition: filter var(--hover-in);
	transition: filter var(--hover-in), -webkit-filter var(--hover-in);
}

.top-nav .contactinfo {
	display: none;
	width: 100%;
	border-top: 1px solid var(--Gray10);
	margin: 0 auto;
	padding: 20px 0;
	margin-top: 20px;
}

.top-nav .contactinfo a, .top-nav .contactinfo button {
	-webkit-transition: color var(--hover-out);
	-o-transition: color var(--hover-out);
	transition: color var(--hover-out);
}

.top-nav .contactinfo a:hover, .top-nav .contactinfo button:hover {
	color: var(--Blue);
	-webkit-transition: color var(--hover-in);
	-o-transition: color var(--hover-in);
	transition: color var(--hover-in);
}

#header-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 5;
}

.mobile-menu ~ #header-overlay.visible {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-animation: Show 400ms ease-in normal forwards;
	        animation: Show 400ms ease-in normal forwards;
}

main {
	--dynamic-padding: 105px;
	padding-top: var(--dynamic-padding);
}

.mobile-menu ~ main {
	--dynamic-padding: 100px;
}

.mobile-menu ~ main .live-container .contactinfo {
	display: none;
}

/* Change menu layout to mobile, even if the screen is bigger than 992px. */

.mobile-menu .top-nav {
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

.mobile-menu #mobile-menu__checkbox:checked + .top-nav {
	border-bottom: none;
}

.mobile-menu .top-nav-logo {
	top: 0;
	padding: 0;
	margin: 20px 0;
}

.mobile-menu #mobile-menu__label {
	display: block;
}

.mobile-menu #mobile-menu__checkbox {
	display: block;
}

.mobile-menu #mobile-menu__checkbox:checked ~ .top-nav nav ul, .mobile-menu #mobile-menu__checkbox:checked ~ .top-nav nav .contactinfo {
	display: block;
}

.mobile-menu #mobile-menu__checkbox:checked ~ .top-nav #mobile-menu__label svg {
	fill-opacity: 0;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'><!-- ! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d='M294.6 166.6L317.3 144 272 98.7l-22.6 22.6L160 210.7 70.6 121.4 48 98.7 2.7 144l22.6 22.6L114.7 256 25.4 345.4 2.7 368 48 413.3l22.6-22.6L160 301.3l89.4 89.4L272 413.3 317.3 368l-22.6-22.6L205.3 256l89.4-89.4z'/></svg>");
	background-repeat: no-repeat;
	background-size: 88%;
	background-position: center;
}

.mobile-menu nav, .mobile-menu ul {
	width: 100%;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-flow: column;
	        flex-flow: column;
}

.mobile-menu ul, .mobile-menu .contactinfo {
	display: none;
}

.mobile-menu ul {
	margin-bottom: 0;
}

.mobile-menu ul a {
	color: var(--Black);
	padding: 15px 0;
	-webkit-transition: color var(--hover-out);
	-o-transition: color var(--hover-out);
	transition: color var(--hover-out);
}

.mobile-menu ul a:hover {
	color: var(--Blue);
	-webkit-transition: color var(--hover-in);
	-o-transition: color var(--hover-in);
	transition: color var(--hover-in);
}

.mobile-menu .top-nav-insta {
	position: absolute;
	top: 0;
	right: 60px;
	padding: 0;
	margin: 20px 0 0 0;
}

.mobile-menu .top-nav-insta::after {
	display: block;
}

/* End */

@media screen and (max-width: 992px) {
	.top-nav {
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
	}
	#mobile-menu__checkbox:checked + .top-nav {
		border-bottom: none;
	}
	.top-nav .top-nav-logo {
		top: 0;
		padding: 0;
		margin: 20px 0;
	}
	#mobile-menu__label {
		display: block;
	}
	#mobile-menu__checkbox {
		display: block;
	}
	#mobile-menu__checkbox:checked ~ .top-nav nav ul, #mobile-menu__checkbox:checked ~ .top-nav nav .contactinfo {
		display: block;
	}
	#mobile-menu__checkbox:checked ~ .top-nav #mobile-menu__label svg {
		fill-opacity: 0;
		background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'><!-- ! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d='M294.6 166.6L317.3 144 272 98.7l-22.6 22.6L160 210.7 70.6 121.4 48 98.7 2.7 144l22.6 22.6L114.7 256 25.4 345.4 2.7 368 48 413.3l22.6-22.6L160 301.3l89.4 89.4L272 413.3 317.3 368l-22.6-22.6L205.3 256l89.4-89.4z'/></svg>");
		background-repeat: no-repeat;
		background-size: 88%;
		background-position: center;
	}
	.top-nav nav, .top-nav ul {
		width: 100%;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-flow: column;
		        flex-flow: column;
	}
	.top-nav ul, .top-nav .contactinfo {
		display: none;
	}
	.top-nav ul {
		margin-bottom: 0;
	}
	.top-nav ul a {
		color: var(--Black);
		padding: 20px 0;
		-webkit-transition: color var(--hover-out);
		-o-transition: color var(--hover-out);
		transition: color var(--hover-out);
	}
	.top-nav ul a:hover {
		color: var(--Blue);
		-webkit-transition: color var(--hover-in);
		-o-transition: color var(--hover-in);
		transition: color var(--hover-in);
	}
	.top-nav .top-nav-insta {
		position: absolute;
		top: 0;
		right: 60px;
		padding: 0;
		margin: 20px 0 0 0;
	}
	.top-nav .top-nav-insta::after {
		display: block;
	}
	#header-overlay.visible {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-animation: Show 400ms ease-in normal forwards;
		        animation: Show 400ms ease-in normal forwards;
	}
	.mobile-menu ~ main, main {
		--dynamic-padding: 90px;
	}
}

@media screen and (max-width: 720px) {
	header {
		border-bottom: solid 1px var(--Gray10);
	}
	header:has(> #mobile-menu__checkbox:checked) {
		border-bottom: none;
	}
	.top-nav {
		--Body-High: 16px;
		border-bottom: none;
	}
	.top-nav .top-nav-logo {
		margin: 2.5vw 0;
	}
	.top-nav .top-nav-logo svg, .top-nav .top-nav-insta svg {
		width: 14vw;
	}
	#mobile-menu__label {
		height: 26px;
		margin: 2.5vw 0 0 0;
	}
	#mobile-menu__label svg {
		top: 3.5px;
		width: 2.8vw;
		height: 85%;
	}
	.top-nav ul a {
		padding: 2vw 0;
	}
	.top-nav .top-nav-insta {
		right: 9vw;
		margin: 2.5vw 0 0 0;
	}
	.top-nav nav .top-nav-insta::after {
		top: 3.5px;
		right: -3vw;
		height: 80%;
	}
	.top-nav .contactinfo {
		text-align: left;
		--Body-High: 13px;
		padding: 2vw 0;
		margin-top: 2vw;
	}
}

@media screen and (max-width: 720px) {
	.top-nav ul {
		margin: 2vw 0 2vw 0;
	}
	.top-nav .contactinfo br {
		display: none;
	}
	.mobile-menu ~ main, main {
		--dynamic-padding: calc(12vw + 24px);
	}
}

@media screen and (max-width: 720px) and (orientation: landscape) {
	.mobile-menu ~ main, main {
		--dynamic-padding: calc(10vw + 24px);
	}
}

@media screen and (max-width: 425px) {
	.top-nav .top-nav-logo {
		margin: 3vw 0;
	}
	.top-nav .top-nav-logo svg, .top-nav .top-nav-insta svg {
		width: 77px;
		height: 24px;
	}
	#mobile-menu__label {
		margin: 3vw 0 0 0;
	}
	#mobile-menu__label svg {
		top: 5.5px;
		width: 16px;
		height: 70%;
	}
	.top-nav ul {
		margin: 1vw 0 1vw 0;
	}
	.top-nav ul a {
		width: 100%;
		text-align: left;
		--Body-High: 18px;
		font-weight: 300;
		padding: 3vw 0;
	}
	.top-nav .top-nav-insta {
		right: 15vw;
		margin: 3vw 0 0 0;
	}
	.top-nav nav .top-nav-insta::after {
		right: -5vw;
	}
	.top-nav .contactinfo {
		width: 96%;
		text-align: left;
		--Body-High: 11px;
		line-height: 1.3;
		padding: 4vw 0;
		padding-right: 4%;
		margin-top: 3vw;
	}
	.mobile-menu ~ main, main {
		--dynamic-padding: calc(12vw + 24px);
	}
}

@media screen and (max-width: 425px) and (orientation: landscape) {
	.top-nav .top-nav-logo {
		margin: 2.5vw 0;
	}
	#mobile-menu__label {
		margin: 2.5vw 0 0 0;
	}
	.top-nav .top-nav-insta {
		margin: 2.5vw 0 0 0;
	}
	.mobile-menu ~ main, main {
		--dynamic-padding: calc(10vw + 26px);
	}
}

@media screen and (max-width: 360px) {
	.top-nav .top-nav-logo svg, .top-nav .top-nav-insta svg {
		width: 75px;
	}
	.top-nav ul a {
		--Body-High: 14px;
		word-break: break-all;
		padding: 10px 0;
	}
	.top-nav .contactinfo {
		width: 90%;
		--Body-High: 10px;
		padding-right: 10%;
	}
}

@media screen and (max-width: 325px) {
	.mobile-menu ~ main, main {
		--dynamic-padding: calc(10vw + 28px);
	}
	.top-nav .contactinfo {
		width: 100%;
		--Body-High: 10px;
		padding-right: 0;
	}
}

@media screen and (max-width: 280px) {
	.top-nav .top-nav-insta {
		display: none;
	}
}