/*
	Theme Name: 	Galleria Savoia Rimini
	Description: 	...
	Author: 		Èdita
	Author URI: 	http://www.edita.com
	Version: 		1.0.0
	Text Domain: 	template
*/



/* !@group animations */

@keyframes opacity {
	from,
	to {
		opacity: 1;
	}
	10%, 30%, 50%, 70%, 90% {
		opacity: .4;
	}
	20%, 40%, 60%, 80% {
		opacity: .9;
	}
}

@keyframes point-left {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-.8rem);
	}
}

@keyframes point-right {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(.8rem);
	}
}

body:not(.touch) .pulse:hover,
body:not(.touch) a:hover .pulse,
body:not(.touch) button:hover .pulse,
body:not(.touch) .main-menu a:hover {

	animation: opacity 10s infinite;
}

body:not(.touch) .point-left:hover,
body:not(.touch) a:hover .point-left,
body:not(.touch) button:hover .point-left {

	animation: point-left .5s cubic-bezier(.5, 0.05, 1, .5) alternate 10;
}

body:not(.touch) .point-right:hover,
body:not(.touch) a:hover .point-right,
body:not(.touch) button:hover .point-right {

	animation: point-right .5s cubic-bezier(.5, 0.05, 1, .5) alternate 10;
}

[data-aos='imgzoom'] { overflow: hidden; }

[data-aos='imgzoom'] img {

	transform: scale(1.15);
	transition: transform .8s ease-in-out;
	transition-delay: .5s;
}

[data-aos='imgzoom'].animate__animated img { transform: scale(1); }

/* @end */



/* !@group common */

.pswp__bg {

	background-color: var(--menu-back);
	-webkit-backdrop-filter: blur(1rem);
	backdrop-filter: blur(1rem);
}

.pswp__counter { display: none; }

.secondary-cta {

	--color: var(--text);

	color: var(--color);
	font-family: var(--font-family2);
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	column-gap: 1.2rem;
	font-size: 2.2rem;
	line-height: 1.8;
	font-weight: 700;
	letter-spacing: .05ch;
	text-decoration: none;
}

.secondary-cta > .label {

	border-bottom: .1rem solid var(--color);
	padding: 0 1.5rem;
}

.secondary-cta svg { fill: var(--color); }

.slider-controls {

	--color: var(--text);
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	line-height: 1;
	column-gap: 1.6rem;
	filter: drop-shadow( 0 .2rem .2rem rgba(0,0,0,.5) );
	pointer-events: none;
}

.slider-controls button { pointer-events: all; }
.slider-controls svg { fill: var(--color); }

.bullets {

	display: flex;
	flex-direction: row;
	align-items: center;
	column-gap: 1.6rem;
}

.bullet-outline,
.bullet-dot { transition: opacity .25s ease; }
.bullet-dot,
.glide__bullet--active .bullet-outline { opacity: 0; }
.glide__bullet--active .bullet-dot { opacity: 1; }

.vertical-slider-controls {

	display: flex;
	flex-direction: column;
	row-gap: .6rem;
	z-index: 1;
	filter: drop-shadow( -2rem 2rem 2rem rgba(72,47,11,.3) );
}

.vertical-slider-controls button {

	background-color: var(--body);
	width: clamp( 5rem, 3.7vw, 7.4rem );
	height: clamp( 5rem, 3.7vw, 7.4rem );
	display: flex;
}

.vertical-slider-controls button svg {

	margin: auto;
	display: block;
	width: clamp( 1.19rem, 0.85vw, 1.7rem );
	height: clamp( 1.75rem, 1.25vw, 2.5rem );
}


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

	.vertical-slider-controls {

		flex-direction: row;
		column-gap: .6rem;
	}
}


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

	.vertical-slider-controls { filter: drop-shadow( -1rem 1rem 1rem rgba(72,47,11,.3) ); }
}

/* @end */



/* !@group main menu */

#main-menu {

	display: none;
	opacity: 0;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	background: var(--menu-back);
	padding: calc( var(--header) + 3rem ) 0 3rem;
	pointer-events: none;
}

body.menu-open,
body.form-open { overflow-y: hidden; }

.menu-open #main-menu {
	pointer-events: all;
	display: flex;
	opacity: 0;
	-webkit-backdrop-filter: blur(1rem);
	backdrop-filter: blur(1rem);
}

#main-menu > .inner {

	width: 91.3vw;
	margin: auto 8.7vw;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

.main-menu {

	display: flex;
	flex-direction: column;
	row-gap: max( 2rem, 2vmin );
}

.main-menu li a {

	color: var(--text);
	font-size: max( 3rem, 3vmin );
	line-height: 1;
	font-weight: 300;
	text-transform: uppercase;
	text-decoration: none;
}

.lang-menu {

	font-size: 1.8rem;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: .05ch;
	text-align: right;
}

.lang-menu a {

	color: var(--text);
	text-decoration: none;
}


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

	#main-menu { padding-bottom: var(--mobile-cta-height); }
}


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

	#main-menu > .inner {

		flex-direction: column-reverse;
		margin-top: 0;
		height: 100%;
	}

	#main-menu > .inner > .left { margin: auto 0; }

	.main-menu {

		text-align: center;
		align-items: center;
	}

	.lang-menu {

		display: flex;
		flex-direction: row;
		justify-content: center;
		column-gap: 3rem;
	}

	.lang-menu a > span { display: none; }
}

/* @end */



/* !@group editor content */

.editor-content { letter-spacing: .075ch; }
.editor-content :is( strong, b ) { font-weight: 600; }
.editor-content :is( em, i ) { font-style: italic; }
.editor-content p { margin-bottom: 3rem; }

