/*
 * Author: Luca Arzilli, ALSolutions
 *
 * Project Name: Tenuta Del Nicchio
 *
 */

/* HOME PAGE */

/* contatti */

header {
	background-image: url('../img/contatti/TENUTADELNICCHIO-HEADER.webp');
	background-size: cover;
	background-position: center;
	height: 100vh;
	position: relative;
}

header .container-fluid,
header .row,
header .col-xl-12 {
	height: 100%;
}

.header-content {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	height: 100%;
	padding-top: 50px;
}

.header-content img {
	width: 30vw;
}

h1,h2 {
	font-size: clamp(30px, 2.7vw, 50px);
    line-height: 110%;
	font-weight:600;
}

.discover {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
}

.discover a {
	color: #fff;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.discover img {
	width: 30px;
	margin-bottom: 10px;
}

.discover span {
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

h1,h2 {
	font-size: clamp(30px, 2.7vw, 50px);
    line-height: 110%;
	font-weight:600;
}

.contatti-form {
	padding:0px 50px;
}

.social-contatti {
	margin-top:40px;
}

.social-contatti a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 1px solid #000;
    border-radius: 50%;
    color: #000;
    margin: 0 10px;
    transition: all 0.3s ease;
	text-decoration: none;
}

.social-contatti a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.social-contatti i {
    font-size: 16px;
}

@media (max-width: 450px) {
	
	.discover {
		display:none;
	}
}