@font-face {
  	font-family: mrEaves;
	src: url(fonts/MrEavesXLModNarOT-Reg.tff);
	src: url(fonts/MrEavesXLModNarOT-Reg.woff);
	
  	font-family: mrEavesNew;
	src: url(fonts/MrEavesXLModOT-Reg.tff);
	src: url(fonts/MrEavesXLModOT-Reg.woff);
}

div {
  font-family: mrEavesNew;
}

/*scroll morbido*/
html {
	scroll-behavior: smooth;
}

/*nasconde scrollbar*/
body::-webkit-scrollbar {
	display: none;
}
body {
	-ms-overflow-style: none;
}

/*ciclo immagini in background*/
#fadeBox {
	position: fixed;
	top: 0;
	width: 100%;
}
#fadeBox img {
	width: 100%;
}
#fadeBox_mobile {
	display: none;
	width: 100%;
}
#fadeBox_mobile img {
	width: 100%;
}
@media (max-width: 768px) {
	#fadeBox {
		display: none;
	}

	#fadeBox_mobile {
		display: block;
		position: fixed;
		top: 0;
	}
}

/*logo*/
.logo_div {
	position: fixed;
	/*position: relative;*/
	top: 0px;
	text-align: center;
	width: 100%;
	background-color: white;
	z-index: 2;
    padding: 20px 0px;
    height: 160px;
}
.logo_div img{
    height: 120px;
}

/*box di testo*/
.text_box_div {
	width: 100%;
	margin-top: 440px;
	margin-left: 0px;
	margin-right: 0px;
}
@media (min-width: 1519px) {
	.text_box_div {
		/*margin-top: 350px;*/
		margin-top: 510px;
	}
}
@media (min-width: 1919px) {
	.text_box_div {
		margin-top: 610px;
	}
}

.text_box {
	background-color: white;
	/*padding: 20px 40px 20px 40px;*/
	text-align: left;


	padding: 10px;
	margin-left: 10px;
	margin-right: 10px;
}

.divider {
	width: 100%
}

h1 {
	text-transform: uppercase;
	font-size: 30px;
}

h2 a {
	color: #376d38;
	text-transform: uppercase;
	font-size: 20px;
	margin-top: 10px;
}

h2 a:hover {
	color: #144016;
	text-decoration: none;
}

h2 button {
	color: #376d38;
	text-transform: uppercase;
	font-size: 20px;
	margin-top: 10px;
	background-color: white;
	border: none;
	font-weight: 600;
}

h2 button:hover {
	color: #144016;
}

.form_div {
	text-align: left;
}

.form_div .text_input {
	background-color: #dddddd;
	border: none;
	width: 100%;
	font-size: 20px;
	border-radius: 3px;
}

.form_div .checkbox_input {
	margin-top: 20px;
}

.form_div label {
	margin-top: 5px;
	font-weight: 400;
}

.footer_div {
	position: relative;
	/*top: 0px;*/
	text-align: center;
	width: 100%;
	background-color: white;
	z-index: 2;
	margin-top: 30px;
	padding-top: 30px;
	padding-bottom: 30px;
}

.text_box_inner {
	border: 1px solid black;
	padding: 20px;
	margin: 0px !important;
	font-size: 18px;
}

.footer_div a {
	color: black;
	margin-right: 10px;
	margin-left: 10px;
	margin-bottom: 20px;
}

.bottone_conferma {
	background-color: black;
	color: #c89d66;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 40px;
	padding-right: 40px;
	font-size: 24px;
	margin-top: 10px;
	border-radius: 10px;
	margin-bottom: 10px;
    border: none;
}
.social_icon {
	color: black;
	font-size: 16px;
	border: 1px solid black;
	padding: 6px;
	border-radius: 40px;
}
.social_icon .fa {
	width: 16px;
}


/*CUSTOM CHECKBOX*/
/* Customize the label (the container) */
.container {
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 12px;
	cursor: pointer;
	font-size: 14px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Hide the browser's default checkbox */
.container input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

/* Create a custom checkbox */
.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 20px;
	width: 20px;
	background-color: white;
	border: 1px solid black;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
	background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
	background-color: black;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
	display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
	left: 9px;
	top: 5px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}





@media (max-width: 768px) {
	.text_box_inner {
		font-size: 18px;
	}

	.footer_div {/*
		position: absolute;
		bottom: 0;*/
	}
}


