
@font-face {
	font-family: "montserrat";
	src: url('/fonts/montserrat.ttf')
}

.montserrat {
	font-family: 'montserrat', sans-serif;
}


html, body {
	font-family: montserrat !important;
	line-height: 1.7;
	margin: 0;
	padding: 0;
}
body {padding-top: 60px;
	color: #777;
	font-size: 15px;
	font-weight: 400;
	overflow-x: hidden;
	position: relative;
/*	font-family: 'Roboto', sans-serif;*/
}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section,main { 
    display: block;
}
hr {
	border-left: none;
	border-right: none;
    border-top: 1px solid #E5E5E5;
    color: #F4F4F4;
    margin: 20px 0;
    padding: 0;
}
/* =============== DEFAULT HTML - LINK STYLES =============== */
a {
	text-decoration: none;
	outline: none;
	color: #538bff;
	-webkit-transition: all .3s ease-in-out;
	   -moz-transition: all .3s ease-in-out;
		 -o-transition: all .3s ease-in-out;
		-ms-transition: all .3s ease-in-out;
			transition: all .3s ease-in-out;
}
a:hover {
	color: #666;
	text-decoration: none;
}
a:active {
	text-decoration: none;
}
a:focus {
	outline: none;
}
a img {
	border: none;
}
a[class*="glyphicon-"] {
	text-decoration: none;
}
/* =============== DEFAULT HTML - HEADING STYLES =============== */
h1, h2, h3, h4, h5, h6 {
	margin: 5px 0 10px;
	color: #333;
	text-transform: uppercase;
	font-family: 'Montserrat', sans-serif;
}
h1, h2 {
	font-weight: 300;
}
h1 {
	font-size: 2.2em;
}
h2 {
	font-size: 1.8em;
}
h3 {
	font-size: 22px;
}
h4 {
	font-size: 18px;
}
h5, h6 {
	font-size: 1em;
}
/* =============== DEFAULT HTML - LIST STYLES =============== */
ul, ul li,
ol, ol li,
p, form, input {
	margin: 0;
	padding: 0;
}
p {
	margin-bottom: 10px;
}
ul, ul li {
	list-style: none;
}
/* =============== DEFAULT HTML - IMAGES STYLES ===============
img {
	border: none;
	max-width: 100%;
}
img.image-left {
	float: left;
	margin-right: 5px;
}
img.img-full-width {
	width: 100%;
} */
/* =============== PREDEFINED CONTENT ALIGN =============== 
.margin-left {
	margin-left: 1em !important;
	margin-right: 0;
}
.margin-right {
	margin-left: 0;
	margin-right: 1em !important;
}*/
/* =============== PRETTY PHOTO OVERRIDE ===============
div.pp_pic_holder a {
	-webkit-transition: all 0s ease 0s;
	   -moz-transition: all 0s ease 0s;
		 -o-transition: all 0s ease 0s;
		-ms-transition: all 0s ease 0s;
			transition: all 0s ease 0s;
}
div.pp_default .pp_description {
	margin: 12px 50px 0 0;
}
div.pp_default .pp_social {
	width: 100%;
} */





/* Base: tutte le immagini sempre a pieno frame */
.carousel-inner .item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.2);
	transition: transform 0s;
}
/* Vignettatura */
.carousel-inner .item::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle, transparent 60%, rgba(0,0,0,0.35));
	pointer-events: none;
	z-index: 2;
}
.anim-zoom img {
	animation: zoomIn 8s ease-in-out forwards;
}
@keyframes zoomIn {
	from {
		transform: scale(1.2);
	}

	to {
		transform: scale(1.35);
	}
}
.anim-pan-left img {
	animation: panLeft 8s linear forwards;
}
@keyframes panLeft {
	from {
		transform: translateX(5%) scale(1.2);
	}

	to {
		transform: translateX(-5%) scale(1.2);
	}
}
.anim-pan-right img {
	animation: panRight 8s linear forwards;
}
@keyframes panRight {
	from {
		transform: translateX(-5%) scale(1.2);
	}

	to {
		transform: translateX(5%) scale(1.2);
	}
}
.anim-fade img {
	animation: fadeCine 8s ease forwards;
}
@keyframes fadeCine {
	from {
		opacity: 0.5;
		transform: scale(1.2);
	}

	to {
		opacity: 1;
		transform: scale(1.25);
	}
}
.anim-slide-up img {
	animation: slideUp 8s ease-out forwards;
}
@keyframes slideUp {
	from {
		transform: translateY(5%) scale(1.2);
		opacity: 0.9;
	}

	to {
		transform: translateY(0) scale(1.2);
		opacity: 1;
	}
}
.anim-slide-down img {
	animation: slideDown 8s ease-out forwards;
}
@keyframes slideDown {
	from {
		transform: translateY(-5%) scale(1.2);
		opacity: 0.9;
	}

	to {
		transform: translateY(0) scale(1.2);
		opacity: 1;
	}
}
.anim-rotate img {
	animation: rotateSoft 8s ease-in-out forwards;
}
@keyframes rotateSoft {
	from {
		transform: scale(1.2) rotate(-1deg);
	}

	to {
		transform: scale(1.25) rotate(1deg);
	}
}



