/*** CSS by Luigi Astarita @ Astartup ***/
/* Copyright 2023 Luigi Astarita */

/*** Import fonts ***/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Prata&display=swap');

/* Variabili  */

:root {
	--c-azzurro: #2A77BB;
	--c-blu: #173B71;
	--c-grigio1: #303030;
	--c-grigio2: #8A8A8A;
	--btw-multi: 1.5;
}

body {
	font-family: 'Montserrat', sans-serif;
	color: var(--c-grigio1);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Prata', serif;
}

a {
	color: var(--c-azzurro);
	text-decoration: none;
	transition: color .2s;
}

a:hover {
	color: var(--c-blu);
}

p {
	margin-bottom: 0;
}

/* Header */

.openmenu {
	/* padding: 0 !important; */
}

.navbar-toggler {
	position: fixed;
	z-index: 10;
	top: 2rem;
	right: 2rem;
	padding: 1rem;
	width: auto;
	height: auto;
	border: none !important;
	outline: none !important;
	box-shadow: none !important;
	transition: opacity 1s;
	background: #001F36;
}

@media (max-width: 575.98px) {
	.navbar-toggler {
		top: 1rem;
		right: 1rem;
	}
}

.openmenu .navbar-toggler {
	opacity: 0;
	transition: opacity 0s;
}

.navbar-toggler svg {
	/* width: 40px; */
	/* height: auto; */
	fill: #FFF;
}

@media (max-width: 575.98px) {
	.navbar-toggler svg {
		width: 32px;
		height: auto;
	}
}

.offcanvas {
	background: rgba(0, 0, 0, .6);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.offcanvas-end {
	width: 100%;
}

.offcanvas .btn-close {
	background: none;
	position: absolute;
	top: 2rem;
	right: 4rem;
	padding: 1rem;
	width: auto;
	height: auto;
	border: none !important;
	outline: none !important;
	box-shadow: none !important;
	z-index: 1;
}

@media (max-width: 575.98px) {
	.offcanvas .btn-close {
		top: 1rem;
		right: 1rem;
	}
}

.offcanvas .nav-item {
	opacity: 0;
	transform: translateY(-50px);
	transition: opacity .1s, transform .1s;
	transition-delay: 0ms;
}

.openmenu .offcanvas .nav-item {
	opacity: 1;
	transform: translateY(0);
	transition: opacity 1s, transform 1s;
}

.openmenu .offcanvas .nav-item:nth-of-type(1) {
	transition-delay: 100ms;
}

.openmenu .offcanvas .nav-item:nth-of-type(2) {
	transition-delay: 200ms;
}

.openmenu .offcanvas .nav-item:nth-of-type(3) {
	transition-delay: 300ms;
}

.openmenu .offcanvas .nav-item:nth-of-type(4) {
	transition-delay: 400ms;
}

.openmenu .offcanvas .nav-item:nth-of-type(5) {
	transition-delay: 500ms;
}

.openmenu .offcanvas .nav-item:nth-of-type(6) {
	transition-delay: 600ms;
}

.openmenu .offcanvas .nav-item:nth-of-type(7) {
	transition-delay: 700ms;
}

.openmenu .offcanvas .nav-item:nth-of-type(8) {
	transition-delay: 800ms;
}

.openmenu .offcanvas .nav-item:nth-of-type(9) {
	transition-delay: 900ms;
}

.openmenu .offcanvas .nav-item:nth-of-type(10) {
	transition-delay: 1000ms;
}

.offcanvas .nav-link {
	text-align: center;
	font-family: 'Prata', serif;
	color: rgba(255, 255, 255, .7);
	font-size: 1.8rem;
	transition: color .2s;
}

@media (max-width: 575.98px) {
	.offcanvas .nav-link {
		font-size: 1.4rem;
	}
}

.offcanvas .nav-link:hover {
	color: rgba(255, 255, 255, 1);
}

.offcanvas .nav-link.active {
	color: rgba(255, 255, 255, 1);
}

.offcanvas .logo {
	margin: .5rem auto 2rem;
	display: block;
	text-align: center;
	opacity: 0;
	transform: translateY(-50px);
	transition: opacity 1s, transform 1s;
}

.openmenu .offcanvas .logo {
	opacity: 1;
	transform: translateY(0);
}

.offcanvas .logo img {
	width: 450px;
	height: auto;
}

@media (max-width: 575.98px) {
	.offcanvas .logo img {
		width: 300px;
	}
}

.nav-language {
	display: flex;
	justify-content: center;
}

.offcanvas .nav-item.nav-language a {
	border: 1px solid rgba(255, 255, 255, .5);
	margin: .5rem;
	font-size: 1rem;
	font-weight: 500;
	font-family: 'Montserrat', sans-serif;
	text-align: center;
	width: 44px;
	height: 44px;
	line-height: 44px;
	padding: 0;
}

.offcanvas .nav-item.nav-language a.active {
	border: 1px solid rgba(255, 255, 255, 1);
	background: #FFF;
	color: var(--c-blu);
}

/* Booking */

.booking {
	background: rgba(0, 0, 0, .4);
	border-top: 1px solid rgba(255, 255, 255, .2);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	position: absolute;
	bottom: 0;
	width: 100%;
	padding: 1.5rem;
	transform: translateY(200px);
	opacity: 0;
	transition: transform .3s, opacity .3s;
	box-shadow: 0 -20px 40px rgba(0, 0, 0, .3);
}

@media (max-width: 1199.98px) {
}

@media (max-width: 991.98px) {
}

@media (max-width: 767.98px) {
}

@media (max-width: 575.98px) {
	.booking {
		padding: .5rem 1.5rem 1.5rem;
	}
}

.bookingopen .booking {
	transform: translateY(0);
	opacity: 1;
	z-index: 5;
}

.booking .col {
	transform: translateY(200px);
	opacity: 0;
	transition: transform .3s, opacity .7s;
}

.bookingopen .booking .col {
	transform: translateY(0);
	opacity: 1;
}

.booking .col:nth-of-type(1) {
	transition-delay: 50ms;
}

.booking .col:nth-of-type(2) {
	transition-delay: 150ms;
}

.booking .col:nth-of-type(3) {
	transition-delay: 200ms;
}

.booking .col:nth-of-type(4) {
	transition-delay: 250ms;
}

.booking .col:nth-of-type(5) {
	transition-delay: 300ms;
}

.booking .col:nth-of-type(6) {
	transition-delay: 350ms;
}

.booking .col:nth-of-type(7) {
	transition-delay: 400ms;
	margin: 0;
}

.closebooking {
	background: none;
	border: none;
	float: right;
	margin-top: 18px;
}

.closebooking svg {
	width: 24px;
	height: auto;
}

.booking .form-control,
.booking .form-select {
	font-size: 1.2rem;
	height: calc(4rem + 2px);
	font-weight: 500;
	border-radius: 2px;
	border: none;
}

.form-floating>label {
	font-size: 1rem;
}

.booking .btn {
	height: 100%;
	width: 100%;
	border-radius: 2px;
	border: none;
	font-weight: 500;
	background: #173B71;
	transition: background .2s;
}

@media (max-width: 1199.98px) {
}

@media (max-width: 991.98px) {
}

@media (max-width: 767.98px) {
}

@media (max-width: 575.98px) {
	.booking .btn {
		padding: 1.2rem 1rem;
		background: var(--c-azzurro);
		box-shadow: 0 20px 40px rgba(0, 0, 0, .3);
	}
}

.booking .btn:hover {
	background: #2A77BB;
}

/* Footer */

.footer {
	background: #001F36;
	text-align: center;
	padding: 4rem;
}

@media (max-width: 767.98px) {
	.footer {
		padding: 3rem 2rem;
	}
}

.footer .logo {
	width: 322px;
	height: auto;
	margin-bottom: 2rem;
}

@media (max-width: 767.98px) {
	.footer .logo {
		width: 200px;
	}
}

.footer .logo-villa-fiorentino {
	width: 152px;
	height: 119px;
}

@media (max-width: 767.98px) {
	.footer .nav {
		display: block;
	}
}

.footer .nav-link {
	color: rgba(255, 255, 255, .8);
	font-size: 1.2rem;
	font-weight: 500;
}

@media (max-width: 767.98px) {
	.footer .nav-link {
		font-size: 1rem;
		padding: .2rem 0;
	}
}

.footer .nav-link:hover,
.footer .nav-link.active {
	color: rgba(255, 255, 255, 1);
}

.footer .nav2 {
	margin-top: 1rem;
	margin-bottom: 1rem;
}

.footer .nav2 .nav-item {
	color: rgba(255, 255, 255, .5);
	font-size: 1.1rem;
	font-weight: 500;
}

@media (max-width: 767.98px) {
	.footer .nav2 .nav-item {
		font-size: 1rem;
	}
}

.footer .nav2 .nav-item > span {
	padding: .5rem 1rem;
	display: block;
}

.footer .nav2 .nav-link {
	color: rgba(255, 255, 255, .5);
	font-size: 1.1rem;
	font-weight: 500;
}

@media (max-width: 767.98px) {
	.footer .nav2 .nav-link {
		font-size: 1rem;
	}
}

.footer .nav2 .nav-link:hover,
.footer .nav2 .nav-link.active {
	color: rgba(255, 255, 255, 1);
}

.footer p {
	color: rgba(255, 255, 255, .5);
	font-size: .9rem;
	margin-bottom: 2rem;
}

/* Limite animazioni */

#visibles {
	position: fixed;
	bottom: 300px;
	width: 100%;
	height: 1px;
	/* background: rgba(255,0,0,.1); */
	z-index: 1000;
	display: block;
}