.editor-content h2,
.editor-content h3,
.editor-content h4,
.editor-content h5,
.editor-content h6 {

	line-height: 1;
	font-weight: 500;
	letter-spacing: .05ch;
	text-transform: uppercase;
	margin-bottom: 1rem;
}

.editor-content h2 { font-size: 2.4rem; }
.editor-content h3 { font-size: 2.3rem; }
.editor-content h4 { font-size: 2.2rem; }
.editor-content h5 { font-size: 2.1rem; }
.editor-content h6 { font-size: 2.0rem; }

/* @end */



/* !@group site titles */

h1,
h2.popup-title,
h2.event-popup-title {

	font-family: var(--font-family2);
	font-size: 4.2rem;
	line-height: 1;
	font-weight: 600;
	letter-spacing: .05ch;
	text-transform: uppercase;
	text-wrap: balance;
}

h2.popup-title { margin-bottom: 3rem; }


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

	h1 { font-size: 3rem; }
	h2.popup-title { font-size: 2.8rem; }
}

/* @end */



/* !@group content */

#chi-siamo {

	padding: clamp( 7rem, 7vw, 14rem ) 3rem clamp( 6.75rem, 6.75vw, 13.5rem );
	scroll-margin-top: var(--header);
}

#chi-siamo > .inner {

	width: 100%;
	max-width: 107rem;
	margin: 0 auto;
}

main {

	text-align: center;
	text-wrap: balance;
}

main header { margin-bottom: clamp( 4rem, 4vw, 8rem ); }

aside {

	display: flex;
	flex-direction: row;
	justify-content: center;
	column-gap: 6rem;
	margin-top: 7rem;
}

aside > article {

	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 1fr;
	grid-column-gap: 0rem;
	grid-row-gap: 0rem;
	width: 43rem;
}

aside > article > .background,
aside > article > .text { grid-area: 1 / 1 / -1 / -1; }

aside > article > .text {

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.map-article > .text img { margin-bottom: 2.6rem; }
.apertura-article > .text img { margin-bottom: 2.8rem; }

aside > article > .text h2 {

	font-size: 1.6rem;
	line-height: 1.4;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: .05ch;
	margin-bottom: 2.6rem;
}

aside > article > .text h2 :is( b, strong ) { font-weight: 600; }

aside > article > .text .apertura {

	font-family: var(--font-family2);
	font-size: 2.2rem;
	line-height: 1;
	font-weight: 700;
	font-style: italic;
	letter-spacing: .05ch;
}


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

	aside {

		flex-direction: column;
		align-items: center;
	}
}


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

	#chi-siamo { padding: 5rem 3rem; }

	aside {

		margin-top: 5rem;
		margin-left: -2rem;
		margin-right: -2rem;
		overflow: hidden;
	}

	aside > article { width: initial; }

	aside > article .background svg {

		width: 100%;
		height: auto;
	}

	.map-article > .text img,
	aside > article > .text h2 { margin-bottom: 2rem; }
}

/* @end */



/* !@group attività */

#attivita {

	padding: 0 3rem clamp( 10rem, 10vw, 20rem );
	border-top: .1rem solid var(--text);
	scroll-margin-top: var(--header);
}

#attivita > .section-header {

	width: 100%;
	max-width: max( 68.5vw, 137rem );
	margin: 0 auto;
	padding: clamp( 5.9rem, 5.9vw, 11.8rem ) 0 clamp( 7rem, 7vw, 14rem );
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-end;
	column-gap: 3rem;
}

#attivita > .section-header::before {

	content: '';
	display: block;
	width: clamp( 11rem, 11vw, 22rem );
	height: .2rem;
	background-color: var(--text);
	position: absolute;
	left: 0;
	top: .1rem;
}

#attivita > .section-header .text {

	width: 50%;
	max-width: 58rem;
}

#attivita > .section-header .text h2 {

	font-family: var(--font-family2);
	font-size: 3.2rem;
	line-height: 1.2;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .05ch;
	margin-bottom: 4rem;
}

#attivita > .section-header .text p { margin-bottom: 0; }

#attivita > .section-header dl {

	columns: 2;
	letter-spacing: .05ch;
	white-space: nowrap;
}

#attivita > .section-header dl > div {

	break-inside: avoid;
	padding-top: 2.8rem;
}

#attivita > .section-header dl dt {

	font-size: 1.6rem;
	line-height: 1;
	text-transform: uppercase;
	margin-bottom: .5rem;
}

#attivita > .section-header dl a {

	color: var(--text);
	display: inline-block;
	font-family: var(--font-family2);
	font-size: 2.8rem;
	line-height: 1.6;
	font-weight: 600;
	letter-spacing: .05ch;
	text-decoration: none;
	position: relative;
}

#attivita > .section-header dl a::after {

	content: '';
	display: block;
	background-color: var(--text);
	height: .1rem;
	width: 16rem;
	position: absolute;
	left: 0;
	bottom: 0;
}

#mappa {

	width: 100%;
	max-width: max( 77.5vw, 155rem );
	margin: 0 auto clamp( 11rem, 11vw, 22rem );
	scroll-margin-top: var(--header);
}

#mappa img { width: 100%; }
#attivita-list { scroll-margin-top: var(--header); }

.attivita-list-header {

	width: 100%;
	max-width: max( 91vw, 182rem );
	margin: 0 auto clamp( 9rem, 9vw, 18rem );
	border-bottom: .1rem solid var(--text);
	display: flex;
	flex-direction: row;
	justify-content: center;
	text-align: center;
	position: relative;
}

