/*********************************************************************/
/*DEFAULT START*/
/*********************************************************************/
html, body {
	background-color: white;
	scroll-behavior: smooth!important;
	font-family: 'Poppins', sans-serif;
	color: #231F20;
}

.hidden {
	display: none!important;
}

body {
	overflow-x: hidden;
	background-image: url('img/bg-svg-2k-long.svg');
	background-repeat: repeat;
	background-size: cover;
	background-attachment: scroll;
}

@media all and (max-width: 1920px) {
	body {
		background-image: url('img/bg-svg-fullhd-long.svg');
	}
}

@media all and (max-width: 1600px) {
	body {
		background-image: url('img/bg-svg-hdplus.svg');
	}
}

a {
	text-decoration: none;
	font-weight: 700;
	color: #231F20;
}

p {

}

h1 {
	font-size: 42px;
	line-height: 1.2;
}

h2 {
	line-height: 1.2;
}

h1, h2, h3, h4, h5 {

}

img {
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

::selection {
	color: white;
	background: #00A6BA;
}

.default-button, .wp-block-button a {
	background: #00A6BA;
	color: white!important;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.8px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	margin-bottom: 20px;
	padding-top: 8px;
	padding-bottom: 8px;
	padding-left: 12px;
	padding-right: 12px;
	transition-duration: 200ms;
}

.default-button:hover, .wp-block-button a:hover {
	text-decoration: underline;
	text-underline-offset: 4px;
	text-decoration-thickness: 2px;
	transition-duration: 200ms;
}
/*********************************************************************/
/*DEFAULT END*/
/*********************************************************************/


/*********************************************************************/
/*SCROLLBAR START*/
/*********************************************************************/
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: rgba(240,242,248,.66);
}

::-webkit-scrollbar-thumb {
  background: #606060;
}

::-webkit-scrollbar-thumb:hover {
	background: #808080;
}
/*********************************************************************/
/*SCROLLBAR END*/
/*********************************************************************/



/*********************************************************************/
/*NAVBAR START*/
/*********************************************************************/
.navbar-container {
	position: fixed;
	display: flex;
	justify-content: center;
	width: 100%;
	margin-top: 20px;
	margin-bottom: 20px;
	z-index: 4000;
}

.navbar-logo-container {
	display: flex;
	width: 180px;
}

.navbar-logo-container a {
	display: flex;
	align-items: center;
	width: 100%;
}

.navbar-logo {
	width: 100%;
	max-height: 60px;
	padding: 10px 10px 5px 20px;
}

.navbar-content {
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	width: 90%;
	height: 60px;
	border-radius: 5px;
	background-color: rgba(35, 31, 32, 0.75);
}

.navbar-section-container {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	flex: 1;
	height: 100%;
}

.navbar-section {
	height: 100%;
}

.navbar-section + .navbar-section {
	margin-left: 5px;
	padding-left: 15px;
	background-image: linear-gradient(
		to bottom,
		transparent calc(50% - 12.5px),
		white calc(50% - 12.5px),
		white calc(50% + 12.5px),
		transparent calc(50% + 12.5px)
	);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 2px 25px;
}

.navbar-search-container {
	margin-left: 5px;
	padding-left: 15px;
	background-image: linear-gradient(
		to bottom,
		transparent calc(50% - 12.5px),
		white calc(50% - 12.5px),
		white calc(50% + 12.5px),
		transparent calc(50% + 12.5px)
	);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 2px 25px;
}

@media only screen and (max-width: 1280px) {
	.navbar-section-container {
		display: none;
	}
}

.navbar-item {
	display: flex;
	align-items: center;
	height: 100%;
	color: white;
	font-weight: 700;
	letter-spacing: 0.8px;
	cursor: pointer;
}

.navbar-item p {
	color: white;
    padding-left: 15px;
    padding-right: 15px;
	height: 100%;
	padding-top: 5px;
	margin-top: 28px;
}

.navbar-item-active p {
	background: #FBF485;
	color: #231F20;
    padding-left: 15px;
    padding-right: 15px;
	height: 100%;
	padding-top: 5px;
	margin-top: 29px;
    border-radius: 5px 5px 0 0;
	text-decoration: underline;
	text-underline-offset: 10px;
	text-decoration-thickness: 2px;
	border-top: 1px solid rgba(35, 31, 32, 0.25);
	border-left: 1px solid rgba(35, 31, 32, 0.25);
	border-right: 1px solid rgba(35, 31, 32, 0.25);
}

.navbar-submenu {
	position: absolute;
	display: none;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	background: #FBF485;
	color: #231F20;
	padding: 30px;
	border-radius: 0 0 10px 10px;
	width: 800px;
	left: 0;
	margin-left: 0;
	border-bottom: 1px solid rgba(35, 31, 32, 0.25);
	border-left: 1px solid rgba(35, 31, 32, 0.25);
	border-right: 1px solid rgba(35, 31, 32, 0.25);
}

@media only screen and (max-width: 1280px) {´
	.navbar-item-active p {
		border-top: initial;
		border-left: initial;
		border-right: initial;
	}

	.navbar-submenu {
		border-bottom: initial;
		border-left: initial;
		border-right: initial;
	}
}

.navbar-submenu > a {
	width: 100%;
	max-width: 250px;
}

.navbar-submenu a img {
	width: 100%;
	height: auto;
	max-width: 250px;
	max-height: 280px;
	transition-duration: 100ms;
}

.navbar-submenu a img:hover {
	transform: scale(1.02);
	transition-duration: 100ms;
}

.navbar-submenu ul {
	list-style: none;
	margin: 0;
	column-width: 235px;
	column-fill: balance;
	max-height: 230px;
	position: relative;
	margin-left: 35px;
}

.county-fix {
	max-height: 360px!important;
}

@media only screen and (min-width: 1281px) {
	.county-fix {
		margin-left: 40px!important;
	}
}

.navbar-submenu ul li:before {
    content: '\2014';
    margin: 0 10px;
	position: absolute;
	left: -35px;
}






/* 
li.noclick.boldtext > a {
    font-weight: bold !important;
	padding-left: 9px;
}
li.noclick.boldtext:before {
    display: none;
}
@media all and (min-width: 1045px) {
	.navbar-submenu ul li {
			max-width: 220px;
	}
	ul.sub-menu > li:before {
    position: absolute;
    left: 0;
	}
	ul.sub-menu > li {
			position: relative;
		padding-left: 35px;
	}
} */
nav li.boldtext > a {
    left: -15px;
    transform: translateX(-35px);
    display: block;
	padding-left: 9px;
}
li.boldtext > a {
    font-weight: bold !important;
}
nav li.boldtext > a {
	pointer-events: none;
	cursor: default !important;
}
li.boldtext:before {
    display: none;
}
@media all and (min-width: 1045px) {
	nav .navbar-submenu ul li {
			max-width: 190px;
	}
}
nav .navbar-submenu ul.sub-menu {
    margin-left: 0;
}





.footer-faq ul li:before {
    content: '\2014';
    margin: 10px 10px 10px 0!important;
}

.navbar-submenu ul li {
    margin-top: 5px;
	margin-bottom: 5px;
	position: relative;
}

@media only screen and (min-width: 1281px) {
	html[lang="ru-RU"] .navbar-submenu ul li {
		max-width: 215px;
	}
}

.navbar-submenu ul li a {
    font-weight: 400;
	transition-duration: 200ms;
	line-break: auto;
}

.navbar-submenu ul li a:hover {
    font-weight: 400;
	text-shadow: 0.03em 0 0 currentColor;
	transition-duration: 200ms;
}

.navbar-submenu .current-menu-item > a {
	font-weight: 700;
	cursor: default;
}

@media only screen and (max-width: 1280px) {
	.navbar-submenu .current-menu-item {
		background-color: #00A5B9;
		border-radius: 5px;
		color: white;
		padding-top: 4px;
		padding-bottom: 4px;
	}

	.navbar-submenu .current-menu-item > a {
		font-weight: 700;
		opacity: 1;
		color: white;
		cursor: default;
	}
}

.page-aside-nav div[class^=menu-] li:not(.current-menu-ancestor) ul {
	display: none;
}

.page-aside-nav div[class^=menu-] li.current-menu-item ul {
	display: initial!important;
}

.navbar-submenu-title {
	display: flex;
	flex-direction: row;
	align-items: center;
	font-weight: 700;
	padding-left: 50px;
}
.multi-column .navbar-submenu-title {
	padding-left: 15px;
}

.navbar-submenu-title span {
	display: none;
	border: none;
	margin-right: 5px;
	height: auto;
}

.navbar-submenu-title span img {
	display: block;
	max-width: 15px;
	height: auto;
	width: 100%;
}

.navbar-submenu-active {
	display: flex;
}

.multi-column {
	columns: 2;
}

.navbar-tools-container {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	height: 100%;
	color: white;
	width: 180px;
}

.navbar-tools-container {
	padding: 20px;
}

*:focus-visible {
	background: #00A6BA;
	color: white!important;
	outline: none;
	border-radius: 5px;
	padding-left: 5px;
	padding-right: 5px;
}

.navbar-language {
	display: flex;
	flex-direction: row;
	align-items: center;
	font-weight: 700;
	margin-right: 20px;
	cursor: pointer;
}

.navbar-language span img {
	width: 12px;
	margin-left: 5px;
}

.navbar-search {
	width: 25px;
	cursor: pointer;
	margin-left: 10px;
}

.mob-search {
	width: 25px;
	cursor: pointer;
}

.navbar-menu {
	display: none;
	width: 30px;
	cursor: pointer;
	margin-left: 10px;
}

