
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	--primary: #272f33;
	--secondary: #8e9e99;
	--tertiary: #bdc6c3;
	--highlight: #a97262;

	--tertiary_dark: #586970;
	--tertiary_light: rgba(88,105,112, 0.2);
	--secondary_light: rgba(176,138,93, 0.5);
	--secondary_lighter: rgba(169,114,98, 0.3);

	--font-family: 'mundial', sans-serif;
}

html {
	scroll-behavior: smooth;
	font-family: 'mundial', sans-serif;
	font-weight: 300;
	font-size: 15px;
	line-height: 1.5;
	overflow-x: hidden;
}

button {
	font-family: 'mundial', sans-serif;
}

body {
	color: var(--primary);
}

a {
	text-decoration: none;
	color: var(--secondary);
	transition: all 300ms;
}

.alignment-right {
	text-align: right;
}
.alignment-center {
	text-align: center;
}

img {
	max-width: 100%;
}

.noindex {
	z-index: 0;
}

p {
	line-height: 1.5;
	margin-bottom: 15px;
}

body:not(.home) main article{
	margin-bottom: 80px;
}

main article ul,
.wp-singular .col-9 ul{
	padding-left: 30px;
	margin-bottom: 20px;
}

main article ul li::marker,
.wp-singular .col-9 li::marker{
	color: var(--secondary);
}

/* ---------------------- SCROLLBALKEN ----------------------------*/


::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
	background-color: #F5F5F5;
}

::-webkit-scrollbar
{
	height: 10px;
	width: 10px;
	background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 3px rgba(0,0,0,.3);
	background-color: var(--tertiary);
}


[class *= 'vc_row'] {
	margin: 180px 0;
}

[class *= 'vc_row'].vc_inner {
	margin: 50px 0;
}

[class *= 'vc_row'].vc_clearfix{
	margin: -90px 0;
}

strong {
	font-weight: bold;
}

/* ---------------------- HEADLINES ----------------------------*/

h1, h2, h2 span, h3, h3 span, h4, h5, h6, .wp-block-preformatted {
	font-family: 'owners';
	line-height: 1.2;
	margin-bottom: 15px;
	margin-top: 0;
}

h1 {
	color: var(--secondary);
	font-size: 3.5rem;
	text-transform: uppercase;
}

h2, h2 * {
	font-size: 2.5rem;
	line-height: 1.2;
	/*text-transform: uppercase;*/
}

h3, h3 * {
	font-size: 1.6rem;
	text-transform: uppercase;
}

h4 {
	font-size: 1.4rem;
}

h5 {
	font-size: 1.2rem;
	letter-spacing: 1px;
}
h6 {
	font-size: 1rem;
	text-transform: uppercase;

}

@media screen and (max-width: 960px) {
	h1, h2, h3, h4, h5 ,h5 {
		word-break: break-word;
	}
	

}

@media screen and (max-width: 768px) {	
	h2, h2 * {
		font-size: 1.8rem;
	}
}


/* ---------------------- HEROSECTION ----------------------------*/



.lc-button {
	color: var(--primary);
	padding: 10px 20px;
	display: flex;
	align-items: center;
	cursor: pointer;
	border: none;
	border-radius: 8px;
	font-weight: 1000;
	width: initial;
}

.lc-button span {
	display: block;
	margin-left: 0.3em;
	transition: all 0.3s ease-in-out;
}

.lc-button i {
	display: block;
	transform-origin: center center;
	transition: all 0.3s ease-in-out;
}

.lc-button-2 {
	background-color: var(--secondary);
	color: #fff;
	padding: 10px 20px;
	cursor: pointer;
	border: none;
	border-radius: 8px;
	transition: all 300ms;
	line-height: 1;
	display: table;
	margin: 10px 0;
}

.lc-button-2:hover {
	background-color: var(--highlight);
}

.lc-button-2 i {
	margin-right: 10px;
}

.lc-button-2.navbuttons i {
	margin-right: 0px;
}


.lc-button:hover {
}

.lc-button:hover .i {
	transform: scale(1.25);
	transition: 0.5s linear;
}

.lc-button:hover span {
	transform: translateX(30px) scale(1.2);
	color: var(--secondary)
}

.lc-button:hover i {
	transform: translateX(15px) scale(1.2);
	color: var(--secondary)
}


.lc-button:active {
	transform: scale(0.95);
}


.title_row {
	padding: 20px 0 10px;
	position: relative;
	margin-bottom: 50px;
	text-align: center;
}

.title_row .shortinfos{
	/*border-bottom: 1px solid var(--highlight);*/
	display: flex;
	justify-content: center;
	gap: 20px;
	background: #f0f0f0;
	padding: 10px;
}

.title_row .shortinfos i {
	padding-right: 7px;
}

.title_row .shortinfos .icon-chefshat,
.title_row .shortinfos .icon-chefshat2 {
	padding-right: 3px;
}