@media (max-width: 575.98px) {
	#visibles {
		bottom: 50px;
	}
}

/* Animazioni */

.container-fluid {
	overflow: hidden;
	padding: 0;
}

.animated {
	overflow: hidden;
	/* overflow-x: hidden;
	overflow-y: visible; */
}

.animated *,
.animated *::before {
	animation-play-state: paused !important;
	animation-fill-mode: both !important;
}

.animated.show *,
.animated.show *::before {
	animation-play-state: running !important;
}

.del-1 {
	animation-delay: .2s !important;
}

.del-2 {
	animation-delay: .4s !important;
}

.del-3 {
	animation-delay: .6s !important;
}

.del-4 {
	animation-delay: .8s !important;
}

.del-5 {
	animation-delay: 1s !important;
}

.del-6 {
	animation-delay: 1.2s !important;
}

.del-7 {
	animation-delay: 1.4s !important;
}

.del-8 {
	animation-delay: 1.6s !important;
}

.del-9 {
	animation-delay: 1.8s !important;
}

.del-10 {
	animation-delay: 2s !important;
}

.fade-in {
	animation: fade-in 2s;
}

@keyframes fade-in {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.fade-left {
	animation: fade-left 2s;
}

@keyframes fade-left {
	0% {
		opacity: 0;
		transform: translateX(-500px);
	}

	100% {
		opacity: 1;
		transform: translateX(0px);
	}
}

.fade-right {
	animation: fade-right 2s;
}

@keyframes fade-right {
	0% {
		opacity: 0;
		transform: translateX(500px);
	}

	100% {
		opacity: 1;
		transform: translateX(0px);
	}
}

.fade-bottom {
	animation: fade-bottom 2s;
}

@keyframes fade-bottom {
	0% {
		opacity: 0;
		transform: translateY(300px);
	}

	100% {
		opacity: 1;
		transform: translateY(0px);
	}
}

.fade-top {
	animation: fade-top 2s;
}

@keyframes fade-top {
	0% {
		opacity: 0;
		transform: translateY(-300px);
	}

	100% {
		opacity: 1;
		transform: translateY(0px);
	}
}

.fade-flip {
	animation: fade-flip 2s;
	transform-style: preserve-3d;
	perspective: 1000px;
}

@keyframes fade-flip {
	0% {
		opacity: 0;
		transform: rotateY(90deg);
	}

	100% {
		opacity: 1;
		transform: rotateY(0deg);
	}
}

.fade-zoom-in {
	animation: fade-zoom-in 2s;
}

@keyframes fade-zoom-in {
	0% {
		opacity: 0;
		transform: scale(.1);
	}

	100% {
		opacity: 1;
		transform: scale(1);
	}
}

.border-in {
	position: relative;
}

.border-in::before {
	position: absolute;
	content: "";
	display: block;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	animation: border-in 2s;
}

@keyframes border-in {
	0% {
		border: 1000px solid #FFF;
	}

	100% {
		border: 0px solid #FFF;
	}
}

/* Console */

.console {
	position: fixed;
	bottom: 0;
	left: 0;
	background: #000;
	color: #FFF;
	display: inline-block;
	padding: .3rem;
	display: none;
}

/* Hero */

.hero {
	width: 100%;
	height: 100vh;
	background-image: url(../images/hero.png);
	background-position: center;
	background-size: cover;
	margin-bottom: 10rem;
	overflow: hidden;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
}

@media (max-width: 767.98px) {
	.hero {
		/* margin-bottom: 3rem; */
	}
}

.hero::after {
	width: 100%;
	height: 100%;
	background: rgba(0, 31, 54, .6);
	background: rgb(0, 31, 54);
	background: linear-gradient(180deg, rgba(0, 31, 54, .6) 0%, rgba(0, 31, 54, .1) 100%);
	position: absolute;
	z-index: 1;
	content: "";
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

@media (max-width: 575.98px) {
	.hero::after {
		background: linear-gradient(180deg, rgba(0, 31, 54, .4) 0%, rgba(0, 31, 54, .1) 100%);
	}
}

.hero video {
	min-width: 100%;
	min-height: 100%;
	object-fit: cover;
}

.hero .logo {
	position: absolute;
	z-index: 3;
	top: 5%;
	left: calc(50% - 150px);
	transition: transform .2s, opacity 2s;
}

.openmenu .hero .logo {
	opacity: 0;
	transition: transform .2s, opacity 0s;
}

.hero .logo:hover {
	transform: scale(1.1);
	transition: transform 1s;
}

.hero .logo img {
	width: 300px;
	height: auto;
}

.hero .book-now {
	position: absolute;
	bottom: 0;
	right: 0;
	top: 0;
	left: 0;
	z-index: 2;
	background: linear-gradient(135deg, rgba(0, 31, 54, 0) 70%, rgba(0, 31, 54, 0.7) 100%);
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
}

@media (max-width: 767.98px) {
	.hero .book-now {
		background: linear-gradient(180deg, rgba(0, 31, 54, 0) 70%, rgba(0, 31, 54, 0.7) 100%);
	}
}

.hero .book-now .toggle-booking {
	color: #FFF;
	padding: 2rem;
	font-family: 'Prata', serif;
	display: inline-block;
	font-size: 1.5rem;
	transition: transform .2s;
	border: none;
	background: transparent;
}

@media (max-width: 767.98px) {
	.hero .book-now .toggle-booking {
		width: 100%;
	}
}

.hero .book-now .toggle-booking:hover {
	transform: scale(1.1);
}

.hero .book-now .toggle-booking svg {
	vertical-align: top;
	margin-right: .3rem;
}

.hero h1 {
	color: #FFF;
	margin-bottom: 10%;
	position: relative;
	z-index: 10;
	font-size: 5rem;
	transition: margin .3s;
}

@media (max-width: 767.98px) {
	.hero h1 {
		font-size: 2.5rem;
		text-align: center;
		line-height: 100%;
		margin-bottom: 100px;
	}

	.bookingopen .hero h1 {
        margin-bottom: 360px;
    }
}

/*  =====================================================
    =   CLASSI CSS Mario								=
    =====================================================   */
.mw-1920 {
	max-width: 1920px;
}

.mw-1600 {
	max-width: 1600px;
}

.mw-1400 {
	max-width: 1400px;
}

.mw-1200 {
	max-width: 1200px;
}

.mw-992 {
	max-width: 992px;
}

.mw-768 {
	max-width: 768px;
}

.mw-576 {
	max-width: 576px;
}

.mw-480 {
	max-width: 480px;
}

.custom-vr {
	display: inline-block;
	align-self: stretch;
	width: .25rem;
	min-width: .25rem;
	min-height: 1em;
	background-color: var(--c-azzurro);
	opacity: 1;
}

.custom-vr.rightside {
	margin-right: -1.625rem;
}

.custom-hr {
	margin: auto 0;
	color: var(--c-azzurro);
	border-top: .25rem solid;
	opacity: 1
}

.custom-hr.grey-hr {
	color: #E5E5E5;
}

.custom-hr.tinline {
	border-top: 1px solid;
}

.section-h {
	color: var(--c-azzurro);
	text-align: center;
	font-size: 5rem;
}

@media (max-width: 1199.98px) {
	.section-h {
		font-size: 3rem;
	}
}

@media (max-width: 767.98px) {
	.section-h {
		font-size: 2rem;
	}
}

.section-hsub {
	color: var(--c-azzurro);
	text-align: center;
	font-size: 4rem;
}

@media (max-width: 767.98px) {
	.section-hsub {
		font-size: 2rem;
		text-align: left;
	}
}

.section-hsub.blue-text {
	color: var(--c-blu);
}

.section-hsub.blue-l-text {
	color: var(--c-azzurro);
}

.section-p {
	color: var(--c-grigio2);
	text-align: center;
	font-size: 1.1rem;
	line-height: 160%;
}

@media (max-width: 767.98px) {
	.section-p {
		font-size: 1rem;
	}
}

/*      --> Bottoni Vari			                        */
a.more {
	display: inline-block;
	background: var(--c-azzurro);
	color: #FFF;
	padding: 1rem 1.5rem;
	font-style: italic;
	font-weight: 500;
	font-size: 1.2rem;
	transition: background .2s;
}

a.more:hover {
	background: var(--c-blu);
}

a.more-grey {
	display: inline-block;
	background: var(--c-grigio2);
	color: #FFF;
	padding: 1rem 1.5rem;
	font-style: italic;
	font-weight: 500;
	font-size: 1.2rem;
	transition: background .2s;
}

a.more-grey:hover {
	background: var(--c-grigio1);
}

.btn-book {
	color: #FFF;
	background-color: #173B71;
	border: none;
}

.btn-book:hover {
	color: #FFF;
	background-color: #2A77BB;
}

.btn-main {
	background: var(--c-blu);
	color: #FFF;
	padding: 1.2rem 2.5rem;
	margin-top: 2rem;
	font-size: 1.2rem;
	display: inline-block;
	font-weight: 500;
	border-radius: 3px;
	box-shadow: 0 0 0 rgba(0, 31, 54, 0);
	position: relative;
	z-index: 2;
	transition: transform .3s, box-shadow .3s;
}

.btn-main:hover {
	transform: scale(1.1);
	color: #FFF;
	/* box-shadow: 0 25px 50px rgba(0, 31, 54, .4); */
}

/*      --> Bottoni Carousel Servizi                        */
.btn-carousel {
	background-color: transparent;
	border-radius: 0;
}

.btn-carousel:hover {
	background-color: transparent;
}

.btn-carousel.prev {
	left: .5rem
}

.btn-carousel.next {
	right: .5rem;
}

.ico-chevron-x {
	min-width: 2.5rem;
	height: 2.5rem;
	display: inline-block;
	-webkit-mask: url("../images/icons/nav-chevron-x.svg") no-repeat center;
	mask: url("../images/icons/nav-chevron-x.svg") no-repeat center;
}

.btn-carousel.prev .ico-chevron-x {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.ico-chevron-x.white {
	background-color: white;
}

.ico-chevron-x.blue {
	background-color: var(--c-blu);
}

.included-services-slider {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: absolute;
	top: 0;
	bottom: 0;
	background: rgba(0, 31, 54, .4);
}

/*      --> Gallery Immagini Suite	                        */
.container-gallery {
	padding-top: 4rem;
	/* background: url('../images/positano-roofs-big.png') no-repeat right bottom; */
	/* background-size: 960px; */
}

.gallery-container {
	width: 100%;
	max-width: 1600px;
	display: block;
	margin: 0 auto;
}

.gallery-masonry {
	column-count: 2;
	column-gap: .5rem;
}

.gallery-brick {
	margin-bottom: .5rem;
	box-sizing: border-box;
	-webkit-column-break-inside: avoid;
	page-break-inside: avoid;
	break-inside: avoid;
	counter-increment: brick-counter;
}

.gallery-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: .25rem;
}

.gallery-preview {
	overflow: hidden;
	display: block;
	position: relative;
}

.gallery-preview img {
	max-width: 100%;
	transition: transform .5s;
}

.gallery-preview:hover img {
	transform: scale(1.2);
}

.gallery-preview::before {
	position: absolute;
	display: flex;
	content: "zoom";
	top: 0;
	bottom: 0;
	width: 100%;
	background: rgba(0, 0, 0, 0);
	z-index: 1;
	transition: background .5s, color .5s;
	color: rgba(255, 255, 255, 0);
	justify-content: center;
	align-items: center;
	font-size: 1.3rem;
	font-weight: 500;
}

.gallery-preview:hover::before {
	background: rgba(0, 0, 0, .5);
	color: rgba(255, 255, 255, 1);
}

.pswp__bg {
	backdrop-filter: blur(10px) !important;
	-webkit-backdrop-filter: blur(10px) !important;
}

@media (min-width: 768px) {
	.gallery-masonry {
		column-count: 2;
	}
}

@media (min-width: 992px) {
	.gallery-masonry {
		column-count: 3;
	}
}

@media (min-width: 1199px) {
	.gallery-masonry {
		column-count: 4;
	}
}

/*      --> Booking Box										*/
.booking-card {
	width: 100%;
	margin-bottom: -1.5rem;
	background-color: #FFF;
	position: relative;
	z-index: +1;
}

.booking-form-box {
	width: 100%;
	color: var(--c-grigio2);
	background: #F4F4F4;
	display: flex;
	flex-direction: column;
	align-items: center;
}

@media (max-width: 1199.98px) {
	.booking-card {
		margin-bottom: -1rem;
	}
}

/*      --> Rooftop Page									*/

.rooftop {
	background: rgb(0, 31, 54);
	background: linear-gradient(180deg, rgba(0, 31, 54, 0.4) 0%, rgba(0, 31, 54, 0.1) 100%);
	margin-bottom: 0;
}

.rooftop h1 {
	line-height: 6rem;
	margin-bottom: 7%;
	z-index: 4;
	transform: scale(.8);
}

.rooftop h1 b {
	font-size: 4rem;
	font-weight: normal;
	display: block;
	text-indent: 10rem;
}

.rooftop h1 strong {
	font-size: 14rem;
	font-weight: normal;
	display: block;
}

.hero.rooftop {
	background-image: url(../images/rooftop.jpg);
	background-position: bottom;
	background-size: cover;
}

.rooftop-intro {
	padding: 5rem 1rem;
	/* background: #F0F0F0; */
	background: url(../images/positano-roofs-big.png) no-repeat right bottom;
	background-size: contain;
}

.rooftop-nav-cont {
	height: 194px;
	z-index: 3;
	position: relative;
	width: 100%;
	margin-bottom: 100px;
	transition: margin .3s;
}

@media (max-width: 767.98px) {
	.rooftop-nav-cont {
		height: auto;
		display: none;
	}
}

.bookingopen .rooftop-nav-cont {
	margin-bottom: 140px;
}

.rooftop-nav-cont2 {
	width: 100%;
	/* margin-top: -2rem; */
	transition: margin-top .3s;
}

.rooftop-nav-cont2.stick {
	position: fixed;
	top: 0;
	z-index: 10;
	margin-top: 0;
}

.rooftop-nav {}

.rooftop-nav-cont .nav-item .nav-link {
	background: #F4F4F4;
	text-align: center;
	padding: 4rem 0;
	position: relative;
	transition: padding .3s, transform .3s, box-shadow .3s, border-radius .3s;
	box-shadow: 0 30px 60px rgba(0, 0, 0, .3);
	border-radius: 4px;
	overflow: hidden;
}

@media (max-width: 767.98px) {
	.rooftop-nav-cont .nav-item .nav-link {
		padding: 0 !important;
		height: 100%;
	}
}

.rooftop-nav-cont .nav-item .nav-link:hover,
.rooftop-nav-cont .rooftop-nav-cont2.stick .nav-item .nav-link:hover {
	box-shadow: 0 30px 60px rgba(0, 0, 0, .4);
	transform: scale(1.1);
}

@media (max-width: 767.98px) {
	.rooftop-nav-cont .nav-item .nav-link:hover,
	.rooftop-nav-cont .rooftop-nav-cont2.stick .nav-item .nav-link:hover {
		box-shadow: 0 20px 40px rgba(0, 0, 0, .4);
		transform: scale(1);
	}
}

.rooftop-nav-cont .rooftop-nav-cont2.stick .nav-item .nav-link {
	padding: 1rem 0;
	border-radius: 0 0 4px 4px;
	/* transform: scale(.8); */
	box-shadow: 0 30px 60px rgba(0, 0, 0, .2);
}

.rooftop-nav-cont .nav-item .nav-link em {
	display: block;
	font-size: .9rem;
	text-transform: uppercase;
	font-weight: 600;
	font-style: normal;
	color: var(--c-azzurro);
	line-height: 100%;
	margin: 0 0 -.8rem;
	position: relative;
	z-index: 2;
	transition: color .3s, margin .3s;
}

@media (max-width: 767.98px) {
	.rooftop-nav-cont .nav-item .nav-link em {
		margin: 0 0 .2rem !important;
		font-size: .8rem;
	}
	.rooftop-nav-cont .nav-item .nav-link.active em {
		margin: 1.75rem 0 .2rem !important;
	}
}

.rooftop-nav-cont .nav-item.rooftop-bar-nav .nav-link em {
	margin-right: -3rem;
}

.rooftop-nav-cont .nav-item.rooftop-pool-nav .nav-link em {
	margin-left: -.7rem;
}

.rooftop-nav-cont .nav-item.rooftop-spa-nav .nav-link em {
	margin-right: -2.6rem;
}

.rooftop-nav-cont .nav-item .nav-link strong {
	display: block;
	font-size: 4rem;
	font-family: 'Prata', serif;
	color: var(--c-blu);
	font-weight: normal;
	line-height: 100%;
	position: relative;
	z-index: 2;
	transition: color .3s;
}

@media (max-width: 767.98px) {
	.rooftop-nav-cont .nav-item .nav-link strong {
		font-size: 1.7rem;
	}
}

.rooftop-bar-nav {}

.rooftop-pool-nav {}

.rooftop-spa-nav {}

.rooftop-nav-cont .nav-item .nav-link::before {
	position: absolute;
	left: 0;
	right: calc(100% - 80px);
	top: 0;
	bottom: 0;
	height: 100%;
	content: "";
	display: block;
	transition: right .3s, background .3s, background-position .3s;
	background-size: 400px auto;
}

@media (max-width: 767.98px) {
	.rooftop-nav-cont .nav-item .nav-link::before {
		position: relative;
		width: 100%;
		height: 50px;
		margin-bottom: .3rem;
		background-size: 100% auto;
	}
}

.rooftop-nav-cont .nav-item .nav-link.active::before,
.rooftop-nav-cont .nav-item .nav-link:hover::before {
	right: 0;
	background-position: center !important;
	transition: right .3s, background .3s, background-position 1s;
}

@media (max-width: 767.98px) {
	.rooftop-nav-cont .nav-item .nav-link.active::before,
	.rooftop-nav-cont .nav-item .nav-link:hover::before {
		right: 0;
		bottom: 0;
		height: 100%;
		background-position: center !important;
		transition: right .3s, background .3s, background-position 1s;
		margin: 0 !important;
		position: absolute;
	}
}

.rooftop-nav-cont .nav-item.rooftop-bar-nav .nav-link::before {
	background-image: url(../images/infinity-bar.jpg);
	background-position: -20px center;
}

.rooftop-nav-cont .nav-item.rooftop-pool-nav .nav-link::before {
	background-image: url(../images/infinity-pool.jpg);
	background-position: -60% center;
}

.rooftop-nav-cont .nav-item.rooftop-spa-nav .nav-link::before {
	background-image: url(../images/infinity-spa.jpg);
	background-position: -50% center;
}

@media (max-width: 767.98px) {
	.rooftop-nav-cont .nav-item.rooftop-bar-nav .nav-link::before {
		background-position: 0 80%;
	}
	
	.rooftop-nav-cont .nav-item.rooftop-pool-nav .nav-link::before {
		background-position: 0 70%;
	}
	
	.rooftop-nav-cont .nav-item.rooftop-spa-nav .nav-link::before {
		background-position: 0 40%;
	}
}

.rooftop-nav-cont .nav-item .nav-link::after {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	content: "";
	display: block;
	transition: background .3s, backdrop-filter .3s, -webkit-backdrop-filter .3s;
	background: rgba(0, 0, 0, 0);
}

.rooftop-nav-cont .nav-item .nav-link.active::after,
.rooftop-nav-cont .nav-item .nav-link:hover::after {
	background: rgba(0, 0, 0, .2);
	backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(3px);
}

.rooftop-nav-cont .nav-item .nav-link.active em,
.rooftop-nav-cont .nav-item .nav-link:hover em,
.rooftop-nav-cont .nav-item .nav-link.active strong,
.rooftop-nav-cont .nav-item .nav-link:hover strong {
	color: #FFF;
}

/* Rooftop intro */

.rooftop-intro h1 {
	font-size: 8rem;
	text-align: center;
	margin: 5rem auto 0;
	display: flex;
	align-items: flex-start;
}

@media (max-width: 767.98px) {
	.rooftop-intro h1 {
		flex-wrap: wrap;
	}
}

.rooftop-intro h1 b {
	color: var(--c-blu);
	font-size: 6rem;
	font-weight: normal;
	text-align: right;
	display: inline-block;
	width: 43%;
}

@media (max-width: 767.98px) {
	.rooftop-intro h1 b {
		font-size: 3rem;
		line-height: 3rem;
		width: 100%;
		text-align: left;
	}
}

.rooftop-intro h1 strong {
	color: var(--c-azzurro);
	font-size: 9rem;
	font-weight: normal;
	text-align: left;
	display: inline-block;
	vertical-align: text-bottom;
	width: 57%;
}

@media (max-width: 767.98px) {
	.rooftop-intro h1 strong {
		font-size: 4rem;
		line-height: 4rem;
		width: 100%;
		text-align: right;
	}
}

.rooftop-intro p {
	display: block;
	font-size: 1rem;
	color: var(--c-grigio2);
	line-height: 160%;
	text-align: left;
	width: 34%;
	margin: -1rem 0 4rem 43%;
	position: relative;
}

@media (max-width: 767.98px) {
	.rooftop-intro p {
		line-height: 160%;
		width: 100%;
		margin: 1rem 0 0;
	}
}

/* Infinity Bar */

#rooftop-bar {
	padding-top: 2rem;
}

#rooftop-bar h2 {
	font-size: 4rem;
	color: var(--c-blu);
}