.attivita-list-header::before,
.attivita-list-header::after {

	content: '';
	display: block;
	width: clamp( 11rem, 11vw, 22rem );
	height: .2rem;
	background-color: var(--text);
	position: absolute;
	top: calc( 100% + .2rem );
}

.attivita-list-header::before { left: 11.3vw; }
.attivita-list-header::after { right: 11.3vw; }

.attivita-list-header h2 {

	color: var(--text);
	background-color: var(--body);
	font-family: var(--font-family2);
	font-size: 3.2rem;
	line-height: 1;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .05ch;
	margin-bottom: -.4ch;
	padding: 0 max( 3rem, 2.75vw );
}

.attivita {

	scroll-margin-top: var(--header);
	display: flex;
	align-items: center;
	width: 87.2vw;
	margin: 0 auto;
}

.attivita:nth-of-type( odd ) { flex-direction: row-reverse; }
.attivita:nth-of-type( even ) { flex-direction: reverse; }
.attivita + .attivita { margin-top: max( 6.3rem, 6.3vw ); }
.attivita > :is( .image-container, .text ) { width: 50%; }

.attivita .text { display: flex; }
.attivita:nth-of-type( odd ) .text { padding: 0 3rem 0 4.5rem; }
.attivita:nth-of-type( even ) .text { padding: 0 4.5rem 0 3rem; }

.attivita .text-inner {

	width: 64rem;
	display: flex;
	flex-direction: column;
}

.attivita:nth-of-type( odd ) .text-inner { margin: auto 4rem auto auto; }
.attivita:nth-of-type( even ) .text-inner { margin: auto auto auto 4rem; }

.attivita .text-inner hgroup {

	display: flex;
	flex-direction: column;
	row-gap: 1.5rem;
	margin-bottom: clamp( 3.5rem, 3.5vw, 7rem );
}

.attivita .text-inner hgroup p {

	font-size: 2rem;
	line-height: 1;
	letter-spacing: .05ch;
	text-transform: uppercase;
}

.attivita .text-inner hgroup h3 {

	font-family: var(--font-family2);
	font-size: clamp( 3.4rem, 2.35vw, 4.7rem );
	line-height: 1;
	font-weight: 600;
	letter-spacing: .05ch;
}

.attivita .text-inner .description { margin-bottom: clamp( 2rem, 2vw, 4rem ); }
.attivita .image { position: relative; }
.attivita .image img { width: 100%; }

.attivita .line {

	content: '';
	display: block;
	position: absolute;
	pointer-events: none;
}

.attivita .line-vertical {

	top: 0;
	width: 0.35vw;
	height: 40.35vw;
}

.attivita:nth-of-type( odd ) .line-vertical { right: -1.8vw; }
.attivita:nth-of-type( even ) .line-vertical { left: -1.8vw; }

.attivita .line-horizontal {

	bottom: 0.9vw;
	width: 47.75vw;
	height: 0.45vw;
}

.attivita:nth-of-type( odd ) .line-horizontal { left: -1.3vw; }
.attivita:nth-of-type( even ) .line-horizontal { right: -1.3vw; }
.attivita-slideshow { position: relative; }

.attivita-slider-controls {

	position: absolute;
	bottom: -3rem;
}

.attivita:nth-of-type( odd ) .attivita-slider-controls { left: 1.2rem; }
.attivita:nth-of-type( even ) .attivita-slider-controls { right: 1.2rem; }


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

	#attivita > .section-header {

		flex-direction: column;
		align-items: center;
		row-gap: 4rem;
	}

	#attivita > .section-header .text {

		width: 100%;
		max-width: initial;
		text-align: center;
		text-wrap: balance;
		align-self: stretch;
	}

	#attivita > .section-header dl { columns: initial; }

	.attivita-list-header h2 {

		background-color: transparent;
		margin-bottom: 3rem;
	}

	.attivita:nth-of-type( odd ),
	.attivita:nth-of-type( even ) { flex-direction: column-reverse; }
	.attivita > :is( .image-container, .text ) { width: 100%; }
	.attivita .line { display: none; }

	.attivita:nth-of-type( odd ) .attivita-slider-controls {

		left: initial;
		right: 1.2rem;
	}

	.attivita:nth-of-type( odd ) .text,
	.attivita:nth-of-type( even ) .text { padding: 4rem 3rem 0 4rem; }

	.attivita:nth-of-type( odd ) .text-inner,
	.attivita:nth-of-type( even ) .text-inner {

		width: initial;
		margin: 0;
	}
}


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

	#attivita { padding-bottom: 8rem; }

	#attivita > .section-header {

		padding: 5rem 0;
		row-gap: 3rem;
	}

	#attivita > .section-header::before {

		left: 50%;
		transform: translateX(-50%);
	}

	#attivita > .section-header .text h2 {

		font-size: 2.8rem;
		margin-bottom: 3rem;
	}

	#mappa {

		width: calc( 100% + 4rem );
		margin: 0 -2rem 5rem;
	}

	.attivita-list-header { margin-bottom: 4rem; }

	.attivita-list-header::before, .attivita-list-header::after {

		left: 50%;
		transform: translateX(-50%);
	}

	.attivita-list-header::after { display: none; }
	.attivita-slider-controls { bottom: -1rem; }
	.attivita:nth-of-type( odd ) .text,
	.attivita:nth-of-type( even ) .text { padding: 4rem 0 0; }

	.attivita .text-inner hgroup {

		row-gap: 1rem;
		margin-bottom: 2rem;
	}

	.attivita .text-inner hgroup p { font-size: 1.8rem; }
	.attivita .text-inner hgroup h3 { font-size: 2.8rem; }

	.attivita .text-inner .description {

		text-wrap: pretty;
		margin-bottom: 0;
	}
}

