/* Enter Your Custom CSS Here */

/* LOGOS SECTION */


@media screen and (max-width: 850px) {
	.contenitore-testo-loghi{
		position: relative;
		top: 4rem;
	}
	.contenitore-loghi{
		position: relative;
		top: 2.5rem;
	}
	
  }

  .overlay{
	  display: none;
  }

  .transparent{
	color: transparent;
}

  @media screen and (min-width: 850px) {
	.overlay{
		display: block;
		position: absolute;
		/* width: 100%;
		height: 100%; */
		border-radius: 5px;
		width: 100%;
		height: 20vh;
		background-color: rgba(230, 230, 221, 0.863);
		top: 0;
		left: 0;
		opacity: 0;
		padding: 0.5rem;
		transition: all 0.4s linear;
		overflow-y: auto;
		font-size: smaller;
		/* color: white; */
		overflow-x: hidden;
	}

	.transparent{
		color: black;
	}
	
	
}


.overlay:hover{
	opacity: 1;
	cursor: pointer;
}



.contenitore-loghi{
	/* width: 100%; */
	/* border: 1px solid red; */
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.box-loghi{
	max-width: calc(100% / 5 - 1rem);
	position: relative;
}

.box-loghi>img{
	max-width: 100%;
	padding: 0.5rem;
}

.layover-img{
	display: block;
	position: relative;
}


@media screen and (max-width: 550px) {
	.elementor-widget-container>img{
		max-width: 150px;
	}
}

.custom-header{
	height: 70vh;
}

/* FORM */
/* FORM  */
.form-container {
	width: 1170px;
	/* border: 1px solid black; */
	margin: 0 auto;
}

form {
	display: flex;
	flex-direction: column;
	padding: 2rem;
	max-width: 100%;
/* background-color: #bbd9f2e8; */
border-radius: 5px;
	
}

input {
	margin: 1rem auto;
	/* height: 3rem; */
	padding: 1rem;
	border-radius: 5px;
	transition: box-shadow 0.1s linear;
	width: 100%;

}

input[type=text]:hover,
input[type=email]:hover,
input[type=file]:hover,
input[type=password]:hover{
	box-shadow: 2px 9px 20px 0px rgba(133, 131, 131, 0.75);
	cursor: pointer;

}

.btn{
	width: 40%;
	margin: 0 auto;
}

.btn-send{
	margin: 0 auto;
	width: 300px;
	padding: 1rem;
	border-radius: 5px;
	transition: all 0.2s linear;
}

.btn-send:hover{
	background-color: rgb(179, 176, 176);
	cursor: pointer;
}