@media (max-width: 767.98px) {
	#rooftop-bar h2 {
		font-size: 3rem;
	}
}

#rooftop-bar h2 em {
	color: var(--c-azzurro);
}

#rooftop-bar p {
	font-size: 1.1rem;
	color: var(--c-grigio2);
}

#rooftop-bar p strong {
	font-weight: 500;
	color: var(--c-azzurro);
}

/* Infinity Pools */

#rooftop-pool {
	/* padding-top: 15rem; */
}

#rooftop-pool h3 {
	font-size: 5rem;
	color: var(--c-blu);
	text-align: center;
}

@media (max-width: 767.98px) {
	#rooftop-pool h3 {
		font-size: 3rem;
	}
}

#rooftop-pool h3 em {
	color: var(--c-azzurro);
}

#rooftop-pool h3::before {
	content: "";
	display: block;
	width: 2px;
	height: 250px;
	margin: 10rem auto;
	background: var(--c-blu);
}

#rooftop-pool p {
	font-size: 1.1rem;
	color: var(--c-grigio2);
	text-align: center;
	margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
	#rooftop-pool p {
		font-size: 1rem;
	}
}

#rooftop-pool p strong {
	font-weight: 500;
	color: var(--c-azzurro);
}

.positano-rooftop-view img {
	width: 100%;
}