/* @end */



/* !@group eventi */

#eventi {

	border-top: .1rem solid var(--text);
	background-color: var(--beige);

	background-image:
		linear-gradient(
			180deg,
			var(--body) 0%,
			var(--body) clamp( 10.9rem, 10.9vw, 21.8rem ),
			transparent clamp( 10.9rem, 10.9vw, 21.8rem )
		);

	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100% auto;

	padding: 0 clamp( 3rem, 2.5vw, 5rem ) clamp( 5rem, 4vw, 8rem );
	margin-bottom: clamp( 13rem, 13vw, 26rem );
}

#eventi > .inner {

	display: flex;
	flex-direction: column;
	position: relative;
	border-bottom: .1rem solid var(--grey);
}

#eventi .section-header {

	height: clamp( 10.9rem, 10.9vw, 21.8rem );
	display: flex;
	text-align: center;
	position: relative;
}

#eventi .section-header::before {

	content: '';
	display: block;
	width: clamp( 11rem, 11vw, 22rem );
	height: .2rem;
	background-color: var(--text);
	position: absolute;
	left: calc( 50% - clamp( 5.5rem, 5.5vw, 11rem ) );
	top: .1rem;
}

#eventi .section-header h2 {

	font-family: var(--font-family2);
	font-size: 3.2rem;
	line-height: 1;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .05ch;
	margin: auto;
}

#eventi .section-content { padding: clamp( 4.8rem, 4.8vw, 9.6rem ) clamp( 6.9rem, 6.9vw, 13.8rem ) 0; }

.eventi-slideshow { position: relative; }

.eventi-slider-controls {

	position: absolute;
	top: 100%;
	left: 50%;
	transform: translate( -50%, -25% );
}

.event {

	display: flex;
	flex-direction: row-reverse;
	white-space: normal;
	padding-bottom: clamp( 6rem, 6vw, 12rem );
}

.event > .image { width: 52%; }
.event > .image img { width: 100%; }

.event > .text {

	width: 48%;
	display: flex;
	padding: 0 3rem;
}

.event > .text > .text-inner {

	width: 100%;
	max-width: 47rem;
	margin: auto;
}

.event > .text h3 {

	font-family: var(--font-family2);
	font-size: 4.3rem;
	line-height: 1;
	font-weight: 600;
	letter-spacing: .05ch;
	margin-bottom: 5rem;
}

.event-date-and-time {

	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	column-gap: 3rem;
	margin-bottom: 7rem;
}

.modal-inner .event-date-and-time { justify-content: flex-start; }

.event-date,
.event-time {

	display: flex;
	flex-direction: row;
	column-gap: 2rem;
}

.event-date-and-time .item-details {

	display: flex;
	flex-direction: column;
	row-gap: 1rem;
	line-height: 1;
}

.event-date-and-time .item-details .label {

	font-size: 1.6rem;
	text-transform: uppercase;
	letter-spacing: .05ch;
}

.event-date-and-time .item-details time {

	font-family: var(--font-family2);
	font-weight: 700;
	font-style: italic;
	letter-spacing: .05ch;

}

.event-popup-header {

	display: flex;
	flex-direction: column;
	align-items: center;
	row-gap: 4rem;
}

.single-event-slideshow {

	width: 100%;
	position: relative;
}

.single-event-slider-controls {

	position: absolute;
	right: 1.5rem;
	bottom: 0;
	transform: translateY(25%);
}


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

	#eventi {

		background-image:

			linear-gradient(
				180deg,
				var(--body) 0%,
				var(--body) 15rem,
				transparent 15rem
			);
	}

	#eventi .section-header { height: 15rem; }

	.event {

		flex-direction: column-reverse;
		row-gap: 4rem;
	}

	.event > .text,
	.event > .image { width: 100%; }
}


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

	#eventi {

		padding-left: 0;
		padding-right: 0;
		margin-bottom: 5rem;
	}

	#eventi .section-header { padding: 0 3rem; }

	#eventi .section-header h2 {

		font-size: 2.8rem;
		text-wrap: balance;
	}

	#eventi .section-content { padding: 4rem 3rem; }
	.event { row-gap: 3rem; }
	.event > .text { padding: 0; }

	.event > .text h3 {

		font-size: 2.8rem;
		margin-bottom: 3rem;
	}

	.event-date-and-time {

		margin-bottom: 3rem;
		column-gap: 2rem;
		justify-content: flex-start;
	}

	.event-date,
	.event-time { column-gap: 1rem; }

	.event-date > img {

		width: 3.19rem;
		height: 3.19rem;
	}

	.event-time > img {

		width: 3.32rem;
		height: 3.19rem;
	}

	.event-date-and-time .item-details { row-gap: .5rem; }
	.event-date-and-time .item-details .label { font-size: 1.5rem; }
	.event-date-and-time .item-details time { font-size: 1.6rem; }
	.eventi-slider-controls { transform: translate( -50%, 25% ); }
	.event-popup-header h2.popup-title { margin-bottom: 0; }
}

/* @end */



/* !@group footer */

#site-footer {

	color: var(--footer-text);
	background-color: var(--footer-back);

	background-image:

		linear-gradient(
			180deg,
			var(--body) 0%,
			var(--body) 3.8rem,
			transparent 3.8rem
		);

	border-top: .1rem solid var(--text);
}

#site-footer > div { padding: 0 3rem; }