.hero-text-box {
	max-width: 500px;
	width: 100%;
}
/* L'immagine deve solo riempire la larghezza della colonna */
.hero-img {
	width: 100%;
	height: auto; /* mantiene proporzioni originali */
	object-fit: cover; /* utile se l'immagine è più grande */
	display: block;
}


/* SECTION PARALLAX */
.maulli-parallax {
	background-image: url('/images/parallax3.jpg');
	background-size: cover;
	background-position: center;
	background-attachment: fixed; /* effetto parallax */
	padding: 120px 0;
	position: relative;
}
.maulli-parallax::before {
	content: "";
		position: absolute;
		inset: 0;
		background: rgba(0, 0, 0, 0.45);
		/*backdrop-filter: blur(1px);*/
		z-index: 1;
	}
	.maulli-parallax .container,
	.maulli-parallax .row {
		position: relative;
		z-index: 2;
	}
.text-box {
	max-width: 500px;
	color: #fff;
}
.inner-img {
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 20px;
	transition: transform 0.5s ease;
}
.inner-img:hover {
	transform: scale(1.03);
}



/* GALLERY Wrapper generale dei controlli */
.swiper-controls-wrapper {
	margin-top: 35px; /* 20px in più rispetto a prima */
	display: flex;
	justify-content: center; /* centra i pallini */
	align-items: center;
	position: relative;
}
.swiper-pagination {
	position: static !important;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
	width: auto;
}
.swiper-controls {
	position: absolute;
	right: 0;
	display: flex;
	gap: 10px;
}
.swiper-button-prev,
.swiper-button-next {
	position: static !important;
	width: 38px;
	height: 38px;
	background: rgba(0,0,0,0.5);
	border-radius: 50%;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}
.swiper-button-prev::after,.swiper-button-next::after {
		font-size: 16px;
}



/* ------ */
.card-vertical {
	width: auto;
	height: 520px;
	position: relative;
	overflow: hidden;
	border-radius: 0px;
	color: #fff;
}
.card-vertical .card-img {
		height: 100%;
		width: 100%;
		object-fit: cover;
		transition: transform 0.4s ease;
	}
.card-vertical:hover .card-img {
		transform: scale(1.05);
	}
/* Overlay scuro indipendente */
.overlay-dark {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.40); /* regola qui l'intensità */
	z-index: 1;
}
/* Assicura che il contenuto sia sopra l’overlay */
.card-img-overlay {
	z-index: 2;
}
.separator {
	border: none;
	border-top: 1px solid rgba(255,255,255,0.4);
	width: 60%;
	margin: 0.75rem 0;
}
.social-links a {
	font-size: 1.2rem;
	transition: opacity 0.3s ease;
}
.social-links a:hover {
		opacity: 0.7;
	}




/* ------ */
.maulli-section .small-title {
	letter-spacing: 2px;
	font-size: 0.85rem;
	color: #888;
}
.maulli-section .main-img-wrapper {
	position: relative;
}
.maulli-section .main-img {
	border-radius: 20px;
}
.maulli-section .small-img {
	width: 120px;
	border-radius: 16px;
	position: absolute;
	z-index: 3;
	transition: transform 0.4s ease;
}


.maulli-section .small-img-1 {bottom: 8px;margin-left: 8px;}
.maulli-section .small-img-2 {display:none;}

@media (min-width: 992px) {
.maulli-section .small-img-1 {bottom: -20px;left: -10px;}
	.maulli-section .small-img-2 {display: block;top: 20px;right: -2px;}
	.maulli-section .small-img {
		width: 260px;
	}
}


.maulli-section .small-img:hover {
	transform: scale(1.05);
}
.maulli-section .contact-link {
	font-size: 0.9rem;
	text-decoration: none;
	color: #333;
	border-bottom: 1px solid #ccc;
	padding-bottom: 2px;
	transition: color 0.3s ease, border-color 0.3s ease;
}
.maulli-section .contact-link:hover {
		color: #000;
		border-color: #000;
}

