/* font */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Poppins Regular'), local('Poppins-Regular'), url(/css/fonts/Poppins-Regular.ttf) format('truetype');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: local('Poppins SemiBold'), local('Poppins-SemiBold'), url(/css/fonts/Poppins-SemiBold.ttf) format('truetype');
}

/* font mod */
.font_augmented_200 { font-size: 2em; }
.font_augmented_150 { font-size: 1.5em; }
.font_augmented_140 { font-size: 1.4em; }
.font_augmented_130 { font-size: 1.3em; }
.font_augmented_120 { font-size: 1.2em; }
.font_augmented_110 { font-size: 1.1em; }

.font_reduced_95 { font-size: 0.95em; }
.font_reduced_90 { font-size: 0.9em; }
.font_reduced_85 { font-size: 0.85em; }
.font_reduced_80 { font-size: 0.8em; }
.font_reduced_70 { font-size: 0.7em; }
.font_reduced_60 { font-size: 0.6em; }
.font_reduced_50 { font-size: 0.5em; }

.invisible_elmnt { font-size:0px; }

/**/
body {
	text-align: left;
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: var(--fourth_color);
	background: var(--third_color);
	
	line-height: 20px;
	
	margin: 0;
}

* {
	box-sizing: border-box;
}

a:link {
  text-decoration: none;
}
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
a:active {
  text-decoration: none;
}
h1 {
	font-weight: 700;
}

#container {
	width: 100%;
	
	margin: 0 auto;
}

header {
}

	.header_body {
		position: relative;
		width: 100%;
		height: 158px;
		margin: 0 auto;
		padding: 20px 20px;
		box-shadow: 0px 3px 5px 0px rgba(var(--fourth_color_rgb), 0.5);
		background: var(--third_color);
		z-index: 2;
	}
	
	@media screen and (min-width : 994px) {
		.header_body { padding: 0 50px; height: 55px; }
	}
	
		#logo_mdf {
			position: relative;
			width: 200px;
			float: left;
		}
		
		#logo_mdf_shadow {
			position: absolute;
			left: 30px;
			top: 55px;
			width: 325px;
			height: 119px;
			background: var(--first_color);
			padding: 18px 50px;
			border-radius: 0 0 20px 0;
			display: none;
		}
		
			#logo_mdf img {
				width: 100%;
			}
	
		@media screen and (min-width : 994px) {
			#logo_mdf { float: none; position: absolute; left: 0; top: 0; width: 325px; padding: 18px 50px; border-radius: 0 0 20px 0; background: var(--third_color); }
			#logo_mdf_shadow { display: block; }
		}
			
		#menu {
		}
		
			#menu_mobile {
				display: block;
			}
			
			#menu_desktop {
				display: none;
				position: absolute;
				top: 50%;
				transform: translateY(-50%);
				right: 50px;
			}
	
			@media screen and (min-width : 994px) {
				#menu_desktop { display: block; }
				#menu_mobile { display: none; }
			}
			
			/* Menu Desktop classi */
		
			#menu_desktop ul {
				display: flex;
				align-items: center;
			}
			
				#menu_desktop li {
					padding: 0 20px;
					text-transform: uppercase;
					font-weight: 400;
				}
			
					#menu_desktop li a {
						color: var(--fourth_color);
						transition: color 0.3s linear;
						-webkit-transition: color 0.3s linear;
						-moz-transition: color 0.3s linear;
					}
			
					#menu_desktop li a:hover {
						color: var(--first_color);
					}
					
			/* Menu Mobile classi */
					
			#menu_mobile input {
				display: none;
			}

			.open {
				background-color: var(--fourth_color);
				width: 35px;
				height: 2px;
				display: block;
				border-radius: 2px;
				cursor: pointer;
				position: relative;
				top: 8px;
			}

			.open:before {
				content: "";
				background-color: var(--fourth_color);
				width: 35px;
				height: 2px;
				display: block;
				border-radius: 2px;
				position: relative;
				top: -8px;
				transform: rotate(0deg);
				transition: all 0.3s ease;
			}

			.open:after {
				content: "";
				background-color: var(--fourth_color);
				width: 35px;
				height: 2px;
				display: block;
				border-radius: 2px;
				position: relative;
				top: 6px;
				transform: rotate(0deg);
				transition: all 0.3s ease;
			}

			.menu_open {
				width: 35px;
				height: 20px;
				display: block;
				cursor: pointer;
				float: right;
				margin-top: 49px;
			}

			.menu_box {
				position: fixed;
				width: 100%;
				height: 100%;
				top: 0;
				left: 0;
				background: #92a0c8;
				z-index: 2;
				padding: 40px;
			}
			
				.open_box {
					height: 20px;
					width: 35px;
					display: block;
					position: absolute;
					z-index: 30001;
				}

			.menu_box .menu_content {
				position: relative;
				top: 50%;
				transform: translateY(-50%);
				text-align: center;
			}
		
			.menu_box ul li {
				padding: 20px 0;
			}

			.menu_box ul li a {
				display: block;
				color: var(--third_color);
				text-transform: uppercase;
				font-weight: 700;
				font-size: 18px;
				text-decoration: none;
				transition: color 0.3s linear;
				-webkit-transition: color 0.3s linear;
				-moz-transition: color 0.3s linear;
			}

			.menu_box ul li a:hover {
				color: var(--third_color);
			}
			
			.menu_box path {
				fill: var(--third_color);
			}

			.menu_effects {
				opacity: 0;
				visibility: hidden;
				transition: opacity 0.5s, visibility 0.5s;
			}

			.menu_effects ul {
				transform: translateY(0%);
				transition: all 0.5s;
			}

			#menu_toggle:checked ~ .menu_effects {
				opacity: 1;
				visibility: visible;
				transition: opacity 0.5s;
			}

			#menu_toggle:checked ~ .menu_effects ul {
				opacity: 1;
			}

			#menu_toggle:checked ~ .menu_open .open {
				background-color: transparent;
			}

			#menu_toggle:checked ~ .menu_open .open:before {
				content: "";
				background-color: white;
				transform: rotate(45deg);
				position: absolute;
				top: 0;
				right: 0;
				z-index: 3;
			}

			#menu_toggle:checked ~ .menu_open .open:after {
				content: "";
				background-color: white;
				transform: rotate(-45deg);
				position: relative;
				top: 0;
				right: 0;
				z-index: 3;
			}

			#menu_toggle:not(:checked) ~ .menu_effects ul {
				transform: translateY(-30%);
			}
			