.pool-pass {
	margin-top: -3rem;
}

.pool-pass-cover {
	position: relative;
	z-index: 1;
	background: #FFF;
}

.pool-pass h4 {
	font-size: 4rem;
	color: var(--c-blu);
}

@media (max-width: 767.98px) {
	.pool-pass h4 {
		font-size: 3rem;
	}
}

.pool-pass p {
	font-size: .9rem;
	color: var(--c-grigio2);
	margin-bottom: 1rem;
	line-height: 160%;
}

.pool-pass p:first-of-type {
	font-size: 1.2rem;
	color: var(--c-grigio1);
}

.pool-pass li {
	font-size: .9rem;
	color: var(--c-grigio2);
	line-height: 160%;
}

/* Infinity Spa */

#rooftop-spa h5 {
	font-size: 5rem;
	color: var(--c-blu);
	text-align: center;
}

@media (max-width: 767.98px) {
	#rooftop-spa h5 {
		font-size: 3rem;
	}
}

#rooftop-spa h5 em {
	color: var(--c-azzurro);
}

#rooftop-spa h5::before {
	content: "";
	display: block;
	width: 2px;
	height: 250px;
	margin: 10rem auto;
	background: var(--c-blu);
}

#trattamenti-spa .rooftop-info {
	font-size: .9rem;
	color: var(--c-grigio2);
}