/* banner */
.banner-hero {width: 100%;height: 380px;overflow: hidden;}
.banner-hero img {width: 100%;height: 100%;object-fit: cover;}
.banner-hero .overlay {position: absolute;inset: 0;background: rgba(0,0,0,0.45);}
.banner-text {z-index: 2;}
.info-card {background: #caa05c1a;}
.info-card i {margin-bottom: 0.25rem;color: #6c7ae0;}/*display: block;*/







/* old */

.kaushan {font-family: 'Kaushan Script', cursive;}
.colblu {color:#538bff;}

/* PREZZI */
.panel:hover { box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4), 0 1px 5px rgba(130, 130, 130, 0.35); }
.panel-body{padding: 0px;text-align: center;}
.the-price{background-color: rgba(220,220,220,.17);box-shadow: 0 1px 0 #dcdcdc, inset 0 1px 0 #fff;padding: 20px;margin: 0;}
.the-price h1{line-height: 1em;padding: 0;margin: 0;}
.subscript{font-size: 25px;}
/* CSS-RIBBON Position correctly within container*//*Set overflow to hidden, to mask inner square*/
.cnrflash
{position: absolute;top: -9px;right: 4px;z-index: 1;overflow: hidden;width: 100px;height: 100px;border-radius: 3px 5px 3px 0;}
.cnrflash-inner/*Set position, make larger then 			container and rotate 45 degrees*/
{position: absolute;bottom: 0;right: 0;width: 145px;height: 145px;-ms-transform: rotate(45deg); /* IE 9 */
    -o-transform: rotate(45deg); /* Opera */
    -moz-transform: rotate(45deg); /* Firefox */
    -webkit-transform: rotate(45deg); /* Safari and Chrome */
    -webkit-transform-origin: 100% 100%; /*Purely decorative effects to add texture and stuff*/ /* Safari and Chrome */
    -ms-transform-origin: 100% 100%;  /* IE 9 */
    -o-transform-origin: 100% 100%; /* Opera */
    -moz-transform-origin: 100% 100%; /* Firefox */
    e: linear-gradient(90deg, transparent 50%, rgba(255,255,255,.1) 50%), linear-gradient(0deg, transparent 0%, rgba(1,1,1,.2) 50%);*/
    background-s
    background-size: 4px,auto, auto,auto;background-color: #aa0101;
    box-shadow: 0 3px 3px 0 rgba(1,1,1,.5), 0 1px 0 0 rgba(1,1,1,.5), inset 0 -1px 8px 0 rgba(255,255,255,.3), inset 0 -1px 0 0 rgba(255,255,255,.2);
}
.cnrflash-inner:before, .cnrflash-inner:after/*Use the border triangle trick to make it look like the ribbon wraps round it's container*/
{content: " ";display: block;position: absolute;bottom: -16px;width: 0;height: 0;border: 8px solid #800000;}
.cnrflash-inner:before{left: 1px;border-bottom-color: transparent;border-right-color: transparent;}
.cnrflash-inner:after{right: 0;border-bottom-color: transparent;border-left-color: transparent;}
.cnrflash-label{position: absolute;bottom: 0;left: 0;display: block;width: 100%;padding-bottom: 5px;color: #fff;
text-shadow: 0 1px 1px rgba(1,1,1,.8);font-size: 0.95em;font-weight: bold;text-align: center;}



.footer-link {
	color: #ccc;
	text-decoration: none;
	transition: color 0.3s ease;
}

	.footer-link:hover {
		color: #fff;
	}

.footer-logo img {
	max-width: 160px;
}

.social-links a {
	transition: opacity 0.3s ease;
}
.social-links a:hover {opacity: 0.7;}
.navbar {background-color: #fff;border-bottom: 1px solid #ddd;}
.navbar-brand img {max-height: 60px;}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
	color: #cda300;
}
.cloudTop {
	position: absolute;
	background-image: url('/images/bar1.png');
	background-position-x: center;
	background-repeat: no-repeat;
	background-size: cover;
	margin-top: -120px;
	width: 100%;
	height: 150px;
	display: block;
	z-index: 10;
}
.check-item {display: flex;align-items: center;gap: 0.60rem;margin-bottom: 0.05rem;}
.check-item i {color: #8bc6a0;font-size: 1.1rem;}
.check-item span {font-weight: 500;color: #333;font-size: 0.95rem;}
