/*
 * Author: Luca Arzilli, ALSolutions
 *
 * Project Name: SD Fisioterapia
 *
 */

/* HOME PAGE */

/* il centro */

header {
	height:70vh;
	background-image:url('../img/professionisti-collaboratori/SDFISIOTERAPIA-HEADER-PROFESSIONISTI-COLLABORATORI.webp');
	background-size:cover;
	background-position:center;
	display: flex;           
    align-items: center;   
    justify-content: center;
}
header h1 {
  font-size: clamp(30px, 4vw, 60px);
  line-height: clamp(35px, 4vw, 65px);
  font-weight:100;
  color:#FFF;
  text-align:center;
  margin-top:96px;
}

#professionisti-collaboratori {
	padding:0px;
}
#professionisti-collaboratori h3 {
	font-size: clamp(30px, 5vw, 60px);
	line-height: clamp(35px, 5vw, 65px);
	font-weight:100;
	margin-bottom:40px;
	margin-top:10px;
}
#professionisti-collaboratori .row {
	padding:120px 0px;
}
#professionisti-collaboratori .cit {
	font-size: 30px;
  	line-height: 38px;
	margin-top:40px;
	font-weight:150;
	font-style: italic;
}
#professionisti-collaboratori span {
	background-color:#618ECA;
	font-size: 10px;
  	line-height: 10px;
  	padding:4px 10px;
  	border-radius:10px;
  	color:#FFF;
}

#visita h3 {
	color:#2A3C51;
	font-size: clamp(30px, 5vw, 60px);
	line-height: clamp(35px, 5vw, 65px);
	font-weight:100;
}
#visita img {
	border-radius: 15px;
	margin-top:40px;
	transition: opacity 0.3s ease;
}
#visita .visita-links a {
	text-decoration: none;
	color: #2A3C51;
	display: block;
	font-size: clamp(20px, 1.5vw, 30px);
	line-height: clamp(25px, 1.5vw, 35px);
	padding: 15px 0px;
	transition: color 0.3s ease;
}
#visita a:hover, #visita a:focus {
	color: #496A96;
	font-weight: bold;
}

#visita .visita-links a i {
	margin-left: 10px;
	opacity: 0;  /* Hide arrow by default */
	transition: opacity 0.3s ease;
}

#visita .visita-links a:hover i {
	opacity: 1;  /* Show arrow on hover */
}

@media (max-width: 575px) {
	#professionisti-collaboratori .row {
		padding:60px 0px;
	}
	#visita {
		padding:0px 0px 60px 0px;
	}
}