.bg-gray {
	background: #F4F4F4;
}

/* Splide */

.photogallery-full {
	width: 100%;
	max-height: 100vh;
}

.photogallery-full .splide__track {
	height: 100vh;
}

@media (max-width: 767.98px) {
	.photogallery-full .splide__track {
		height: auto;
	}
}

.photogallery-full .splide__list {
	height: 100%;
}

.photogallery-full .splide__slide {
	height: 100%;
	width: 100%;
}

/* Experiences */

.hero.experiences {
	background-image: url(../images/experiences-in-amalfi-coast.jpg);
	background-position: bottom;
	background-size: cover;
	margin-bottom: 0;
}

.hero.experiences h1 {
    margin-bottom: 10%;
    position: relative;
    z-index: 10;
    font-size: 8rem;
}

@media (max-width: 767.98px) {
	.hero.experiences h1 {
		font-size: 3rem;
		margin-bottom: 100px;
		transition: margin-bottom .3s;
	}

	.bookingopen .hero.experiences h1 {
		margin-bottom: 360px;
	}
}

.experiences-in-positano {
	margin-top: 1.5rem;
}

.experience {
	background-color: transparent;
	width: 100%;
	height: 600px;
	perspective: 1000px;
}

@media (max-width: 1399.98px) {
	.experience {
		height: 600px;
	}
}