.navbar-search-container {
	display: none;
}

@media only screen and (max-width: 1280px) {
	.no-scroll {
		overflow: hidden!important;
	}

	.navbar-menu {
		display: block;
	}

	.navbar-logo.filter {
		z-index: 9999;
		filter: brightness(0) saturate(100%) invert(9%) sepia(2%) saturate(3339%) hue-rotate(295deg) brightness(90%) contrast(91%);
	}

	.navbar-menu.filter {
		z-index: 9999;
		filter: brightness(0) saturate(100%) invert(9%) sepia(2%) saturate(3339%) hue-rotate(295deg) brightness(90%) contrast(91%);
	}

	.navbar-section-container {
		position: fixed;
		top: 0;
		left: 0;
		display: none;
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
		background-color: #FBF485;
		color: #231F20;
		width: 100vw;
		height: 100vh;
		max-width: initial;
		overflow: auto;
	}

	.navbar-section + .navbar-section {
		margin-left: 0;
		padding-left: 0;
		background-image: none;
	}

	.navbar-search-container {
		margin-left: 0;
		padding-left: 0;
		background-image: none;
	}

	.navbar-section {
		height: auto;
		width: 80%;
		border-bottom: 2px solid #231F20
	}

	.navbar-section:first-child {
		margin-top: 100px;
		border-top: 2px solid #231F20;
	}

	.navbar-item {
		display: flex;
		align-items: center;
		flex-direction: column;
		height: auto;
		color: white;
		font-weight: 700;
		letter-spacing: 0.8px;
		cursor: pointer;
	}

	.navbar-item p {
		display: none;
	}

	.navbar-submenu {
		position: relative;
		display: flex;
		padding: 10px;

		flex-direction: column;
		justify-content: center;
		align-items: center;
		background: #FBF485;
		color: #231F20;
		border-radius: 0 0 10px 10px;
		width: unset;
		left: auto !important;
		margin-left: 0 !important;
	}

	.navbar-submenu ul {
		column-width: initial;
		column-fill: initial;
		max-height: initial;
		height: 100%!important;
		padding: 0 0 0 20px;
	}

	.navbar-submenu ul li {
		margin-top: 10px;
		margin-bottom: 10px;
	}

	.navbar-submenu ul li a {
		padding-top: 2px;
		padding-bottom: 5px;
	}

	.navbar-submenu-title {
		font-size: 18px;
		padding-top: 5px;
		padding-bottom: 5px;
		padding-left: 10px;
		cursor: pointer;
	}

	.navbar-submenu-title a {
		display: flex;
		align-items: center;
	}

	.navbar-submenu-title span {
		display: block;
	}

	.navbar-submenu img {
		display: none;
	}

	.navbar-submenu-content {
		width: 100%;
	}

	.multi-column {
		columns: 1;
	}

	.navbar-mobile-active {
		display: flex;
	}

	.navbar-search-container {
		display: flex;
		width: 80%;
		height: 100%;
		margin-top: 40px;
		margin-bottom: 80px;
	}

	.navbar-search-container form {
		position: relative;
		display: flex;
		align-items: flex-end;
		width: 100%;
		height: 100%;
	}

	.navbar-search-container form input {
		border: 2px solid #00A6BA;
		border-radius: 5px;
		width: 100%;
		height: 40px;
		padding-left: 10px;
		padding-right: 30px;
		color: #231F20;
	}

	.navbar-search-container form input:focus {
		color: #231F20!important;
	}

	.navbar-search-container form button {
		position: absolute;
		right: 0;
		height: 40px;
		background: transparent;
		border: none;
	}

	.navbar-search-container form button img {
		filter: brightness(0) saturate(100%) invert(9%) sepia(2%) saturate(3339%) hue-rotate(295deg) brightness(90%) contrast(91%);
	}

	.navbar-search-container form input:focus {
		background-color: white;
		color: #231F20;
	}

	.navbar-search {
		display: none;
	}

	.navbar-language-container {
		z-index: 4000;
	}

	.navbar-language.filter {
		z-index: 4000;
		color: #231F20;
	}

	.navbar-language.filter span img {
		filter: brightness(0) saturate(100%) invert(9%) sepia(2%) saturate(3339%) hue-rotate(295deg) brightness(90%) contrast(91%);
	}
}

@media only screen and (max-width: 960px) {
	.navbar-container {
		margin-top: 10px;
		margin-bottom: 10px;
		padding-left: 10px;
		padding-right: 10px;
	}

	.navbar-content {
		width: 100%;
	}
}

.navbar-language-container ul {
	position: absolute;
	display: none;
	padding: 7px;
	background-color: rgba(35, 31, 32, 0.75);
	border-radius: 0 0 5px 5px;
	margin-top: 18px;
	margin-left: -8px;
}

.navbar-language-container ul li {
	padding-left: 5px;
	padding-right: 5px;
	margin-top: 7px;
	margin-bottom: 7px;
	text-align: justify;
	text-justify: inter-character;
	cursor: pointer;
	text-align: center;
	border-bottom: 2px solid transparent;
}

.navbar-language-container ul li:hover {
	border-bottom: 2px solid #FBF485;
	transition-duration: 500ms;
}

.navbar-language-active {
	display: flex!important;
	flex-direction: column;
}
/*********************************************************************/
/*NAVBAR END*/
/*********************************************************************/



/*********************************************************************/
/*FOOTER START*/
/*********************************************************************/
footer {
	display: flex;
	justify-content: center;
	flex-direction: column;
	margin: 20px;
	margin-bottom: 0;
	padding-bottom: 20px;
}

.footer-container {
	display: flex;
	flex-direction: row;
	width: 100%;
	max-width: 1280px;
	background-color: #FEF385;
	margin: auto;
	border-radius: 5px;
	margin-bottom: 40px;
}

.footer-column {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex: 1;
	margin: 20px;
}

.footer-column:nth-child(2) {
	flex: 1.2;
}

.footer-logo img {
	max-width: 250px;
	margin: auto;
}

.footer-links {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	margin-top: 35px;
}

.footer-links a {
	width: 100%;
	max-width: 50px;
	margin: 10px;
	transition-duration: 200ms;
}

.footer-links a:hover {
	max-width: 60px;
	margin: 5px;
	transition-duration: 200ms;
}

.footer-faq ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-faq ul li {
	margin-top: 5px;
	margin-bottom: 5px;
}

.footer-faq ul li:before {
    content: '\2014';
    margin: 0 10px;
}

.footer-faq ul li a {
	font-weight: 400;
	transition-duration: 100ms;
}

.footer-faq ul li a:hover {
	font-weight: 700;
	transition-duration: 100ms;
}

.footer-newsletter {
	display: flex;
	flex-direction: column;
	margin-top: 20px;
}

.footer-newsletter input {
	border: 2px solid #00A6BA;
	border-radius: 5px;
	min-height: 40px;
	padding-left: 10px;
	padding-right: 10px;
}

.footer-newsletter input:focus {
	background-color: white;
	color: #231F20!important;
}