#site-footer .inner {

	width: 100%;
	max-width: 156rem;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
}

#site-footer > .footer-top { border-bottom: .1rem solid var(--grey); }

#site-footer > .footer-top .left {

	flex: 0 0 54%;
	padding-right: clamp( 5rem, 5vw, 10rem );
}

#site-footer > .footer-top .right {

	flex: 0 0 46%;
	padding-left: clamp( 7.5rem, 7.5vw, 15rem );
}

#site-footer > .footer-top .left,
#site-footer > .footer-top .right {

	padding-top: 15rem;
	padding-bottom: 12rem;
	position: relative;
}

#site-footer > .footer-top .left::before,
#site-footer > .footer-top .right::before {

	content: '';
	display: block;
	width: clamp( 11rem, 11vw, 22rem );
	height: .2rem;
	background-color: var(--text);
	position: absolute;
	top: .1rem;
}

#site-footer > .footer-top .left::before { left: 0; }
#site-footer > .footer-top .right::before { left: clamp( 7.5rem, 7.5vw, 15rem ); }

#site-footer > .footer-middle .left,
#site-footer > .footer-middle .right {

	padding-top: 10rem;
	padding-bottom: 15rem;
}

#site-footer > .footer-middle .left { padding-right: clamp( 7.5rem, 7.5vw, 15rem ); }
#site-footer > .footer-middle .right { padding-left: clamp( 7.5rem, 7.5vw, 15rem ); }

#site-footer > .footer-bottom {

	color: var(--grey);
	background-color: var(--body);
	font-size: 1.3rem;
	line-height: 1;
	font-weight: 400;
	letter-spacing: .05ch;
	border-bottom: .1rem solid var(--text);
	padding-top: 3rem;
	padding-bottom: 3rem;
	margin-bottom: 2.5rem;
}

#site-footer > .footer-middle .left,
#site-footer > .footer-bottom .left { flex: 0 0 64%; }
#site-footer > .footer-middle .right,
#site-footer > .footer-bottom .right { flex: 0 0 36%; }
#site-footer > .footer-bottom .right { text-align: center; }
#site-footer > .footer-middle .left,
#site-footer > .footer-middle .right { position: relative; }

#site-footer > .footer-middle .left::before,
#site-footer > .footer-middle .right::before {

	content: '';
	display: block;
	width: clamp( 11rem, 11vw, 22rem );
	height: .2rem;
	background-color: var(--footer-text);
	position: absolute;
	top: .1rem;
}

#site-footer > .footer-middle .left::before { left: 0; }
#site-footer > .footer-middle .right::before { left: clamp( 7.5rem, 7.5vw, 15rem ); }
#contattaci { scroll-margin-top: var(--header); }

.footer-details {

	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 3rem;
	row-gap: 5rem;
	position: relative;
}

.details-top { flex: 0 0 100%; }

.details-left {

	display: flex;
	flex-direction: column;
	row-gap: 3rem;
}

.footer-details > svg {

	position: absolute;
	right: clamp( -0.3rem, -0.15vw, -0.15rem );
	bottom: clamp( -1.2rem, -0.6vw, -0.6rem );
	display: block;
	height: 80%
}

.details-left address {

	font-size: 1.8rem;
	line-height: 1.3;
	text-transform: uppercase;
	letter-spacing: .05ch;
}

.footer-section .title {

	color: var(--grey);
	font-size: 1.5rem;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: .05ch;
	margin-bottom: 1.4rem;
}

.plaza-hotels img {

	display: block;
	margin-top: 2.5rem;
}

.footer-contacts {

	font-family: var(--font-family2);
	font-size: 1.8rem;
	line-height: 1.3;
	font-weight: 600;
}

.footer-contacts a {

	color: var(--footer-text);
	text-decoration: none;
}

.footer-apertura {

	display: flex;
	flex-direction: column;
	align-items: center;
	row-gap: 3rem;
	text-align: center;
}

.footer-apertura .clock {

	background-color: var(--footer-text);
	display: block;
	width: 5rem;
	height: 4.8rem;
	mask: url('./assets/svg/clock.svg') no-repeat center center / contain;
}

.footer-apertura .apertura-title {

	font-size: 1.6rem;
	line-height: 1.3;
	text-transform: uppercase;
	letter-spacing: .05ch;
}

.footer-apertura .apertura-title :is( b, strong ) { font-weight: 600; }

.footer-apertura .apertura {

	font-family: var(--font-family2);
	font-size: 2.2rem;
	line-height: 1;
	font-weight: 700;
	font-style: italic;
	letter-spacing: .05ch;
}

.social {

	display: flex;
	flex-direction: row;
	column-gap: 3rem;
	margin-top: 2rem;
}

.social a {

	color: var(--footer-text);
	text-decoration: none;
	font-size: 2.4rem;
	line-height: 1;
}

.footer-extra {

	display: flex;
	flex-direction: row;
	justify-content: space-between;
	position: relative;
}

.footer-extra > svg {

	position: absolute;
	right: clamp( -0.3rem, -0.15vw, -0.15rem );
	bottom: clamp( -2rem, -1vw, -1rem );
	display: block;
}

.sede {

	font-size: 1.8rem;
	line-height: 1.6;
	letter-spacing: .05ch;
	margin-bottom: 3rem;
}

.sede :is( b, strong ) {

	font-weight: 600;
	display: block;
	padding-bottom: .5rem;
}

.footer-menu a {

	color: var(--footer-text);
	font-size: 1.5rem;
	line-height: 1.8;
	text-transform: uppercase;
	letter-spacing: .-5ch;
	text-decoration: underline;
	text-decoration-thickness: .1rem;
}