.title_row h1 {
	font-family: 'owners-narrow';
	color: var(--tertiary_dark);
	line-height: 1;
	margin: 30px 0;
	letter-spacing: 2px;
}

@media screen and (max-width: 768px) {
	.title_row h1, h1 {
		font-size: 2.2rem;
		margin_ 0;
	}

	.title_row .shortinfos {
		flex-direction: column;
		gap: 10px;
	}
}

.scroll-up {
	display: flex;
	justify-content: flex-end;
}

#scroll-up-anker {
	padding: 20px;
}


/* ---------------------- FOOTER ----------------------------*/

.privacy-link {
	padding: 0 5px;
}

footer {
	background-color: var(--tertiary_dark);
}

footer .socialmedia i {
	font-size: 3rem;
	padding-right: 10px;
}

#footerlogo {
	height: 100%;
	align-items: center;
	display: flex;
}

#footerlogo img {
	max-width: 200px;
	width: 90%;
}

footer .contact-icons {
	align-items: center;
	display: flex;
	color: #fff;
	flex-direction: row;
	justify-content: left;
	margin-bottom: 10px;
}

footer h6 {
	margin-bottom: 30px;
}

footer a , footer h6 {
	color: #fff;
}

footer .contact-icons  i {
	font-size: 1.2rem;
	flex-shrink: 0;
	margin-bottom: 0;
	width: 30px;
}

.bottom-footer {
	background-color: var(--primary);
	color: #fff;
}

/*footer [class*="col-"]:last-child{
	text-align: right;
}*/

#footer-menu  {
	align-items: center;
	display: flex;
}

#footer-menu a, #footer-menu-policy a {
	color: #fff;
	font-weight: 100;
}


#li.current_page_item {
	opacity: 0.7;
}

#footer-menu a:before {
	content: "\f054";
	color: #fff;
	font-size: 0.7rem;
	margin-right: 8px;
	font-weight: 900;

	padding-right: 0px;
	transition: all 300ms;

	font-family: "Font Awesome 5 Free";
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
}

#footer-menu a:hover:before {
	padding-right: 7px;
}


footer a {
	transition: all 300ms;
}

footer a:hover{
	opacity: 0.6;
}

.mobile-footer {
	display: none;
}

.bottom-footer .menu  {
	display: flex;
	justify-content: flex-end;
	gap: 20px;
}
.bottom-footer .menu li  {
	list-style: none;
}

.bottom-footer .menu li a:hover  {
	opacity: 0.7;
}

a[hreflang="de-AT"] {
	position: relative;
}

a[hreflang="de-AT"]:before {
	background-image: url(https://retreat-novascotia.com/wp-content/themes/lisacarina-theme/images/at.png);
	content : '';
	display: block;
	left: 16px;
	height: 11px;
	position: absolute;
	width: 16px;
}

.special-headline b{
	color: var(--secondary);
}

#map-canvas > div {
	background-size: cover;
	background-position: center;
	align-items: center;
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: center;
}

#map-canvas > div p {
	background-color: rgba(255,255,255, 0.7);
	padding: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

#map-canvas > div p button {
	margin-top: 20px;
}


@media screen and (max-width: 960px) {

	footer .row {
		justify-content: space-between;
	}

	footer .row > [class ^='col-'], footer .innerrow > [class ^='col-'] {
		width: initial;
	}

	#footerlogo img {
		min-width: 155px;
	}

	footer .row > .col-2 {
		display: none;
	}

	.mobile-footer {
		display: block;
		background-color: var(--tertiary);
	}

	footer  #footer-menu2 {
		justify-content: center;
	}
	footer  #footer-menu2 ul{
		display: flex;
		justify-content: center;
		padding: 15px 0;
	}
	footer  #footer-menu2 ul a {
		color: #fff;
		padding: 10px;
	}

}

@media screen and (max-width: 700px) {
	footer .row {
		justify-content: space-between;
		flex-direction: column;
		align-items: flex-start;
	}
	footer .row > [class ^='col-'], footer .innerrow > [class ^='col-'] {
		margin: 20px 0;
	}
}

#mam-sidebar {
	background-color: var(--tertiary_light);
	padding: 30px 20px;
	position: sticky;
	top: 160px;
}

#mam-sidebar li {
	list-style: none;
}

#mam-sidebar li:before {
	content: "\e937";
	font-family: 'icomoon' !important;
	speak: never;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	padding-right: 10px;
	-webkit-font-smoothing: antialiased;
}

#mam-sidebar a:hover {
	color: var(--primary);
}

#mam-sidebar ul {
	margin-left: 10px;
}

.post-layout {
	align-items: center;
}

.post-layout img {
	height: initial;
}

.posted-on {
	color: var(--tertiary_dark);
	padding-bottom: 10px;
	display: inline-block;
}

.post-layout .lc-button-2 {
	display: inline-block;
	margin-top: 20px;
}

.post-layout {
	border-bottom: 1px solid var(--tertiary);
}

.kk-star-ratings .kksr-legend {
	margin-top: 2px;
}