.footer-newsletter button {
	margin-top: 10px;
	min-height: 40px;
	background: #00A6BA;
	color: white;
	font-weight: 700;
	letter-spacing: 0.8px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

.footer-button {
	margin-top: 10px;
	min-height: 40px;
	background: #00A6BA;
	color: white;
	font-weight: 700;
	letter-spacing: 0.8px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	width: 100%;
	margin-bottom: 10px;
	padding-top: 8px;
	padding-bottom: 8px;
}

.footer-sitemap {
	display: flex;
	align-items: center;
	height: 40px;
	gap: 20px;
}

.footer-sponsors {
	display: flex;
	flex-direction: row;
	max-width: 1280px;
	margin: auto;
	margin-bottom: 20px;
}

.footer-sponsor-first {
	max-width: 300px;
	margin: auto;
	margin-right: 40px;
}

.footer-sponsor-second {
	max-width: 130px;
	margin: auto;
}

@media all and (max-width: 1024px) {
	.footer-container {
		display: grid;
		grid-template-columns: auto auto;
	}

	.footer-column:nth-child(1) {
		flex: 1;
		order: 3;
		grid-column: span 2;
	}

	.footer-column:nth-child(2) {
		flex: 1;
		order: 1;
	}

	.footer-column:nth-child(3) {
		flex: 1;
		order: 2;
	}
}

@media all and (max-width: 768px) {
	.footer-container {
		display: flex;
		flex-direction: column;
	}

	.footer-column:nth-child(1) {
		flex: 1;
		order: 3;
	}

	.footer-column:nth-child(2) {
		flex: 1;
		order: 1;
	}

	.footer-column:nth-child(3) {
		flex: 1;
		order: 2;
	}

	.footer-sitemap {
		margin-top: 30px;
	}
}

@media only screen and (max-width: 530px) {
	.footer-sponsors {
		flex-direction: column;
	}

	.footer-sponsor-first {
		margin-right: initial;
		margin-bottom: 20px;
	}
}

.popup-sponsors {
	position: fixed;
	display: flex;
	flex-direction: row;
	bottom: 0;
	right: 0;
	background: #F2F2F2;
	border-radius: 5px;
	margin: 10px;
	padding: 20px;
}

.popup-sponsor-first {
	max-width: 200px;
	margin: auto;
	margin-right: 30px;
}

.popup-sponsor-second {
	max-width: 95px;
	margin: auto;
}

@media all and (max-width: 768px) {
	.popup-sponsors {
		bottom: 0;
		right: 0;
		margin: 10px;
		padding: 15px;
		width: calc(100% - 20px);
		z-index: 1000;
	}

	.popup-sponsor-first {
		max-width: 112px;
		margin: auto;
		margin-right: 30px;
	}

	.popup-sponsor-second {
		max-width: 56px;
		margin: auto;
	}
}

.pum-theme-default-theme {
	background-color: rgba(0, 0, 0, 0.8)!important;
}

.pum-container, .pum-close {
    border-radius: 5px!important;
}

.pum-container input, .pum-container select, .pum-container textarea{
	color: #231F20!important;
	width: 100%;
	max-width: 100%!important;
}

.pum-container textarea:focus, .pum-container input:focus {
    color: black;
}

.pum-close {
    max-height: 25px;
    display: flex;
    margin: 10px;
}

.wpforms-submit-container button {
	background-color: rgba(0, 183, 205, 1.00)!important;
	color: white!important;
	border-radius: 5px!important;
	border: none!important;
}
/*********************************************************************/
/*FOOTER END*/
/*********************************************************************/



/*********************************************************************/
/*BREADCRUMB START*/
/*********************************************************************/
.breadcrumb-container {
	display: flex;
	flex-direction: row;
	margin-bottom: 10px;
	flex-wrap: wrap;
}

.breadcrumb-container a {
	text-decoration: none;
	font-weight: 700;
	color: #231F20;
}

.breadcrumb-container span {
	margin-left: 10px;
	margin-right: 10px;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
/*********************************************************************/
/*BREADCRUMB END*/
/*********************************************************************/



/*********************************************************************/
/*LIGHTBOX START*/
/*********************************************************************/
.tobii {
	z-index: 5000;
}

.tobii-image {
	margin: 10px;
}

.tobii-image figure img {
	border-radius: 5px;
}
/*********************************************************************/
/*LIGHTBOX END*/
/*********************************************************************/



/*********************************************************************/
/*PAGE DEFAULT START*/
/*********************************************************************/
.page-section-container {
	display: flex;
	justify-content: center;
	flex-direction: column;
	width: 100%;
	padding: 20px;
}

.page-section-paddingless {
	padding: 0;
}

.page-content-container {
	width: 100%;
	max-width: 1340px;
	background-color: transparent;
	margin: auto;
	padding: 100px 30px 30px 30px;
	border-radius: 5px;
}

.page-content-container-wide {
	width: 100%;
	max-width: 100%;
	margin: auto;
	background-color: transparent;
	margin-bottom: 40px;
}

.page-content-container-narrow {
	width: 100%;
	max-width: 1280px;
	margin: auto;
	background-color: transparent;
}

.homepage-padding {
	padding: 30px 30px 30px 30px!important;
}

.page-content-container h1 {
	margin-bottom: 20px;
}

@media all and (max-width: 1024px) {
	.page-content-container {
		padding: 100px 0 0 0;
	}
}

@media all and (max-width: 650px) {
	.page-content-container {
		padding: 80px 0 0 0;
	}
}

.page-banner-container {
	display: flex;
	justify-content: center;
	align-items: center;
}

.page-banner {
	width: 100%;
	max-height: 400px;
	object-fit: cover;
}

.page-content {
	display: flex;
	flex-direction: row;
}

.page-news-content {
	max-width: 960px;
	margin: auto;
}

.page-aside-nav {
	flex: 100%;
	width: 240px;
	min-width: 240px;
	max-width: 240px;
	height: 100%;
	background: #FBF485;
	border-radius: 5px;
	padding: 20px;
	margin-right: 40px;
	order: 1;
}

.page-aside-nav p {
	font-weight: 700;
	margin-top: 20px;
}

.page-aside-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.page-aside-nav ul li {
	display: flex;
	margin-top: 5px;
	margin-bottom: 5px;
	padding-top: 3px;
	padding-bottom: 3px;
	padding-right: 10px;
	transition: color 0.1s, background-color 0.1s, padding-left 10s, margin-left 10s;
	border-radius: 0 5px 5px 0;
}

.page-aside-nav ul li:before {
    content: '\2014';
    margin: 0px 10px 0px 0!important;
}

.page-aside-nav ul li a {
	font-weight: 400;
	width: 100%;
	transition: color 0.1s;
}

.page-aside-nav .current-menu-item,
.page-aside-nav ul li:hover {
	background-color: #00A6BA;
	color: white;
	border-radius: 0 5px 5px 0;
	margin-left: -20px;
    padding-left: 20px;
	padding-right: 10px;
	transition: color 0.1s, background-color 0.2s;
}

.page-aside-nav .current-menu-item a,
.page-aside-nav ul li:hover a {
	color: white;
	transition: color 0.1s;
}

.page-aside-nav ul li:focus-within {
	background-color: #00A6BA;
	color: white;
	border-radius: 0 5px 5px 0;
	margin-left: -20px;
    padding-left: 20px;
	transition: color 0.1s, background-color 0.2s;
}

.page-aside-nav ul li a:focus {
	background-color: transparent;
	color: white;
	transition: color 0.1s, background-color 0.2s;
}

.page-article {
	order: 2;
	width: 100%;
	max-width: 1000px;
	margin: auto;
}

.page-article h1 {
	margin-top: 20px;
}

.page-article-text p, .page-article-text h2, .page-article-text h3, .page-article-text h4 {
	margin-bottom: 15px;
}

.page-article-text p + h2 {
	margin-top: 38px;
}

.page-article-text a {
    color: #00abbd;
    white-space: pre-wrap;
    white-space: pre-wrap;
    white-space: -moz-pre-wrap;
    white-space: -pre-wrap;
    white-space: -o-pre-wrap;
    word-wrap: break-word;
}

.page-article-text ul li:not(last-child) {
	margin-bottom: 8px;
}

.page-article-text a:hover {
	text-decoration: underline;
	text-underline-offset: 2px;
	text-decoration-thickness: 2px;
}

.page-article-text figure {
	margin-bottom: 20px;
}

.page-article-text .wp-block-embed-youtube .wp-block-embed__wrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	height: 0;
}

.page-article-text .wp-block-embed-youtube .wp-block-embed__wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 5px;
}

.page-article-text figure figcaption {
	margin-left: 5px;
	margin-top: 10px;
	font-size: 14px;
}

.page-article-text figure img {
	border-radius: 5px!important;
}

.page-nav-hr {
	margin-top: 50px;
	margin-bottom: 25px;
}

.page-nav-buttons-container {
	display: flex;
	justify-content: space-between;
	order: 3;
}

.page-nav-next, .page-nav-prev {
	padding-top: 8px;
	padding-bottom: 8px;
	padding-left: 12px;
	padding-right: 12px;
	background: #00A6BA;
	color: white;
	min-width: 200px;
	text-align: center;
	border-radius: 5px;
}

.page-nav-next:hover, .page-nav-prev:hover {
	transform: scale(1.05);
	transition-duration: 200ms;
}

@media only screen and (max-width: 960px) {
	.page-content {
		display: flex;
		flex-direction: column;
	}

	.page-article {
		order: 1;
	}

	.page-aside-nav {
		width: 100%;
		max-width: initial;
		order: 3;
		margin-top: 40px;
		margin-bottom: 0;
	}

	.page-aside-nav img {
		max-width: 250px;
		margin: auto;
	}

	.page-nav-buttons-container {
		order: 2;
	}

	.homepage-padding {
		padding: 0!important;
	}
}

@media only screen and (max-width: 480px) {
	.page-nav-buttons-container {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		order: 3;
	}

	.page-nav-next {
		margin-top: 15px;
	}

	.page-nav-prev, .page-nav-next {
		min-width: initial;
	}
}
/*********************************************************************/
/*PAGE DEFAULT END*/
/*********************************************************************/



/*********************************************************************/
/*EVENTS START*/
/*********************************************************************/
.ui-datepicker {
	background: #FBF485;
	z-index: 5000!important;
	border: none;
	border-radius: 5px;
	margin-top: 5px;
}

.ui-datepicker .ui-datepicker-header {
    position: relative;
    padding: .2em 0;
    background: #00A5B9;
    border-radius: 5px;
    color: white;
}

.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span {
    display: block;
    position: absolute;
    left: 50%;
    margin-left: -8px;
    top: 50%;
    margin-top: -8px;
    filter: brightness(100);
}

.ui-datepicker-next:hover, .ui-datepicker-prev:hover {
	background: #231F20;
	border: none;
}

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
    border: 1px solid #00A5B9;
    background: #00A5B9;
    font-weight: normal;
    color: #ffffff;
}

.events-search-container {
	width: 100%;
	height: auto;
	color: white;
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 0;
	flex-wrap: wrap;
}

.events-search-container > * {
	margin-bottom: 20px;
	margin-top: 20px;
}

.events-search-container > *:not(:last-child) {
	margin-right: 20px;
}

.events-search-container input[type=search] {
	flex: 1;
}

.events-search-container select {
	color: #231F20!important;
}

.events-search-container select option {
	border-radius: 5px;
	background: #FBF485!important;
}

.events-search-container button {
	background: #00A6BA;
	max-width: 45px;
	transition-duration: 200ms;
}

.events-search-container button:hover {
	transform: scale(1.05);
	transition-duration: 200ms;
}

.events-search-container input, .events-search-container div input, .events-search-container select, .events-search-container button {
	border-radius: 5px;
	border: none;
	height: 40px;
	padding-left: 10px;
	padding-right: 5px;
	border: 2px solid #00A6BA;
}

.events-search-container input:focus-visible, .events-search-container div input:focus-visible, .events-search-container select:focus-visible {
	background-color: white;
	color: #231F20!important;
}

.events-search-container p {
	margin-left: 10px;
}

.featured-events-container {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 60px;
	margin-top: 60px;
}

.featured-events-container > .featured-event {
	display: none;
}