body:not( .touch ) .footer-menu a:hover { text-decoration: none; }

.legal,
.cookie-info {

	font-size: 1.5rem;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: .05ch;
	display: flex;
	flex-direction: column;
	row-gap: 1.5rem;
	margin-top: 3.8rem;
	margin-bottom: 3rem;
}

.legal b,
.cookie-info b { font-weight: 600; }

.legal a,
.cookie-info a {

	color: var(--footer-text);
	text-decoration: none;
}

.cookie-info a { text-decoration: underline; }

.copyright {

	font-size: 1.5rem;
	line-height: 1;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .05ch;
}

#credits {

	line-height: 1;
	display: inline-flex;
	align-items: center;
	column-gap: .5rem;
}

#credits img {

	display: inline-block;
	vertical-align: middle;
}

#maplink {

	--color: var(--footer-text);
	margin-top: 3rem;
	display: none;
}


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

	#site-footer > div { padding: 0; }

	#site-footer .inner {

		flex-direction: column;
		align-items: center;
	}

	.footer-details > svg,
	.footer-extra > svg { display: none; }

	#site-footer > .footer-top .left,
	#site-footer > .footer-middle .left {

		padding: 10rem 0;
		width: 100%;
		max-width: 80rem;
		margin: 0 auto;
	}

	#site-footer > .footer-top .right,
	#site-footer > .footer-middle .right {

		padding: 0 0 10rem;
		width: 100%;
		border-top: .1rem solid var(--grey);
	}

	#site-footer > .footer-top .right header,
	#site-footer > .footer-top .right #efb-form-1,
	#site-footer > .footer-middle .right .legal-container {

		width: 100%;
		max-width: 80rem;
		margin: 0 auto;
	}

	#site-footer > .footer-top .right::before,
	#site-footer > .footer-middle .right::before { display: none; }

	#site-footer > .footer-top .right header,
	#site-footer > .footer-middle .right .legal-container {

		padding-top: 10rem;
		position: relative;
	}

	#site-footer > .footer-top .right header::before,
	#site-footer > .footer-middle .right .legal-container::before {

		content: '';
		display: block;
		width: clamp(11rem, 11vw, 22rem);
		height: .2rem;
		background-color: var(--footer-text);
		position: absolute;
		top: .1rem;
	}

	#credits { margin-top: 3rem; }
}


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

	#site-footer { margin-bottom: var(--mobile-cta-height); }
	#site-footer > .footer-top .left,
	#site-footer > .footer-middle .left,
	#site-footer > .footer-top .right .newsletter-header,
	#site-footer > .footer-top .right #efb-form-1,
	#site-footer > .footer-middle .right .legal-container { padding-inline: 3rem; }
	#site-footer > .footer-top .left::before,
	#site-footer > .footer-middle .left::before { left: 3rem; }
	.legal { margin-top: 0; }
	#maplink { display: inline-flex; }
	#site-footer > .footer-top .right.section-newsletter .newsletter-header { padding-top: 5rem; }
}


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

	#site-footer > .footer-top .left {

		text-align: center;
		display: flex;
		flex-direction: column;
		align-items: center;
		padding-bottom: 5rem;
	}

	#site-footer > .footer-top .left::before,
	#site-footer > .footer-top .right::before {

		left: 50%;
		transform: translateX(-50%);
	}

	.social { justify-content: center; }

	#site-footer > .footer-top .right { padding-bottom: 5rem; }

	#site-footer > .footer-middle .left {

		padding-top: 5rem;
		padding-bottom: 5rem;
	}

	#site-footer > .footer-middle .left::before {

		left: 50%;
		transform: translate(-50%);
	}

	.footer-extra {

		flex-direction: column;
		align-items: center;
		text-align: center;
		row-gap: 4rem;
	}

	#site-footer > .footer-middle .right .legal-container { padding-top: 5rem; }
	.legal { text-align: center; }

	#site-footer > .footer-middle .right .legal-container::before {

		left: 50%;
		transform: translateX(-50%);
	}

	.copyright {

		text-align: center;
		text-wrap: balance;
	}

	#site-footer > .footer-middle .right { padding-bottom: 5rem; }

	#site-footer > .footer-bottom {

		text-align: center;
		padding-left: 3rem;
		padding-right: 3rem;
	}

	.footer-contacts li + li { margin-top: 1.5rem; }
}

/* @end */





/* !@group newsletter form */

.section-newsletter input:not([type="checkbox"])::-webkit-input-placeholder,
.section-newsletter textarea::-webkit-input-placeholder { /* Chrome/Opera/Safari */

	color: var(--footer-text);
	transition: opacity .3s;
	font-size: 1.8rem;
	font-weight: 600;
	letter-spacing: .05ch;
}

.section-newsletter input:not([type="checkbox"])::-moz-placeholder,
.section-newsletter textarea::-moz-placeholder { /* Firefox 19+ */

	color: var(--footer-text);
	transition: opacity .3s;
	font-size: 1.8rem;
	font-weight: 600;
	letter-spacing: .05ch;
}

.section-newsletter input:not([type="checkbox"]):-moz-placeholder,
.section-newsletter textarea:-moz-placeholder { /* Firefox 18- */

	color: var(--footer-text);
	transition: opacity .3s;
	font-size: 1.8rem;
	font-weight: 600;
	letter-spacing: .05ch;
}

.section-newsletter input:focus:not([type="checkbox"])::-webkit-input-placeholder,
.section-newsletter textarea:focus::-webkit-input-placeholder { /* Chrome/Opera/Safari */

	opacity: 0;
}