@media (max-width: 1199.98px) {
}

@media (max-width: 991.98px) {
}

@media (max-width: 767.98px) {
}

@media (max-width: 575.98px) {
}

.experience:hover {
	position: relative;
	z-index: 1;
}

.experience-inner {
	position: relative;
	width: 100%;
	height: 100%;
	text-align: center;
	transition: transform 0.8s;
	transform-style: preserve-3d;
}

.experience:hover .experience-inner {
	transform: rotateY(180deg) scale(1.1);
}

@media (max-width: 767.98px) {
	.experience:hover .experience-inner {
		transform: rotateY(180deg) scale(1);
	}
}

.experience-cover,
.experience-info {
	position: absolute;
	width: 100%;
	height: 100%;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	box-shadow: 0 0 0 rgba(0, 0, 0, 0);
	transition: box-shadow .3s;
}

.experience:hover .experience-cover,
.experience:hover .experience-info {
	box-shadow: 0 30px 60px rgba(0, 0, 0, .3);
}

@media (max-width: 767.98px) {
	.experience:hover .experience-cover,
	.experience:hover .experience-info {
		box-shadow: 0 10px 20px rgba(0, 0, 0, .3);
	}
}

.experience-cover {
	overflow: hidden;
	/* position: relative; */
	border-radius: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.experience-cover img {
	object-fit: cover;
	object-position: center top;
	width: 100%;
	height: 100%;
}

.experience-cover span {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgb(11, 27, 48);
	background: linear-gradient(180deg, rgba(0, 31, 54, 0) 0%, rgba(0, 31, 54, .7) 100%);
	padding: 0 1rem 2rem;
	color: #FFF;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	height: 50%;
	font-family: 'Prata', serif;
	font-size: 2rem;
}

.experience-info {
	background-color: #F4F4F4;
	color: white;
	transform: rotateY(180deg);
	padding: 1.5rem;
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	height: 100%;
}

.experience-info p {
	font-size: .9rem !important;
	text-align: left;
	z-index: 1;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	background: rgba(0, 0, 0, .25);
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	color: #FFF !important;
	padding: 1.2rem 1.5rem 1.5rem;
}

.experience-info p b {
	line-height: 120%;
    font-family: 'Prata', serif;
    font-size: 1.6rem;
    display: block;
    font-style: italic;
    margin: .3rem 0 .6rem;
	font-weight: 400;
}

.experience-info img {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	transform: scaleX(-1);
}

.experience-info button,
.experience-info a {
	position: absolute;
	bottom: 1.5rem;
	left: 1.5rem;
	z-index: 2;
	width: calc(50% - 2rem);
	border: none;
	background: rgba(255, 255, 255, 1);
	padding: 1rem;
	font-weight: 500;
	border-radius: 2px;
}

@media (max-width: 575.98px) {
	.experience-info button,
	.experience-info a {
		bottom: 5.5rem;
		left: 1rem;
		right: 1rem;
		width: calc(100% - 2rem);
	}
}

.experience-info a {
	left: auto;
	right: 1.5rem;
	background: var(--c-azzurro);
	color: #FFF;
}

@media (max-width: 575.98px) {
	.experience-info a {
		left: 1rem;
		right: 1rem;
		bottom: 1rem;
	}
}

.experience-modal {
	border: 0;
}

.experience-modal .modal-title,
.experience-description-h {
	color: var(--c-azzurro);
	font-weight: 400;
	font-size: 1.5rem;
}

.experience-description {
	padding: 1.5rem;
	background-color: #F5F5F5;
}

@media (max-width: 767.98px) {
	.experience-description {
		padding: 1rem;
	}
}

.experience-description p,
.experience-description li {
	display: block;
	font-size: 1rem;
	color: var(--c-grigio2);
	line-height: 160%;
	text-align: left;
	margin-bottom: .6rem;
}

.experience-description u {
	display: block;
	font-weight: 600;
	font-size: 1.2rem;
	line-height: 170%;
	color: var(--c-grigio1);
	margin-bottom: .5rem;
	text-decoration: none;
}

.experience-description strong {
	font-weight: 500;
	color: var(--c-azzurro);
}

.experience-description img {
	float: right;
	width: 400px;
	margin: 0 0 0 1.5rem;
	box-shadow: 0 20px 40px rgba(0, 0, 0, .2);
}

@media (max-width: 767.98px) {
	.experience-description img {
		float: none;
		width: 100%;
		margin: 0 0 1.5rem;
	}
}

.experience-modal .btn-secondary {
	font-size: 1.2rem;
	font-weight: 500;
	padding: 1rem 2.5rem;
	background: var(--c-grigio2);
	border: none;
}

.experience-modal .btn-primary {
	font-size: 1.2rem;
	font-weight: 500;
	padding: 1rem 2.5rem;
	background: var(--c-azzurro);
	border: none;
}

@media (max-width: 575.98px) {
	.experience-modal .btn {
		width: 100%;
	}
}















.rooftop-pass {
	margin-top: -6rem;
}

.rooftop-img-frame {
	padding-top: 135%;
	position: relative;
}

.framed-img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	object-fit: cover;
	object-position: center;
}