.featured-events-container > .featured-event:nth-child(-n+3) {
	display: block;
}

.featured-event {
	width: 100%;
	position: relative;
}

.featured-event h2 {
	font-size: 20px;
	text-align: center;
	margin-top: 10px;
	transition-duration: 200ms;
}

.featured-event a {
	text-decoration: none;
	color: #231F20;
}

.featured-event a:hover img {
	transform: scale(1.05);
	z-index: 1;
	transition-duration: 200ms;
}

.featured-event .location {
	font-weight: 400;
}

.featured-event .divider {
	font-weight: 400;
	margin-right: 8px;
	margin-left: 8px;
}

.featured-event img {
	aspect-ratio: 6/3.5;
    max-width: 600px;
    max-height: 350px;
    width: 100%;
    height: auto;
    object-fit: cover;
	background-color: #F2F2F2;
	border-radius: 5px;
	transition-duration: 200ms;
}

.featured-event img:hover {
	transform: scale(1.05);
	z-index: 1;
	transition-duration: 200ms;
}

.featured-event img:hover + h2 {
	margin-top: 17px;
	margin-bottom: -7px;
	transition-duration: 200ms;
}

.featured-event a:focus h2 {
	color: #231F20;
}

.featured-event a:focus img {
	transform: scale(1.05);
	z-index: 1;
	transition-duration: 200ms;
}

.featured-event a:focus img + h2 {
	margin-top: 17px;
	margin-bottom: -7px;
	transition-duration: 200ms;
}

.date-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 120px;
	height: 60px;
	position: absolute;
	top: -30px;
	left: -30px;
	color: white;
	font-weight: 700;
	border-radius: 5px;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	z-index: 2;
}

.date-container p {
	line-height: 1.2;
	letter-spacing: 0.5px;
	font-size: 18px;
}

.date-container .date, .date-container .time {
	text-align: center;
}

.event-list-container {
	margin-top: 40px;
}

.event-list-today, .event-list-tomorrow, .event-list-rest {
	border-radius: 5px;
	margin-bottom: 40px;
}

.js-events-list-notification-text {
	justify-content: center;
	align-items: center;
}

@media all and (max-width: 1024px) {
	.featured-events-container {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 40px;
	}

	.date-container {
		top: 0;
		left: 0;
		border-radius: 5px 0 5px 0;
	}

	.featured-event a:hover img {
		transform: scale(1);
		z-index: 1;
		transition-duration: 200ms;
	}

	.featured-event img:hover + h2 {
		margin-top: 10px;
		margin-bottom: 0;
		transition-duration: 200ms;
	}
}

@media all and (max-width: 650px) {
	.featured-events-container {
		grid-template-columns: repeat(1, minmax(0, 1fr));
		gap: 40px;
	}

	.date-container {
		top: 0;
		left: 0;
		border-radius: 5px 0 5px 0;
	}
}

.event {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: center;
	margin-top: 15px;
	margin-bottom: 15px;
	font-weight: 400;
}

.event-title {
	text-decoration: none;
	font-weight: bold;
	color: #00A5B9;
	margin-right: 20px;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-right: 15px;
	transition-duration: 300ms;
}

.event .location {
	text-align: left;
}

.event .date {
	text-align: right;
}

@media all and (max-width: 768px) {
	.event {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}

	.event .date {
		text-align: left;
	}
}

.event-list-content {
	background-color: #F2F2F2;
	border-radius: 5px;
	margin-bottom: 20px;
}

.event-title-container {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	background-color: #00A5B9;
	border-radius: 5px 5px 0 0;
}

.event-title-container h2 {
	color: white;
	margin: 0;
}

.event-title-container p {
	padding: 2px 8px;
	background-color: #F2F2F2;
	color: #231F20;
	font-weight: bold;
	border-radius: 5px;
}

.events-container {
	display: flex;
	flex-direction: column;
	min-height: 74px;
}

.events-container .event:hover {
	background-color: #FEF385;
}

.events-container .event:last-child {
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
}

.js-event-list-later .event:nth-child(15) {
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
}

.js-events-list-homepage .event:nth-child(5) {
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
}

.events-container .event {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: center;
	padding: 20px;
	margin: 0;
}

.event .date {
	text-align: right;
}

.events-container .event:not(:first-child) {
	border-top: 2px solid #00A5B9;
}

.event-list-content .default-button {
	margin: 20px;
}

@media only screen and (max-width: 1048px) {
	.events-container .event {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
	}
}