.section-newsletter input:focus:not([type="checkbox"])::-moz-placeholder,
.section-newsletter textarea:focus::-moz-placeholder { /* Firefox 19+ */

	opacity: 0;
}

.section-newsletter input:focus:not([type="checkbox"]):-moz-placeholder,
.section-newsletter textarea:focus:-moz-placeholder { /* Firefox 18- */

	opacity: 0;
}

.section-newsletter .newsletter-header { padding: 3rem 0 5rem; }

.section-newsletter .newsletter-header h4 {

	font-family: var(--font-family2);
	font-size: 3.2rem;
	line-height: 1;
	font-weight: 600;
	letter-spacing: .05ch;
	margin-bottom: 3rem;
}

.section-newsletter .newsletter-header p {

	font-size: 1.6rem;
	line-height: 1.5;
	text-transform: uppercase;
	letter-spacing: .05ch;
}

.section-newsletter #item-efb-4 > label,
.section-newsletter #item-efb-4 > .visibleIcon,
.section-newsletter #item-newsletter-1,
.section-newsletter .efb-item-submit { display: none; }

.section-newsletter #item-efb-4 {

	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	column-gap: 2rem;
	margin-bottom: 4rem;
}

.section-newsletter #efb-4 {

	flex-grow: 1;
	color: var(--footer-text);
	font-size: 1.8rem;
	font-weight: 400;
	letter-spacing: .05ch;
	padding: 0 4rem;
	background: transparent;
	border-radius: 0;
	box-shadow: none;
	border: none;
	border-bottom: .3rem solid var(--footer-text);
}

.section-newsletter #efb-4:focus {

	box-shadow: none;
	border-left: .1rem solid var(--footer-text);
	border-top: .1rem solid var(--footer-text);
	border-right: .1rem solid var(--footer-text);
	outline: none;
}

.section-newsletter #efb-2-button {

	color: var(--footer-text);
	font-family: var(--font-family2);
	font-size: 2.2rem;
	height: 10rem;
	text-transform: uppercase;
	font-weight: 600;
	padding: 0 2.5rem;
	border: .3rem solid var(--footer-text);
	transition:
		color .25s ease,
		background-color .25s ease;
}

body:not( .touch ) .section-newsletter #efb-2-button:hover {

	color: var(--footer-back);
	background-color: var(--footer-text);
}

.efb-error { color: var(--attention); }

.efb-checkbox {

	appearance: none;
	width: 2rem;
	height: 2rem;
	background: url('./assets/svg/checkbox.svg') no-repeat center top;
}

.efb-checkbox:checked { background-position-y: bottom; }

.efb-item-checkbox {

	display: flex;
	flex-direction: column;
	position: relative !important;
	padding-left: 3.5rem !important;
}

.section-newsletter .efb-item-checkbox { max-width: 36rem; }

.efb-item-checkbox .efb-checkbox {

	position: absolute;
	top: 0;
	left: 0;
}

.efb-item-checkbox label,
.efb-item-checkbox span {

	font-size: 1.5rem;
	line-height: 1.4rem;
	font-weight: 400;
}

.efb-item-checkbox label {

	display: block;
	margin-top: .5rem;
	margin-bottom: 1.5rem;
}

.efb-item-checkbox label a {

	color: var(--footer-text);
	font-weight: 600;
}


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

	.section-newsletter #item-efb-4 {

		flex-direction: column;
		justify-content: flex-start;
		row-gap: 2rem;
	}

	.section-newsletter #efb-4 {

		width: 100%;
		height: 4rem;
	}
}

/* @end */





/* !@group mobile cta */

.mobile-cta-container {

	display: none;
	background-color: var(--body);
	height: var(--mobile-cta-height);
	flex-direction: row;
	justify-content: center;
	align-items: center;
	column-gap: 5rem;
	padding: 1rem 0;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 5;
	box-shadow: 0 0 2.5rem rgba(0,0,0,.15);
}

#mobile-cta {

	display: flex;
	color: var(--text);
	font-family: var(--font-family2);
	background-color: transparent;
	height: calc( var(--mobile-cta-height) - 2rem );
	font-size: 2rem;
	line-height: 1;
	border: .3rem solid var(--text);
	padding: 0 2rem;
	text-decoration: none;
	text-transform: uppercase;
}

#mobile-cta > .label {

	font-weight: 700;
	letter-spacing: .05ch;
	margin: auto;
}

body:not( .touch ) #mobile-cta:hover {

	color: var(--body);
	background-color: var(--text);
}

#mobile-chiama {

	color: var(--text);
	line-height: 1;
	text-decoration: none;
	display: flex;
	flex-direction: row;
	align-items: center;
	column-gap: 1.2rem;
}

#mobile-chiama .label {

	font-family: var(--font-family2);
	font-size: 1.8rem;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: initial;
}


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

	.mobile-cta-container { display: flex; }
}


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

	.mobile-cta-container { column-gap: 2rem; }
	#mobile-cta { font-size: 1.8rem; }
	#mobile-chiama .label { font-size: 1.6rem; }
}

/* @end */





/* !@group modal */

#modal {

	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--menu-back);
	z-index: 5;
	padding: 0 3rem;
	-webkit-backdrop-filter: blur(.8rem);
	backdrop-filter: blur(.8rem);
}

#modal #page { display: none; }
body.modal-open { overflow-y: hidden; }

.modal-open #modal {

	display: flex;
	pointer-events: all;
}

.modal-inner {

	width: 100%;
	max-width: 86rem;
	max-height: calc(100vh - 6rem);
	margin: auto;
	position: relative;
	filter: drop-shadow(0 0 3rem rgba(0,0,0,.15));
}

