html {
	scroll-padding-top: 100px;
}

body {
	background: #fafafa;
	color: #24252a;
	font-family: 'Open Sans', sans-serif;
}

img {
	max-width: 100%;
	max-height: 100%;
}

ul {
	list-style: none;
}

/* Header */

#header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 2;
	box-shadow: 0 0 3px rgba(0, 0, 0, .25);
	background-color: #fff;
	height: 80px;
	width: 100%;
}

#header .container {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}

#header .container .languageSwitch {
	margin-right: auto;
}

#header .container #lang {
	background: #fff;
	border: 2px solid #bfa672;
	padding: 5px;
}

#header .container .logo {
	height: 60px;
	text-align: center;
}

#header .menuOpen {
	width: 30px;
	height: 50px;
	margin-left: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
}

#header .menuOpen .bar {
	width: 100%;
	height: 3px;
	background: #bfa672;
}

#header .menuOpen .bar:hover {
	background: #9d8147;
}

/* Menu */
.menuContainer {
	display: none;
	position: fixed;
	z-index: 5;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.9);
	justify-content: center;
	align-items: center;
}

.menuContainer.open {
	display: flex;
}

.menuContainer ul {
	display: flex;
	flex-direction: column;
	list-style: none;
	background: #fff;
	padding: 100px;
	box-shadow: 0 0 3px rgba(0, 0, 0, .25);
	max-height: 100vh;
	overflow-y: auto;
}

@media (max-width: 767px) {
	.menuContainer ul {
		padding: 40px;
	}
}

.menuContainer ul li {
	text-align: center;
	margin-top: 8px;
	margin-bottom: 8px;
}

.menuContainer ul li a {
	color: #bfa672;
	text-decoration: none;
	font-size: 2rem;
	line-height: 1;
}

@media (max-width: 767px) {
	.menuContainer ul li a {
		font-size: 1.5rem;
	}
}


.menuContainer ul li a:hover,
.menuContainer ul li a:focus,
.menuContainer ul li a:active {
	color: #9d8147;
	text-decoration: none;
}

/* Main */

#main {
	padding-top: 100px;
}

.section {
	background: #fff;
	margin-bottom: 60px;
	padding-bottom: 30px;
	box-shadow: 0 0 3px rgba(0, 0, 0, .25);
}

.section h3 {
	font-size: 3rem;
	padding-top: 20px;
	padding-bottom: 20px;
	font-weight: 300;
}

@media (max-width: 767px) {
	.section h3 {
		font-size: 2.5rem;
	}
}

.section .videoWrap {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 56.25%;
}

.section .videoWrap iframe {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.section .imgWrap {
	max-height: 400px;
	height: 100vh;
	display: block;
}

.section .imgWrap img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.section .textWrap {
	text-align: center;
	padding: 15px;
}

.section table {
	text-align: left;
	margin-left: auto;
	margin-right: auto;
	font-size: 1.5rem;
}

.section table td {
	padding-right: 60px;
}

.section table td:last-child {
	padding-right: 0;
}

@media (max-width: 767px) {
	.section table {
		font-size: 1.2rem;
	}

	.section table td {
		padding-right: 15px;
	}
}

.buttonRow {
	display: flex;
	justify-content: center;
	gap: 15px;
	flex-wrap: wrap;
}

.buttonRow .btn {
	background: #bfa672;
	color: #fff;
	padding: 10px 15px;
	outline: none !important;
	box-shadow: none !important;
}

.buttonRow .btn:hover,
.buttonRow .btn:focus,
.buttonRow .btn:active {
	background: #9d8147;
}

h1 {
	color: #bfa672;
	font-size: 4rem;
	padding-top: 10px;
	padding-bottom: 20px;
	font-weight: 300;
}

@media (max-width: 767px) {
	h1 {
		font-size: 2.5rem;
	}
}

/* Partner */
#partner {
	padding: 30px;
}

.partnerRow {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
}

.partnerRow img {
	width: 200px;
	height: auto;
}

/* Brandfall */
.brandfallImg {
	text-align: center;
	padding-left: 10px;
	padding-right: 10px;
}

/* abcSection */
#abc .abc {
	padding-left: 30px;
	padding-right: 30px;
}

#abc .letters {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	column-gap: 5px;
	row-gap: 0;
	padding-bottom: 30px;
}

#abc .letters button {
	background: none;
	border: none;
	outline: none;
	color: #bfa672;
	font-size: 2rem;
	text-transform: uppercase;
}

#abc .letters button.active {
	color: #24252a;
}

#abc .content .letterContent {
	display: none;
}

#abc .content .letterContent.open {
	display: block;
}

/* TV section */

.gridWrap {
	display: flex;
	justify-content: center;
}

@media (max-width: 767px) {
	.gridWrap {
		flex-direction: column;
		align-items: center;
	}
}

.tvGrid {
	display: grid;
	justify-content: center;
	/* grid-template: auto / auto auto; */
	grid-template: auto / auto;
	text-align: left;
	column-gap: 20px;
	padding-top: 20px;
	padding-bottom: 20px;
}

.tvGrid span {
	display: inline-block;
}

.tvGrid span:first-child {
	width: 50px;
}

/* Footer */

footer {
	background: #fff;
	padding-top: 20px;
	padding-bottom: 20px;
	box-shadow: 0 0 3px rgba(0, 0, 0, .25);
}

footer button {
	background: none;
	outline: none;
	border: none;
}

.footerContent {
	margin-top: 40px;
	display: none;
}

.footerContent.open {
	display: block;
}

.weatherRow {
	margin-bottom: 20px;
}

#chromecast a {
	color: inherit;
	font-weight: bold;
}

#survey {
	padding-top: 30px;
	text-align: center;
}

#survey a {
	color: #bfa672;
	text-decoration: none !important;
}

video {
	max-width: 100%;
}


.eventPopup {
	position: fixed;
	bottom: 80px;
	right: -330px;
	width: 330px;
	height: auto;
	background: rgba(0, 0, 0, 0.7);
	padding: 40px;
	text-align: left;
	z-index: 30000;
}

.eventPopup h3,
.eventPopup h4 {
	margin-top: 0;
	color: #fff;
	text-transform: uppercase;
}

.eventPopup p {
	font-size: 12px;
	text-transform: uppercase;
	color: #999999;
}

.eventPopup .closePopup {
	color: #fff;
	position: absolute;
	right: 20px;
	top: 15px;
	font-size: 20px;
	width: 16px;
	height: 16px;
	cursor: pointer;
	text-indent: -99999px;
	background: url('/img/close.png');
	background-size: cover;
}

.eventPopup .btn-default {
	font-family: 'Open Sans', Helvetica, Arial, sans-serif;
	font-size: 14px;
	font-style: normal !important;
	line-height: 17px;
	margin: 0;
	padding: 12px 35px;
	letter-spacing: 0;
	text-transform: uppercase;
	color: #ffffff !important;
	border: 0;
	background: #bfa672;
	border-radius: 0;
	text-shadow: none;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	box-shadow: none !important;
}

.eventPopup a + h3 {
	margin-top: 20px;
}

.eventPopup.closed {
	display: none;
}