.js-sectioned-events-catalogue {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.js-sectioned-events-catalogue .default-button {
	align-self: flex-start;
}
/*********************************************************************/
/*EVENTS END*/
/*********************************************************************/


/*********************************************************************/
/*HOMEPAGE GALLERY START*/
/*********************************************************************/
.homepage-gallery {
	position: relative;
	margin-top: 30px;
}

.homepage-gallery .swiper-wrapper .swiper-slide {
	position: relative;
	transition-duration: 200ms;
    border-radius: 5px;
	height: 230px;
}

.homepage-gallery .swiper-wrapper .swiper-slide img {
	max-height: 230px;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 5px;
}

.homepage-gallery .swiper-wrapper .swiper-slide a {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
	text-align: center;
    background: rgba(35, 31, 32, 0.3);
    border-radius: 5px;
	color: white;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	transition-duration: 200ms;
}

.homepage-gallery .swiper-wrapper .swiper-slide a h2 {
	padding: 20px;
	letter-spacing: 0.8px;
}

.homepage-gallery .swiper-wrapper .swiper-slide:hover {
	transform: scale(1.02);
	transition-duration: 200ms;
}

.homepage-gallery .swiper-wrapper .swiper-slide:hover a {
	background: rgba(35, 31, 32, 0);
	transition-duration: 200ms;
}

@media only screen and (max-width: 960px) {
	.homepage-gallery .swiper-wrapper .swiper-slide {
		padding-left: 20px;
		padding-right: 20px;
	}

	.homepage-gallery .swiper-wrapper .swiper-slide a {
		top: 0;
		left: 20px;
		width: calc(100% - 40px);
		height: 100%;
		display: flex;
	}
}

.swiper-lazy:not(.swiper-lazy-loaded) {
	display: none;
}
/*********************************************************************/
/*HOMEPAGE GALLERY END*/
/*********************************************************************/



/*********************************************************************/
/*NEWS START*/
/*********************************************************************/
.news-container {
	display: flex;
	flex-direction: row;
	list-style-decoration: none;
	flex-wrap: wrap;
	justify-content: space-between;
}

.news-container li {
	padding: 20px;
	background-color: #F2F2F2;
	border-radius: 5px;
	transition-duration: 100ms;
	margin-bottom: 20px;
	width: 100%;
}

.news-container li:hover {
	transform: scale(1.02);
	transition-duration: 100ms;
}

.news-container li a {
	display: flex;
}

.news-image {
	width: 100%;
	height: auto;
	max-width: 300px;
	border-radius: 5px;
	margin-right: 20px;
	max-height: 200px;
	object-fit: cover;
}

.news-date {
	margin-bottom: 10px;
}

.news-information {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.news-information p {
	font-size: 14px;
	text-transform: uppercase;
	margin-top: 10px;
}

.news-next {
	margin-right: 0;
	float: right;
	margin-top: 10px;
	margin-bottom: 10px;
}

.news-prev {
	margin-left: 0;
	float: left;
	margin-top: 10px;
	margin-bottom: 10px;
}

.page-numbers {
	padding: 8px 0px;
}

@media only screen and (max-width: 1048px) {
	.page-numbers {
		display: none;
	}
}

.page-numbers.current {
	color: white;
	background-color: #00A6BA;
	padding: 8px 12px;
	border-radius: 5px;
	font-weight: 700;
}

.sa-pagination {
	text-align: center;
	display: flex;
	gap: 20px;
	justify-content: center;
	align-items: center;
}

.news-container .news-next {
	align-self: flex-start;
}

.news-container .news-prev {
	align-self: flex-end;
}

@media only screen and (max-width: 1048px) {
	.news-container li a {
		flex-direction: column;
		justify-content: center;
	}

	.news-image {
		width: 100%;
		height: auto;
		max-width: initial;
		border-radius: 5px;
		margin-right: initial;
	}
}
/*********************************************************************/
/*NEWS START*/
/*********************************************************************/



/*********************************************************************/
/*HOMEPAGE NEWS START*/
/*********************************************************************/
.homepage-news-container {
	display: flex;
	flex-direction: column;
	max-width: 1280px;
	margin: auto!important;
}

.homepage-news {
	display: grid;
	grid-template-columns: auto auto;
	gap: 30px;
	margin-top: 20px!important;
	margin-bottom: 20px!important;
}

.homepage-news-title {
	font-size: 32px;
	padding: 55px 0 20px;
}

.homepage-news li {
	transition-duration: 200ms;
}

.homepage-news li:first-child {
	grid-column: span 2;
}

.homepage-news li:hover {
	transform: scale(1.02);
	transition-duration: 200ms;
}

.homepage-news li a {
	display: flex;
	flex-direction: row;
	align-items: center;
	border-radius: 5px;
	background-color: #FEF385;
}

.homepage-news li a {
	width: 100%;
	padding: 20px;
}

.homepage-news li:first-child a img {
	width: 100%;
	height: 200px;
	max-width: calc(50% - 30px);
	max-height: 200px;
	object-fit: cover;
	border-radius: 5px;
	margin-right: 60px;
}

.homepage-news li a img {
	width: 100%;
	height: 200px;
	max-width: 200px;
	max-height: 200px;
	object-fit: cover;
	border-radius: 5px;
	margin-right: 20px;
}

.homepage-news-information p {
	font-size: 14px;
	text-transform: uppercase;
	margin-top: 10px;
}

.homepage-news-date {
	margin-bottom: 10px;
}

.homepage-news-button {
	align-self: flex-end;
	min-width: 200px;
	text-align: center;
}

.homepage-news-information .more {
	color: #FEF385;
	transition-duration: 100ms;
}

.homepage-news li:hover .more {
	color: #231F20;
	transition-duration: 100ms;
}

@media only screen and (max-width: 1048px) {
	.homepage-news {
		grid-template-columns: auto;
	}

	.homepage-news li:first-child {
		grid-column: initial;
	}

	.homepage-news li:first-child a img, .homepage-news li a img  {
		width: 100%;
		max-width: initial;
		margin-right: 0;
	}

	.homepage-news li a {
		flex-direction: column;
		justify-content: center;
	}
}
/*********************************************************************/
/*HOMEPAGE NEWS END*/
/*********************************************************************/



/*********************************************************************/
/*HOMEPAGE PLACES START*/
/*********************************************************************/
.homepage-places-section {
	margin-top: -100px;
}

.homepage-places-container {
	display: flex;
	flex-direction: row;
	justify-content: center;
	margin-top: 20px;
}

.featured-places-container {
	display: flex;
	flex-direction: row;
	justify-content: center;
}

.homepage-places, .featured-places {
	width: 100%;
	height: auto;
	flex: 1;
	transition-duration: 200ms;
}

.homepage-places .swiper-wrapper .swiper-slide, .featured-places .swiper-wrapper .swiper-slide {
	position: relative;
	border-radius: 5px;
	height: 408px;
}

.homepage-places-container:hover, .featured-places-container:hover {
	transform: scale(1.01);
	transition-duration: 200ms;
}

.homepage-places .swiper-wrapper .swiper-slide a img, .featured-places .swiper-wrapper .swiper-slide a img {
	width: 100%;
	height: 100%;
	max-height: 400px;
	object-fit: cover;
}

.homepage-places .swiper-wrapper .swiper-slide a h2, .featured-places .swiper-wrapper .swiper-slide a h2  {
	position: absolute;
	bottom: 0;
	left: 0;
	color: white;
	width: 100%;
	padding: 15px;
}

.homepage-places .swiper-wrapper .swiper-slide:nth-child(1n), .featured-places .swiper-wrapper .swiper-slide:nth-child(1n) {
	border: 4px solid #00A5B9;
	background-color: #00A5B9;
}

.homepage-places .swiper-wrapper .swiper-slide:nth-child(1n) a h2, .featured-places .swiper-wrapper .swiper-slide:nth-child(1n) a h2 {
	background-color: #00A5B9;
	color: white;
}

.homepage-places .swiper-wrapper .swiper-slide:nth-child(2n), .featured-places .swiper-wrapper .swiper-slide:nth-child(2n) {
	border: 4px solid #FEF385;
	background-color: #FEF385;
}

.homepage-places .swiper-wrapper .swiper-slide:nth-child(2n) a h2, .featured-places .swiper-wrapper .swiper-slide:nth-child(2n) a h2 {
	background-color: #FEF385;
	color: #231F20;
}

.homepage-places .swiper-wrapper .swiper-slide:nth-child(3n), .featured-places .swiper-wrapper .swiper-slide:nth-child(3n) {
	border: 4px solid #00A5B9;
	background-color: #00A5B9;
}

.homepage-places .swiper-wrapper .swiper-slide:nth-child(3n) a h2, .featured-places .swiper-wrapper .swiper-slide:nth-child(3n) a h2 {
	background-color: #00A5B9;
	color: white;
}

.homepage-places .swiper-wrapper .swiper-slide:nth-child(4n), .featured-places .swiper-wrapper .swiper-slide:nth-child(4n) {
	border: 4px solid #FEF385;
	background-color: #FEF385;
}

.homepage-places .swiper-wrapper .swiper-slide:nth-child(4n) a h2, .featured-places .swiper-wrapper .swiper-slide:nth-child(4n) a h2 {
	background-color: #FEF385;
	color: #231F20;
}

.homepage-places .swiper-wrapper .swiper-slide:nth-child(5n), .featured-places .swiper-wrapper .swiper-slide:nth-child(5n) {
	border: 4px solid #00A5B9;
	background-color: #00A5B9;
}

.homepage-places .swiper-wrapper .swiper-slide:nth-child(5n) a h2, .featured-places .swiper-wrapper .swiper-slide:nth-child(5n) a h2 {
	background-color: #00A5B9;
	color: white;
}

.homepage-places .swiper-wrapper .swiper-slide:nth-child(6n), .featured-places .swiper-wrapper .swiper-slide:nth-child(6n) {
	border: 4px solid #FEF385;
	background-color: #FEF385;
}

.homepage-places .swiper-wrapper .swiper-slide:nth-child(6n) a h2, .featured-places .swiper-wrapper .swiper-slide:nth-child(6n) a h2 {
	background-color: #FEF385;
	color: #231F20;
}

.swiper-lazy:not(.swiper-lazy-loaded) {
	display: none;
}

.homepage-places-list-container {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 40px;
	margin-top: 40px;
}

.homepage-places-list-container p {
	font-weight: 400;
}

.homepage-places-list-container img {
	aspect-ratio: 6/3.5;
	max-height: 350px;
	width: 100%;
	height: auto;
	object-fit: cover;
	background-color: #F2F2F2;
	border-radius: 5px;
	margin-bottom: 13px;
}

.homepage-place-container {
	border: 4px solid transparent;
}

.homepage-place-container:hover {
	background-color: #00A5B9;
	border-radius: 5px;
	border: 4px solid #00A5B9;
}

.homepage-place-container a div {
	padding: 0 7px 7px 7px;
}

.homepage-place-container a div h2 {
	font-size: 20px;
	margin-bottom: 5px;
}

.homepage-place-container:hover a div h2 {
	color: white;
}

.homepage-place-container a img {
	transition-duration: 200ms;
}

.homepage-place-container:hover {
	transform: scale(1.02);
	transition-duration: 200ms;
}

@media only screen and (max-width: 1280px) {
	.homepage-places-list-container {
		display: grid;
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 20px;
		margin-top: 20px;
	}
}

@media only screen and (max-width: 1048px) {
	.homepage-places-list-container {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 20px;
		margin-top: 20px;
	}
}

@media only screen and (max-width: 960px) {
	.homepage-places-section {
		margin-top: -60px;
	}
}

@media only screen and (max-width: 768px) {
	.homepage-places-list-container {
		display: grid;
		grid-template-columns: repeat(1, minmax(0, 1fr));
		gap: 20px;
		margin-top: 20px;
	}

	.homepage-place-container {
		max-height: 400px;
	}
}
/*********************************************************************/
/*HOMEPAGE PLACES END*/
/*********************************************************************/



/*********************************************************************/
/*PLACES START*/
/*********************************************************************/
.featured-places-container {
	display: flex;
	flex-direction: row;
	justify-content: center;
}

.places-page-container {
	display: flex;
	flex-direction: row;
	margin-top: 40px;
}

@media only screen and (max-width: 960px) {
	.places-page-container {
		flex-direction: column;
		margin-top: 0;
	}
}

.information .open-times .open-time-block {
	margin-bottom: 20px;
}

.information .open-times .open-time-block .open-time-season,
.information .open-times .open-time-block .open-time-type {
	font-weight: bold;
	margin-bottom: 10px;
}
/*********************************************************************/
/*PLACES END*/
/*********************************************************************/



/*********************************************************************/
/*HOMEPAGE START*/
/*********************************************************************/
.homepage-banner-container {
	position: relative;
	width: 100%;
	background-color: #1a4a52;
}

.homepage-banner {
	width: 100%;
	height: 50vh;
	min-height: 360px;
	max-height: 520px;
	object-fit: cover;
	opacity: 0.85;
}

.homepage-scroll {
	position: absolute;
	bottom: 5px;
	width: 25px;
}
.homepage-events-container {
	display: flex;
	flex-direction: row;
}

.homepage-events-container .event:hover {
	background-color: #FEF385;
}

.homepage-events-container .event:hover:last-child {
	border-radius: 5px;
}

.homepage-event-list-today {
	background-color: #F2F2F2;
	border-radius: 5px;
}

.homepage-event-title-container {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	background-color: #00A5B9;
	border-radius: 5px 5px 0 0;
}

.homepage-event-title-container h2 {
	color: white;
	margin: 0;
}

.homepage-event-title-container p {
	padding: 2px 8px;
	background-color: #F2F2F2;
	color: #231F20;
	font-weight: bold;
	border-radius: 5px;
}

.homepage-events-container {
	display: flex;
	flex-direction: column;
}

.homepage-events-container .event {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: center;
	padding: 20px;
	margin: 0;
}

@media only screen and (max-width: 1048px) {
	.homepage-events-container .event {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
	}
}

.homepage-event .date {
	text-align: right;
}

.homepage-events-container .event:not(:first-child) {
	border-top: 2px solid #00A5B9;
}

.homepage-events {
	display: grid;
	grid-template-columns: auto auto auto;
	gap: 60px;
	padding: 60px;
}

.homepage-featured-events {
	position: relative;
}

.homepage-featured-event {
	position: relative;
	display: flex;
	flex-direction: row;
	z-index: 3;
}

.homepage-featured-inactive:nth-child(2) {
	position: absolute;
	top: 0;
	right: 0;
	margin-left: -40px;
	margin-right: 40px;
	margin-top: 40px;
	z-index: 1;
}

.homepage-featured-inactive:nth-child(3) {
	position: absolute;
	top: 0;
	right: 0;
	margin-left: 40px;
	margin-right: -40px;
	margin-top: -40px;
	z-index: 2;
}

.homepage-featured-event-details {
	position: absolute;
	bottom: 0;
	display: flex;
	flex-direction: row;
	align-items: center;
	background-color: #5A5758;
	width: 100%;
	border-radius: 5px 0 5px 5px;
	border-bottom: 5px solid #00A6BA;
	border-left: 5px solid #00A6BA;
	border-right: 5px solid #00A6BA;
}

.homepage-featured-event-details h2 {
	width: 100%;
	text-align: center;
	color: white;
}

.homepage-featured-event-date-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 120px;
	height: 60px;
	color: white;
	font-size: 18px;
	font-weight: 700;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	z-index: 2;
}

.homepage-events {
	flex: 1.4;
}

.homepage-featured-event img {
	border-radius: 5px;
	border: 5px solid #00A6BA;
}

.homepage-featured-inactive:nth-child(2) .homepage-featured-event-details, .homepage-featured-inactive:nth-child(3) .homepage-featured-event-details {
	display: none;
}

.homepage-featured-inactive:nth-child(2) img {
	border: 5px solid #ABE0F5;
}

.homepage-featured-inactive:nth-child(3) img {
	border: 5px solid #FBF485;
}

.event-details {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	margin-bottom: 5px;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.event-detail {
	padding-top: 8px;
	padding-bottom: 8px;
	padding-left: 12px;
	padding-right: 12px;
	background: #00A6BA;
	color: white;
	border-radius: 5px;
	letter-spacing: 1px;
	margin-bottom: 20px;
}

.event-detail span {
	font-weight: 700;
}

.event-detail span a {
	color: white;
	transition-duration: 200ms;
}

.event-detail span a:hover {
    text-decoration: underline;
    text-underline-offset: 5px;
    text-decoration-thickness: 2px;
	transition-duration: 200ms;
}

.event-detail:not(:last-child) {
	margin-right: 20px;
}

.event-description-container {
	display: flex;
	margin-bottom: -3px;
}

.event-description {
	flex: 2;
	margin-right: 40px;
}

.event-description p {
	margin-bottom: 15px;
}

.event-image {
	width: 100%;
	flex: 1.01;
}

.event-image a img {
	border-radius: 5px;
}

.event-image figure a {
	display: flex;
}

.event-image figure a:hover {
	text-decoration: none;
}

@media only screen and (max-width: 1048px) {
	.event-description-container {
		flex-direction: column;
	}

	.event-description {
		flex: 1;
		margin-right: 0;
	}
}

@media only screen and (max-width: 1048px) {
	.homepage-events-container {
		flex-direction: column;
	}

	.homepage-events {
		padding-top: 40px;
		padding-bottom: 40px;
		padding-right: 0;
		padding-left: 0;
		gap: 20px;
	}
}

@media only screen and (max-width: 960px) {
	.homepage-events {
		display: grid;
		grid-template-columns: auto auto;
		padding-top: 40px;
		padding-bottom: 40px;
		padding-right: 0;
		padding-left: 0;
		gap: 20px;
	}
}

/*HOMEPAGE COUNTY*/
.homepage-fullheight-container {
	min-height: 100vh;
    padding-top: 140px;
    padding-bottom: 140px;
	align-items: center;
}

.county-page {
	max-height: 850px;
}

.menu-maakond-container, .menu-county-container, .menu-maakunta-container, .menu-aprinkis-container, .menu-landkreis-container {
	max-width: 200px;
}

@media only screen and (max-width: 1048px) {
	.homepage-fullheight-container {
		min-height: initial;
		padding-top: 100px;
		padding-bottom: 20px;
		align-items: initial;
	}

	.county-page {
		max-height: unset;
	}
}

.homepage-county-container {
	display: flex;
	flex-direction: row;
	width: 100%;
	background-color: #ACE0F4;
	padding: 40px 20px 40px 20px;
	max-width: 1920px;
	margin: auto;
}

.homepage-county {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 40px;
	width: 100%;
	flex: 2;
	padding: 40px 100px 40px 40px;
}

.homepage-county a {
	display: flex;
}

.homepage-county a:focus {
	border-radius: 20px;
	background-color: #FBF485;
}

.homepage-county a:focus-visible img {
	transform: scale(1.05);
	transition-duration: 200ms;
	border: 2px solid #00A6BA;
}

.homepage-county a img {
	transition-duration: 200ms;
	border-radius: 20px;
	background-color: #FBF485;
}

.homepage-county a img:hover {
	transform: scale(1.05);
	transition-duration: 200ms;
}

.homepage-county-image {
	display: flex;
	width: 100%;
	flex: 1;
}

@media only screen and (max-width: 1048px) {
	.homepage-county-container {
		flex-direction: column;
	}

	.homepage-county {
		padding: 40px 40px 40px 40px;
	}

	.homepage-county-image {
		padding: 40px;
	}

	.homepage-county {
		order: 2;
	}

	.homepage-county-image {
		order: 1;
	}
}

@media only screen and (max-width: 768px) {
	.homepage-county-image {
		padding: 10px;
	}

	.homepage-county {
		display: grid;
		grid-template-columns: repeat(1, minmax(0, 1fr));
		gap: 40px;
		width: 100%;
		flex: 2;
		padding: 40px 10px 10px 10px;
	}
}

.discover-viljandimaa{
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.discover-viljandimaa-info{
	flex: 0 1 22%;
}

.discover-viljandimaa-info .intro {
	font-size: 0.9rem;
	color: #5A5758;
	margin-bottom: 1rem;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 1.2px;
}

.discover-viljandimaa-info h2 {
	font-size: 2rem;
	line-height: 1.15;
	font-weight: 700;
	margin-bottom: 1.2rem;
}

.discover-viljandimaa-info p {
	font-size: 0.9rem;
	color: #5A5758;
	margin-bottom: 1.8rem;
	line-height: 1.6;
}

.discover-viljandimaa .button {
	background: #00A6BA;
	color: white;
	font-weight: 700;
	font-size: 0.9rem;
	letter-spacing: 1px;
	padding: 12px 24px;
	border-radius: 8px;
	text-transform: uppercase;
	white-space: nowrap;
	transition: background 0.2s;
}
.discover-viljandimaa .button:hover{
	background: #008fa0;
}

.discover-viljandimaa-items{
	flex: 1 1 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.discover-viljandimaa-items .item {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 180px;
	padding: 0.8rem 1.3rem;
	border-radius: 8px;
	overflow: hidden;
	position: relative;
	transition: transform 0.2s;
}

/* Base dark overlay on all items */
.item::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.05) 60%);
}

.discover-viljandimaa-items .item .bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	object-fit: cover;
}