.spa-experience-spacer {
	height: 10rem;
}

.spa-experience-view {
	width: 100%;
	max-width: 0;
	height: 960px;
	overflow: hidden;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transition: max-width 3s 0s, opacity 2s 1s;
}

.spa-experience-view.show {
	max-width: 100%;
	height: 960px;
	opacity: 1;
}

.spa-experience-view img {
	max-width: 100%;
}

.spa-experience {
	margin-top: -6rem;
}

.servizi-spa-title {
	font-weight: 500;
	color: var(--c-azzurro);
	font-family: 'Prata', serif;
	font-size: 1.6rem;
}

.container-form {
	margin-bottom: 10rem;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.form-card {
	padding: 6rem;
	color: var(--c-grigio2);
	background: #F4F4F4;
	display: flex;
	flex-direction: column;
}

@media (max-width: 767.98px) {
	.form-card {
		padding: 1.5rem;
	}
}

.book-service-img {
	margin-bottom: -3rem;
	background-color: #FFF;
	z-index: +1;
}

.book-service-frame {
	padding-top: 70%;
	position: relative;
}

.book-service-h {
	color: var(--c-azzurro);
}

.book-service-p {
	color: var(--c-grigio2);
}

/*      --> Chi Siamo										*/
.about-h1 {
	color: var(--c-azzurro);
	font-size: 4rem;
	text-align: center;
	line-height: 1.125;
	padding: 0 4rem;
	display: block;
	max-width: 1200px;
	margin: 0 auto;
}

@media (max-width: 767.98px) {
	.about-h1 {
		font-size: 2rem;
		padding: 0;
	}
}

.about-h1 strong {
	color: var(--c-blu);
	font-size: 4.5rem;
	font-weight: normal;
	display: block;
	text-align: center;
	position: relative;
	z-index: 1;
}

@media (max-width: 767.98px) {
	.about-h1 strong {
		font-size: 2.5rem;
	}
}

.about-h1 span {
	display: block;
}

.about-us p {
	display: block;
	font-size: 1.1rem;
	color: var(--c-grigio2);
	line-height: 160%;
	margin-bottom: 1rem;
}

.about-us u {
	display: block;
	font-weight: 400;
	font-size: 1.3rem;
	line-height: 170%;
	color: var(--c-grigio1);
	margin-bottom: 2rem;
	text-transform: uppercase;
	text-decoration: none;
}

.about-us p strong {
	font-weight: 500;
	color: var(--c-azzurro);
}

.about-us img {
	max-width: 100%;
	height: auto;
}

/* Pool pass */

.hero.poolpass {
	background-image: url(../images/pool-pass-amalfi-coast.jpg);
	background-position: bottom;
	background-size: cover;
	margin-bottom: 0;
}

.hero.poolpass h1 {
    margin-bottom: 10%;
    position: relative;
    z-index: 10;
    font-size: 8rem;
}

@media (max-width: 767.98px) {
	.hero.poolpass h1 {
		font-size: 3rem;
		margin-bottom: 100px;
		transition: margin-bottom .3s;
	}

	.bookingopen .hero.poolpass h1 {
		margin-bottom: 360px;
	}
}

.poolpass-intro {
	font-size: 1.2rem;
	color: var(--c-grigio1);
}

.poolpass-intro span {
	font-size: 1rem;
	color: var(--c-grigio2);
	margin-bottom: 2rem;
	display: block;
}

.poolpass-intro p {
	margin-bottom: 1rem;
}

/* Gallery home */

.home-gallery {
	text-align: center;
	margin-bottom: 5rem;
}

.home-gallery h6 {
	color: var(--c-azzurro);
    text-align: center;
    font-size: 5rem;
    margin-bottom: 2rem;
}

/* Contatti */

.hero.hero-contatti {
	background-image: url(../images/hero-contatti.jpg);
	background-position: bottom;
	background-size: cover;
	margin-bottom: 0;
}

.hero.hero-contatti h1 {
    margin-bottom: 10%;
    position: relative;
    z-index: 10;
    font-size: 8rem;
}

@media (max-width: 767.98px) {
	.hero.hero-contatti h1 {
		font-size: 3rem;
		margin-bottom: 100px;
		transition: margin-bottom .3s;
	}

	.bookingopen .hero.hero-contatti h1 {
		margin-bottom: 360px;
	}
}

/* reCAPTCHA */

.grecaptcha-badge {
	position: absolute !important;
	display: none !important;
}