#modal.large .modal-inner { max-width: 151rem; }

#modal-content {

	position: relative;
	color: var(--text);
	background-color: var(--body);
	padding: 7.4rem 7rem 6.4rem;
	max-height: calc(100vh - 6rem - 4.2rem);
	overflow-y: scroll;
}

.modal-inner::after {

	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 6.4rem;
	background: linear-gradient(0deg, rgba(255,248,238,.9) 0%, rgba(255,248,238,0) 100%);
	pointer-events: none;
}

#modal-close {

	display: flex;
	justify-content: center;
	align-items: center;
	height: 4.2rem;
	background-color: var(--body);
	margin: 0 4.5rem 0 auto;
	padding: 0 2rem;
	cursor: pointer;
	position: relative;
	z-index: 1;
}

#modal-close .label {

	color: var(--text);
	font-family: var(--font1);
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: .05ch;
	padding-right: 1.6rem;
}

#modal-close svg {

	fill: var(--text);
	display: block;
	width: 1.2rem;
	height: 1.2rem;
	transform-origin: center;
	transition: transform .25s ease-in;
}

body:not(.touch) #modal-close:hover svg { transform: rotate(180deg); }

#loader {

	display: block;
	width: 10rem;
	height: 10rem;
	margin: auto;
}


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

	#modal { padding: 1rem; }

	.modal-inner {

		max-height: calc(100vh - 2rem);
		margin: 0;
	}

	.modal-inner::after { height: 3rem; }

	#modal-content {

		padding: 3rem;
		max-height: calc(100vh - 2rem - 4.2rem);
	}
}

/* @end */





/* !@group form section */

#form-section {

	background: var(--menu-back);
	padding: 0 3rem 8rem;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 5;
	-webkit-backdrop-filter: blur(.8rem);
	backdrop-filter: blur(.8rem);
	display: flex;
	flex-direction: column;
	overflow-x: scroll;
}

#form-section.opened { pointer-events: all; }

#form-section .section-header {

	width: 100%;
	max-width: 200rem;
	margin: 0 auto;
	padding: 3rem;
}

#form-close {

	display: flex;
	justify-content: center;
	align-items: center;
	width: 10.5rem;
	height: 4.2rem;
	margin: 0 4.5rem 0 auto;
	cursor: pointer;
}

#form-close .label {

	color: var(--text);
	font-family: var(--font1);
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: .1ch;
	padding-right: 1.6rem;
}

#form-close svg {

	fill: var(--text);
	display: block;
	width: 1.2rem;
	height: 1.2rem;
	transform-origin: center;
	transition: transform .25s ease-in;
}

body:not(.touch) #form-close:hover svg { transform: rotate(180deg); }

#form-section > .inner {

	max-width: 144rem;
	margin: 0 auto auto;
	padding: 3rem 0 0;
}

#form-section h2 {

	font-size: 2.6rem;
	line-height: 1;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .05ch;
	text-align: center;
	padding-bottom: 1.5rem;
	margin: 0 2.5rem 0;
	border-bottom: .1rem solid var(--text);
}


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

	#form-section {

		padding-left: 1rem;
		padding-right: 1rem;
	}

	#form-section .section-header { padding: 2rem 0 0; }
	#form-close { margin-right: 0; }
}

/* @end */





/* !@group contact form */

.edita-form-builder input.efb-text,
.edita-form-builder input[type="text"].efb-text,
.edita-form-builder input[type="tel"].efb-text,
.edita-form-builder input[type="email"].efb-text,
.edita-form-builder input[type="url"].efb-text,
.edita-form-builder textarea.efb-textarea,
.edita-form-builder select.efb-select {

	color: var(--text);
	font-size: 1.8rem;
	line-height: 1.4;
	font-weight: 400;
	height: 7rem;
	border: .1rem solid var(--text);
	border-radius: 0;
	background: transparent;
	transition: background-color .25s ease;
}

.edita-form-builder textarea.efb-textarea {

	height: 15rem;
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
}

.edita-form-builder input:focus.efb-text,
.edita-form-builder input[type="text"]:focus.efb-text,
.edita-form-builder input[type="tel"]:focus.efb-text,
.edita-form-builder input[type="email"]:focus.efb-text,
.edita-form-builder input[type="url"]:focus.efb-text,
.edita-form-builder textarea:focus.efb-textarea,
.edita-form-builder select:focus.efb-select {

	outline: none;
	box-shadow: none;
	background-color: rgba(255,255,255,.5);
}

.edita-form-builder .efb-item-checkbox {

	padding-top: 2rem !important;
	padding-left: 4rem !important;
}

.edita-form-builder label {

	font-size: 1.6rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .05ch;
}

.edita-form-builder label.efb-choice { margin-left: 0; }
.edita-form-builder .efb-item-checkbox label a { color: var(--text); }

.edita-form-builder .efb-checkbox {

	background-image: url('./assets/svg/checkbox-dark.svg');
	left: 1rem;
}

.edita-form-builder .efb-submit {

	color: var(--text);
	background-color: transparent;
	font-family: var(--font-family2);
	font-size: 2.2rem;
	height: 10rem;
	text-transform: uppercase;
	font-weight: 600;
	padding: 0 4rem;
	margin-left: auto;
	border: .3rem solid var(--text);
	float: right;
	transition:
		color .25s ease,
		background-color .25s ease;
}

body:not( .touch ) .edita-form-builder .efb-submit:hover {

	color: var(--body);
	background-color: var(--text);
}

/* @end */




.otgs-development-site-front-end { display: none; }