.discover-viljandimaa-items .item .item-content {
	z-index: 2;
}

.discover-viljandimaa-items .item .item-content .title {
	color: #FFFFFF;
	font-size: 1rem;
	font-weight: 700;
}

.discover-viljandimaa-items .item .item-content .subtitle{
	color: #FFFFFF;
	font-size: 0.8rem;
	font-weight: 400;
	opacity: 0.9;
}

.discover-viljandimaa-items .item:hover{
	transform: scale(1.02);
}

@media only screen and (min-width: 961px) {
	.discover-viljandimaa {
		flex-direction: row;
		gap: 3.75rem;
	}

	.discover-viljandimaa-items {
		grid-template-columns: 1fr 1fr;
	}
}

.homepage-section-header {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 10px;
}

.homepage-section-header h2 {
	font-size: 32px;
	font-weight: 700;
	line-height: 1.5;
}

.homepage-section-label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #00A6BA;
	margin-bottom: 6px;
}
.homepage-section-desc {
	font-size: 14px;
	color: #5A5758;
	margin-bottom: 30px;
}
.homepage-section-desc p {
	font-weight: 400;
	line-height: 1.5;
}
.homepage-btn-outline {
	display: inline-block;
	border: 2px solid #231F20;
	color: #231F20;
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 1px;
	padding: 10px 20px;
	border-radius: 8px;
	text-transform: uppercase;
	white-space: nowrap;
	transition: all 0.2s;
}

@media only screen and (max-width: 1048px) {
	.homepage-section-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}
}
.homepage-btn-outline:hover {
	background: #231F20;
	color: white;
}
/* Article grid — 1 featured large + 2×2 small (existing homepage-places-list style) */
.homepage-articles-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	grid-template-rows: auto auto;
	gap: 20px;
}
.homepage-article-card {
	border-radius: 8px;
	overflow: hidden;
	position: relative;
	cursor: pointer;
	transition: transform 0.2s;
	background: #F2F2F2;
	border: 4px solid transparent;
}
.homepage-article-card:hover {
	transform: scale(1.02);
	border-color: #00A6BA;
}
.homepage-article-card-featured {
	grid-row: span 2;
}

/* Tablet: 2 columns */
@media only screen and (max-width: 960px) {
	.homepage-articles-grid {
		grid-template-columns: 1fr 1fr;
	}
	.homepage-article-card-featured {
		grid-column: span 2;
	}
	.homepage-article-card-featured img {
		height: 320px;
	}
	.homepage-article-card img {
		height: 160px;
	}
}

/* Mobile: 1 column */
@media only screen and (max-width: 530px) {
	.homepage-articles-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.homepage-article-card-featured {
		grid-column: span 1;
		grid-row: span 1;
	}
	.homepage-article-card-featured img {
		height: 240px;
	}
	.homepage-article-card img {
		height: 180px;
	}
	.homepage-articles-grid .homepage-article-card:last-child .homepage-article-card-body {
		padding-bottom: 0;
	}
	.homepage-section-desc {
		margin-bottom: 0;
	}
}

