@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Host+Grotesk:ital,wght@0,300..800;1,300..800&display=swap');

html,
body {
	margin: 0px;
	padding: 0px;
	color: #000;
	font-size: 20px;
	line-height: 1.5;
	background-color: #fff;
	font-family: "Host Grotesk", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	color: #fff;
	font-weight: 300;
}

a {
	color: #fff;
	outline: none !important;
	text-decoration: none;
}

a:hover, 
a:focus {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
}

.content {
	margin: 25px;
	background: rgb(38,83,97);
	background: linear-gradient(-115deg, rgba(38,83,97,1) 0%, rgba(25,65,78,1) 32%, rgba(16,53,65,1) 99%);
	border-radius: 20px;
}

.container {
	min-height: calc(100dvh - 50px);
	padding-top: 20px;
	padding-bottom: 20px;
}

.font-60 {
	font-size: 60px;
	line-height: 1;
	font-weight: 500;
	margin-top: 48px;
}

.font-22 {
	font-size: 22px;
	line-height: 1;
	margin-top: 5px;
	margin-bottom: 10px;
}

.font-30 {
	font-size: 30px;
	line-height: 1;
	margin-bottom: 30px;
	font-weight: 500;
}

.indirizzo {
	background-color: #23505f;
	padding: 30px 40px;
	border-radius: 10px;
}

.indirizzo .uno {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 25px;
}

.indirizzo .telefono {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-bottom: 25px;
	padding: 10px 15px;
	border-radius: 50px;
	background-color: #3a7183;
	max-width: 210px;
	margin-bottom: 25px;
	text-align: center;
}

.indirizzo .telefono:hover,
.indirizzo .telefono:focus {
	background-color: #103541;
	text-decoration: none;
}

@media (min-width: 768px) and (max-width: 991px) {
	html, body {
		font-size: 18px;
	}

	.font-60 {
		font-size: 45px;
	}
	
	.font-30 {
		font-size: 25px;
	}

	.indirizzo {
		padding: 30px 20px;
	}
}

@media (max-width : 767px) {
	html, body {
		font-size: 18px;
	}

	.content {
		margin: 15px;
	}

	.indirizzo {
		padding: 30px 10px;
	}

	.indirizzo .uno {
		flex-wrap: wrap;
		text-align: center;
		justify-content: center;
	}

	.indirizzo .telefono {
		margin-left: auto;
		margin-right: auto;
	}

	.font-60 {
		font-size: 45px;
		text-align: center;
	}
	
	.font-30 {
		font-size: 25px;
		text-align: center;
	}
}