/* RESET */

* {
	margin: 0;
	padding: 0;
	border: 0;
	list-style: none;
	vertical-align: baseline;
	box-sizing: border-box;
}

/* WEBFONTS */

@font-face {
	font-family: 'freak';
	src: url('../fonts/FREAKGrotesk-next-BOLD.otf') format('opentype');
}

/* GLOBAL */

body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-family: "Bricolage Grotesque", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-variation-settings:
		"wdth" 100;
}

/* MEDIA QUERIES */

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

	body {}

}

/* BLOCKS */

.block-text {
	padding: 40px;
}

.block-image {
	height: 100%;
}

.block-image figure {
	height: 100%;
}

.block-image figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

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

/* NAVBAR */
.navbar-nav .nav-link {
	color: #000000 !important;
}

@media (max-width: 767px) {
	/* Spazio interno nel footer solo su mobile */
	.site-footer .container-fluid,
	.site-footer section,
	.site-footer .blocks {
		padding-left: 20px !important;
		padding-right: 20px !important;
	}

	/* Testi footer centrati solo su mobile */
	.site-footer,
	.site-footer section,
	.site-footer .blocks,
	.site-footer p,
	.site-footer h1,
	.site-footer h2,
	.site-footer h3,
	.site-footer h4,
	.site-footer h5,
	.site-footer h6,
	.site-footer a,
	.site-footer li,
	.site-footer div {
		text-align: center !important;
		line-height: 1.2 !important;
	}
}

/* Interlinea ridotta globale footer per evitare overflow */
.site-footer p,
.site-footer a,
.site-footer li,
.site-footer span {
	line-height: 1.2 !important;
}

/* Personalizzazione pagination Swiper - pallini come rettangoli */
.swiper-pagination-bullet {
	width: 20px;
	height: 6px;
	border-radius: 3px;
	background-color: #FF00EE !important;
	opacity: 0.4;
	transition: opacity 0.3s ease-in-out;
}

.swiper-pagination-bullet-active {
	background-color: #FF00EE !important;
	opacity: 1;
}

/* Colore link nel footer */
.site-footer a {
	color: #00FF15 !important;
}