.homepage-article-card img, .homepage-article-card .img-block {
	width: 100%;
	aspect-ratio: 6/4;
	object-fit: cover;
	background: #ddd;
	border-radius: 6px 6px 0 0;
}
.homepage-article-card-featured img, .homepage-article-card-featured .img-block {
	aspect-ratio: 3/3.5;
	height: 380px;
}
.homepage-article-card-body {
	padding: 14px 16px 18px;
}
.homepage-article-tag {
	display: inline-block;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	background: #00A6BA;
	color: white;
	padding: 3px 8px;
	border-radius: 4px;
	margin-bottom: 8px;
}
.homepage-article-card-featured .homepage-article-card-body h3{
	font-size: 22px;
}

.homepage-article-card p {
	font-size: 15px;
	line-height: 1.6;
	font-weight: 400;
}
.homepage-article-tag-yellow { background: #FEF385; color: #231F20; }
.homepage-article-card-body h3 { font-size: 16px; line-height: 1.3; margin-bottom: 6px; }
.homepage-article-card-featured .article-card-body h3 { font-size: 22px; }
.homepage-article-card-body .meta { font-size: 12px; color: #5A5758; }
.homepage-article-card-body .read-more {
	display: inline-block;
	margin-top: 10px;
	font-size: 13px;
	font-weight: 700;
	color: #00A6BA;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.places-slider-gallery {
	position: relative;
	margin-top: 30px;
	padding: 10px;
}



.places-slider-gallery.swiper {
	position: relative;
}

.places-slider-card {
	border-radius: 8px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 2px 12px rgba(0,0,0,0.08);
	outline: 3px solid transparent;
	transition: outline-color 0.2s, transform 0.2s;
	display: flex;
	flex-direction: column;
	height: 100%;
}


.places-slider-card:hover {
	outline-color: #00A6BA;
	transform: scale(1.02);
}
.places-slider-img {
	width: 100%;
	height: 210px;
	object-fit: cover;
	display: block;
	flex-shrink: 0;
	margin: 0;
}

@media only screen and (max-width: 960px) {
	.places-slider-img {
		height: 280px;
	}
	padding: 0;
}
.places-slider-body {
	padding: 14px 16px 16px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.places-slider-body h3 {
	flex: 1;
}
.places-slider-type {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #5A5758;
	margin-bottom: 6px;
}
.places-slider-body h3 { font-size: 17px; margin-bottom: 4px; }
.places-slider-location { font-size: 13px; color: #5A5758; margin-bottom: 0; }
.places-slider-location i { margin-right: 4px; font-size: 11px; }

.places-slider-gallery .swiper-pagination{
	position: relative;
	margin-top: 20px;
}
.places-slider-gallery .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
}

.places-slider-gallery .swiper-pagination-bullet-active {
	background: #00A6BA;
}
.places-slider-gallery .swiper-button-next,
.places-slider-gallery .swiper-button-prev {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 50px;
	height: 50px;
	background: #000;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(0,0,0,0.3);
	transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.places-slider-gallery .swiper-button-next:hover,
.places-slider-gallery .swiper-button-prev:hover {
	transform: translateY(-50%) scale(1.1);
	box-shadow: 0 4px 14px rgba(0,0,0,0.4);
}

.places-slider-gallery .swiper-button-next:after,
.places-slider-gallery .swiper-button-prev:after {
	position: static;
	color: white;
	font-size: 24px;
}

.places-slider-gallery .swiper-button-next:hover,
.places-slider-gallery .swiper-button-prev:hover {
	background: #00A6BA;
}

/* Areas grid wrapper — featured card + grid */
.homepage-areas-header {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0;
}

.homepage-areas-title {
	font-size: clamp(24px, 3vw, 36px);
	font-weight: 700;
	color: #231F20;
	letter-spacing: -0.5px;
	margin: 0;
}

.homepage-areas-grid-wrapper {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 24px;
	align-items: stretch;
	padding-top: 24px;
	padding-bottom: 48px;
}

.homepage-areas-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.homepage-area-card {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	cursor: pointer;
	display: block;
	text-decoration: none;
	transition: transform 0.2s, box-shadow 0.2s;
	min-height: 220px;
}

.homepage-area-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0,0,0,0.22);
}

.homepage-area-card-featured {
	min-height: 100%;
}

.homepage-area-card-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s;
	background: linear-gradient(135deg, #006f7a, #00A6BA);
}

.homepage-area-card:hover .homepage-area-card-img {
	transform: scale(1.04);
}

.homepage-area-card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.15) 55%, transparent 100%);
}

.homepage-area-card-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 20px 22px;
	color: white;
}

.homepage-area-card-content h3 {
	font-size: 22px;
	font-weight: 700;
	color: white;
	margin-bottom: 4px;
	line-height: 1.2;
}

.homepage-area-card-content p {
	font-size: 13px;
	color: rgba(255,255,255,0.85);
	margin: 0;
}

/* Recommendation grid */
.homepage-recommendation-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.homepage-recommendation-card {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	cursor: pointer;
	display: block;
	text-decoration: none;
	background: #1a3a2a;
	transition: transform 0.2s, box-shadow 0.2s;
	min-height: 200px;
}

.homepage-recommendation-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0,0,0,0.22);
}

.homepage-recommendation-card-tall {
	grid-row: span 2;
}

.homepage-recommendation-card-bg {
	width: 100%;
	height: 100%;
	min-height: inherit;
	object-fit: cover;
	display: block;
	transition: transform 0.3s;
}

.homepage-recommendation-card-tall .homepage-recommendation-card-bg {
	min-height: 440px;
}

.homepage-recommendation-card:hover .homepage-recommendation-card-bg {
	transform: scale(1.04);
}

.homepage-recommendation-card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.18) 55%, transparent 100%);
	pointer-events: none;
}

.homepage-recommendation-card-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 18px 20px 20px;
}

.homepage-recommendation-badge {
	display: inline-block;
	background: #FEF385;
	color: #231F20;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	padding: 4px 12px;
	border-radius: 20px;
	margin-bottom: 10px;
}

.homepage-recommendation-card-title {
	font-size: 20px;
	font-weight: 700;
	color: white;
	line-height: 1.2;
	margin-bottom: 4px;
}

.homepage-recommendation-card-tall .homepage-recommendation-card-title {
	font-size: 24px;
}

.homepage-recommendation-card-sub {
	font-size: 13px;
	color: rgba(255,255,255,0.82);
}

@media only screen and (max-width: 960px) {
	.homepage-recommendation-grid {
		grid-template-columns: 1fr 1fr;
		gap: 12px;
	}
	.homepage-recommendation-card-tall {
		grid-row: span 1;
	}
	.homepage-recommendation-card-tall .homepage-recommendation-card-bg {
		min-height: 200px;
	}
	.homepage-recommendation-card-title {
		font-size: 15px;
	}
	.homepage-recommendation-card-tall .homepage-recommendation-card-title {
		font-size: 18px;
	}
	.homepage-recommendation-badge {
		font-size: 10px;
		padding: 3px 8px;
	}
	.homepage-recommendation-card-sub {
		font-size: 12px;
	}
	.homepage-recommendation-card-content {
		padding: 12px 14px 14px;
	}
}

@media only screen and (max-width: 530px) {
	.homepage-recommendation-grid {
		grid-template-columns: 1fr;
	}
}

@media only screen and (max-width: 960px) {
	.homepage-areas-grid-wrapper {
		grid-template-columns: 1fr;
	}
	.homepage-area-card-featured {
		min-height: 260px;
	}
	.homepage-areas-grid {
		gap: 16px;
	}
	.homepage-area-card-content h3 {
		font-size: 18px;
	}
}

@media only screen and (max-width: 530px) {
	.homepage-area-card {
		min-height: 160px;
	}
	.homepage-area-card-featured {
		min-height: 220px;
	}
	.homepage-area-card-content h3 {
		font-size: 16px;
	}
	.homepage-area-card-content p {
		font-size: 12px;
	}
	.homepage-area-card-content {
		padding: 14px 16px;
	}
}

/*********************************************************************/
/* HP Events component */




/* Featured events grid */
.hp-events-featured {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.hp-events-featured-card {
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background: white;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.hp-events-featured-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.13);
}

.hp-events-featured-bg {
    width: 100%;
    height: 200px;
    position: relative;
    background-size: cover;
    background-position: center;
}

.hp-events-featured-bg--gradient {
    background: linear-gradient(to top, #008fa0 0%, #ace0f4 100%);
}

.hp-events-featured-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #00A6BA;
    color: white;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 16px;
}

.hp-events-featured-info {
    padding: 14px 16px 18px;
    background: white;
}

.hp-events-featured-info h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #231F20;
    line-height: 1.3;
}

.hp-events-featured-venue {
    font-size: 13px;
    color: #5A5758;
}

/* Events table */
.hp-events-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
}

.hp-events-table thead tr {
    background: #00A6BA;
}

.hp-events-table thead th {
    color: white;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 14px 20px;
    text-align: left;
}

.hp-events-table tbody tr {
    border-bottom: 1px solid #F2F2F2;
    transition: background 0.15s;
    cursor: pointer;
}

.hp-events-table tbody tr:hover {
    background: #f0fbfd;
}

.hp-events-table tbody td {
    padding: 13px 20px;
    font-size: 14px;
    color: #231F20;
    vertical-align: middle;
}

.hp-events-title-link {
    font-weight: 700;
    color: #00A6BA;
    text-decoration: none;
}