.reel {
}

	#images_header {
		position: relative;
	}
	
		#slogan {
			position: relative;
			width: 100%;
			color: var(--third_color);
			background: rgba(0, 0, 0, 0.8);
			text-align: right;
			font-style: italic;
			font-size: 14px;
			padding: 10px 20px;
		}
	
		@media screen and (min-width : 994px) {
			#slogan { position: absolute; bottom: 0; left: 0; padding: 20px 50px 20px 40%; font-size: 18px; background: rgba(0, 0, 0, 0.5); }
		}
	
		.slider {
		}
		
			.slider_item {
			}
			
				.slider_item img {
					width: 100%;
					display: block;
				}
				
main {
	background: var(--white);
}

	.main_body {
		position: relative;
		width: 100%;
		height: auto;
		margin: 0 auto;
		padding: 60px 20px;
		text-align: center;
	}
	
	@media screen and (min-width : 994px) {
		.main_body { padding: 100px 50px; }
	}
					
footer {
	background: linear-gradient(to bottom, rgba(57,57,57,1) 0%,rgba(0,0,0,1) 100%);
}

	.footer_body {
		position: relative;
		width: 100%;
		height: auto;
		margin: 0 auto;
		padding: 60px 20px;
		color: var(--third_color);
		text-align: center;
	}
	
	@media screen and (min-width : 994px) {
		.footer_body { padding: 60px 50px; }
	}
	
		.social_icon {
			font-size: 30px;
		}
		
			.social_icon li a {
				color: var(--second_color);
				transition: color 0.3s linear;
				-webkit-transition: color 0.3s linear;
				-moz-transition: color 0.3s linear;
			}
		
			.social_icon li a:hover {
				color: var(--third_color);
			}
			
		.footer_info {
			margin: 50px 0;
		}
		
		.menu_footer {
			margin-bottom: 20px;
		}
		
			.menu_footer ul {
				display: flex;
				flex-direction: column;
				justify-content: center;
				row-gap: 20px;
			}
	
			@media screen and (min-width : 994px) {
				.menu_footer ul { flex-direction: row; column-gap: 20px; }
			}
			
				.menu_footer ul li a {
					color: var(--third_color);
					transition: color 0.3s linear;
					-webkit-transition: color 0.3s linear;
					-moz-transition: color 0.3s linear;
				}
			
				.menu_footer ul li a:hover {
					color: var(--second_color);
				}


/* elementi comuni */

.body_title {
	font-size: 36px;
	line-height: 36px;
	font-weight: 400;
	text-transform: uppercase;
	margin-bottom: 60px;
	letter-spacing: -1px;
}

strong {
	font-weight: 600;
}

hr {
	border: none;
	border-top: 10px dotted var(--first_color);
	width: 28px;
}

.btt {
	cursor: pointer;
}

.btt_main_solid {
	height: 40px;
	line-height: 40px;
	background: var(--first_color);
	color: var(--third_color);
	text-transform: uppercase;
	text-align: center;
	transition: background 0.3s linear;
	-webkit-transition: background 0.3s linear;
	-moz-transition: background 0.3s linear;
}

.btt_main_solid:hover {
	background: var(--fourth_color);
}

.btt_main_solid a {
	color: var(--third_color);
}

.page_top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	opacity: .7;
	z-index: 200;
	
	display: none;
}

.page_top:hover {
	opacity: 1;
}


.slick-prev, .slick-next {
	width: 50px!important;
	height: 50px!important;
	z-index: 200;
	display: none!important;
}

.slick-prev:before, .slick-next:before {
	font-size: 50px!important;
}

.slick-prev {
	left: 50px!important;
}

.slick-next {
	right: 50px!important;
}
	
@media screen and (min-width : 480px) and (max-width : 767px) {
	.slick-prev, .slick-next { }
}
@media screen and (min-width : 768px) and (max-width : 992px) {
	.slick-prev, .slick-next { }
}
@media screen and (min-width : 992px) {
	.slick-prev, .slick-next { display: block!important; }
}

.slick-prev:before {
  content: url('/images/left-arrow.svg')!important;
}

.slick-next:before {
  content: url('/images/right-arrow.svg')!important;
}