.hp-events-title-link:hover {
    text-decoration: underline;
}

.hp-events-venue-cell {
    color: #5A5758;
}

.hp-events-date-cell {
    white-space: nowrap;
}

/* Load more button */
.hp-events-more-btn {
    display: flex;
    justify-content: center;
    margin-top: 8px;
}

.hp-events-btn-load-more {
    padding: 12px 32px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: transparent;
    color: #231F20;
    border: 2px solid #231F20;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.hp-events-btn-load-more:hover {
    background: #231F20;
    color: white;
}

.hp-events-row-hidden {
    display: none;
}

/* No events message */
.hp-events-none {
    font-size: 15px;
    color: #5A5758;
    text-align: center;
    padding: 40px 0;
}

/* Tablet breakpoint */
@media only screen and (max-width: 960px) {
    .hp-events-featured {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

/* Mobile breakpoint */
@media only screen and (max-width: 767px) {
    .hp-events-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media only screen and (max-width: 530px) {
    .hp-events-featured {
        grid-template-columns: 1fr;
    }
    .hp-events-featured-card:last-child {
        display: block;
    }
    .hp-events-table thead th:nth-child(2),
    .hp-events-table tbody td:nth-child(2) {
        display: none;
    }
    .hp-events-table thead th,
    .hp-events-table tbody td {
        padding: 10px 12px;
        font-size: 13px;
    }
}
/*HOMEPAGE END*/
/*********************************************************************/



/*********************************************************************/
/*LANGUAGE SWITCHER START*/
/*********************************************************************/
.wpml-ls ul, .wpml-ls ul li {
    list-style-type: none;
}

.wpml-ls-sub-menu {
    visibility: hidden;
    position: absolute;
	top: 100%;
    z-index: 101;
	border-radius: 0 0 5px 5px;
}

.wpml-ls-item-toggle {
    display: block;
    text-decoration: none;
    color: white;
    background-color: transparent!important;
    padding: 5px 10px;
    line-height: 1;
}

.wpml-ls-sub-menu li:last-child a {
	border-radius: 0 0 5px 5px;
	padding-bottom: 20px!important;
}

.wpml-ls-link {
	display: flex;
	justify-content: center;
	width: 100%;
	padding-top: 12px!important;
	padding-bottom: 12px!important;
	text-decoration: none;
    color: white;
    background-color: rgba(35, 31, 32, 0.75);
    padding: 5px 10px;
    line-height: 1;
}

.wpml-ls-link:hover {
	text-decoration: underline;
	text-underline-offset: 4px;
	text-decoration-color: #FBF485;
	text-decoration-thickness: 2px;
}

/*********************************************************************/
/*BACKGROUND COLORS START*/
/*********************************************************************/
.bg-pacific {
	background-color: #00A5B9;
}

.bg-blue {
	background-color: #ACE0F4;
}

.bg-canary {
	background-color: #FEF385;
}

.bg-cultured {
	background-color: #F2F2F2;
}

.bg-white {
	background-color: #FFFFFF;
}

.bg-grey {
	background: #F2F2F2;
}

.bg-decor-top-right {
	background-image: url('../img/bg-element-1.svg');
	background-repeat: no-repeat;
	background-size: 937px;
	background-position: right -369px top -369px;
}
/*********************************************************************/
/*BACKGROUND COLORS END*/
/*********************************************************************/

input[type=search]::-webkit-search-cancel-button {
	-webkit-appearance: none;
}

.navbar-searchbar {
	position: absolute;
	display: none;
	width: 90%;
	height: 60px;
	border-radius: 5px;
	background-color: rgba(35, 31, 32, 0.75);
}

.navbar-searchbar form {
	position: absolute;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	width: 100%;
	height: 100%;
}

.navbar-searchbar form input {
	width: 100%;
	background-color: white;
	border: none;
	border-radius: 5px;
	height: 60px;
	padding-left: 15px;
	padding-right: 65px;
	border: 2px solid #231F20;
	font-size: 20px;
}

.navbar-searchbar form input:focus {
	color: #231F20!important;
}

.navbar-searchbar form button {
	position: absolute;
	display: flex;
	align-items: center;
	top: 0;
	right: 15px;
	height: 60px;
	background: transparent;
	border: none;
	cursor: pointer;
}

.navbar-searchbar form button img {
	width: 30px;
	height: auto;
	filter: brightness(0) saturate(100%) invert(9%) sepia(2%) saturate(3339%) hue-rotate(295deg) brightness(90%) contrast(91%);
}

.navbar-searchbar-active {
	display: block;
}



/*********************************************************************/
/*SEARCH PAGE START*/
/*********************************************************************/
.searchpage-container {
	width: 100%;
	max-width: 960px;
}

.searchpage-container p {
	margin-bottom: 20px!important;
}

.searchpage-form {
	display: flex;
	position: relative;
	margin-bottom: 20px;
}

.searchpage-form input {
	border: 2px solid #00A6BA;
	border-radius: 5px;
	width: 100%;
	height: 40px;
	padding-left: 10px;
	padding-right: 30px;
	color: #231F20;
}

.searchpage-form input:focus {
	background-color: white;
	color: #231F20!important;
}

.searchpage-container button {
	position: absolute;
	right: 0;
	height: 40px;
	background: transparent;
	border: none;
}

.searchpage-form button img {
	width: 25px;
	cursor: pointer;
	margin-left: 10px;
	filter: brightness(0) saturate(100%) invert(9%) sepia(2%) saturate(3339%) hue-rotate(295deg) brightness(90%) contrast(91%);
}

.searchpage-results {
	list-style: none;
}

.searchpage-results li {
	display: flex;
	width: 100%;
}

.searchpage-results li a {
	padding: 10px;
	background-color: #F2F2F2;
	border-radius: 5px;
	margin-bottom: 20px;
	width: 100%;
	transition-duration: 100ms;
}

.searchpage-results li a:hover {
	transform: scale(1.02);
	transition-duration: 100ms;
}
/*********************************************************************/
/*SEARCH PAGE END*/
/*********************************************************************/



/*********************************************************************/
/*SITEMAP START*/
/*********************************************************************/
.sitemap-container {
	display: flex;
	flex-direction: column;
}

.sitemap-container a:hover {
	text-decoration: underline;
	text-underline-offset: 2px;
	text-decoration-thickness: 2px;
}

.sitemap-single-link {
	margin-bottom: 20px;
}

.sitemap-container ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	margin-bottom: 20px;
}

.sitemap-container ul li {
	margin-top: 5px;
	margin-bottom: 5px;
}

.sitemap-container ul li:before {
	content: '—';
	margin: 10px 10px 10px 0;
}

.sitemap-container > ul > li > ul {
	margin-left: 25px;
}
/*********************************************************************/
/*SITEMAP END*/
/*********************************************************************/



.ui-widget-content {
    border: none;
    background: #F2F2F2;
    color: #333333;
}

.ui-accordion .ui-accordion-content {
    padding: 12px;
    border-top: 0;
    overflow: auto;
}

.place-information-time-and-prices .prices:not(:first-child) {
    margin-top: 20px;
    border-top: 2px solid #00A5B9;
    padding-top: 10px;
}

.page-aside-nav .menu-item > .sub-menu {
	margin-top: 25px;
	margin-left: -190px;
}

.page-aside-nav .menu-item.current-menu-parent {
    background-color: #00A6BA;
    color: white!important;
    border-radius: 0 5px 5px 0;
    margin-left: -20px;
    padding-left: 20px;
    padding-right: 10px;
    transition: color 0.1s, background-color 0.2s;
}

.page-aside-nav .menu-item.current-menu-parent li {
    color: white!important;
}

.page-aside-nav .menu-item.current-menu-parent li a {
    color: white!important;
}

.page-aside-nav .menu-item.current-menu-ancestor.menu-item-has-children a {
    color: white!important;
}

.page-aside-nav .menu-item .sub-menu .current_page_item a {
	text-decoration: underline;
	text-underline-offset: 2px;
}

.page-aside-nav .menu-item .sub-menu li a {
	transition-duration: 200ms;
}

@media only screen and (min-width: 1049px) {
	.page-aside-nav .menu-item .sub-menu li a {
		max-width: 130px;
	}	
}

.page-aside-nav .menu-item .sub-menu li:hover a {
	text-decoration: underline;
	text-underline-offset: 2px;
	transition-duration: 200ms;
}

.swiper-button-prev:after, .swiper-button-next:after {
	font-weight: 900;
	font-family: "Font Awesome 5 Free";
	font-size: 50px;
	color: white;
}

.swiper-button-next:after {
    content: '\f105';
}

.swiper-button-prev:after {
	content: '\f104';
}

/* --- Gradient options (applied on top of dark overlay) --- */

.gradient-teal::after {
	background:
			linear-gradient(135deg, rgba(0, 166, 186, 0.8) 0%, rgba(0, 111, 122, 0.4) 60%),
			linear-gradient(to top, rgba(0, 0, 0, 1.0) 0%, rgba(0, 0, 0, 0.15) 60%);
}

.gradient-yellow::after {
	background:
			linear-gradient(135deg, rgba(232, 215, 0, 0.8) 0%, rgba(184, 168, 0, 0.4) 60%),
			linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.05) 60%);
}

.gradient-green::after {
	background:
			linear-gradient(135deg, rgba(90, 158, 111, 0.8) 0%, rgba(58, 122, 80, 0.4) 60%),
			linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.05) 60%);
}

.gradient-orange::after {
	background:
			linear-gradient(135deg, rgba(224, 123, 57, 0.8) 0%, rgba(184, 94, 32, 0.4) 60%),
			linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.05) 60%);
}
