/* font */
@font-face {
  font-family: 'Proxima Nova';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: local('Proxima Nova Regular'), local('ProximaNovaRegular'), url(/css/fonts/ProximaNovaRegular.otf) format('opentype');
}
@font-face {
  font-family: 'Proxima Nova';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local('Proxima Nova Bold'), local('ProximaNovaBold'), url(/css/fonts/ProximaNovaBold.otf) format('opentype');
}

/* 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: 'Proxima Nova', sans-serif;
	font-size: 16px;
	font-weight: 300;
	color: var(--grey);
	background: var(--white);
	
	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 {
	background: var(--green);
}

	.header_body {
		position: relative;
		width: 100%;
		height: 96px;
		margin: 0 auto;
		padding: 0 20px;
		box-shadow: 0px 6px 5px 0px rgba(var(--grey_rgb), 0.3);
		z-index: 3;
	}
	
	@media screen and (min-width : 994px) {
		.header_body { padding: 0 50px; }
	}
	
		#logo_abc {
			position: absolute;
			top: 20px;
			width: 152px;
			height: 152px;
		}
		
			#logo_abc img {
				width: 100%;
			}
			
		#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: 700;
					font-size: 14px;
				}
			
					#menu_desktop li a {
						color: var(--white);
						transition: color 0.3s linear;
						-webkit-transition: color 0.3s linear;
						-moz-transition: color 0.3s linear;
					}
			
					#menu_desktop li a:hover {
						color: rgba(var(--white), 0.7);
					}
					
					#menu_desktop #menu_contatti {
						padding-right: 40px;
						border-right: 1px solid rgba(var(--white_rgb), 0.7);
					}
					
					#menu_desktop #menu_user {
						padding-left: 40px;
					}
					
					#menu_desktop #user_icon {
						padding: 0;
						margin-top: 7px;
					}
					
			/* Menu Mobile classi */
					
			#menu_mobile input {
				display: none;
			}

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

			.open:before {
				content: "";
				background-color: var(--white);
				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(--white);
				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: 40px;
			}

			.menu_box {
				position: fixed;
				width: 100%;
				height: 100%;
				top: 0;
				left: 0;
				background: var(--green);
				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 #menu_contatti {
				padding-bottom: 40px;
			}
			
			.menu_box #menu_user {
				padding-top: 40px;
			}

			.menu_box ul li a {
				display: block;
				color: var(--white);
				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(--white);
			}

			.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%);
			}
			
			#menu_mobile #menu_contatti {
				border-bottom: 1px solid rgba(var(--white_rgb), 0.7);
			}
		
			#menu_mobile #user_icon {
				display: none;
			}
				
main {
	background: var(--white);
}

	.main_body {
		position: relative;
		width: 100%;
		height: auto;
		margin: 0 auto;
		padding: 60px 20px;
	}
	
	@media screen and (min-width : 994px) {
		.main_body { padding: 60px 50px; }
	}
	
#partner {
	background: linear-gradient(180deg, rgba(226,226,226,1) 0%, rgba(255,255,255,1) 30%, rgba(255,255,255,1) 100%);
}

	#partner_body {
		position: relative;
		width: 100%;
		height: auto;
		margin: 0 auto;
		padding: 60px 20px;
		display: block;
		font-size: 14px;
	}
	
	@media screen and (min-width : 994px) {
		#partner_body { padding: 60px 50px; display: flex; }
	}
	
		#agis {
		}
		
			#logo_agis {
				position: relative;
				display: flex;
				align-items: center;
				margin: 25px 0;
			}
			
				#agis_logo, #agis_logo img {
					width: 50px;
					height: 50px;
				}
				
				#agis_link {
					margin-left: 20px;
				}
				
					#agis_link a {
						color: var(--grey);
						transition: color 0.3s linear;
						-webkit-transition: color 0.3s linear;
						-moz-transition: color 0.3s linear;
					}
				
					#agis_link a:hover {
						color: var(--green);
					}
			
		#partner_loghi {
			border-top: 2px dotted rgba(var(--grey_rgb), 0.3);
			margin-top: 25px;
			padding-top: 25px;
		}
	
		@media screen and (min-width : 994px) {
			#partner_loghi { border-top: 0; margin-top: 0; padding-top: 0; border-left: 2px dotted rgba(var(--grey_rgb), 0.3); padding-left: 80px; margin-left: 80px; }
		}
		
			#partner_iniziativa {
			}
			
				#loghi_iniziativa {
					display: flex;
					flex-direction: column;
					margin-top: 25px;
				}
	
				@media screen and (min-width : 994px) {
					#loghi_iniziativa { flex-direction: row; align-items: center; justify-content: space-between; }
				}
				
					#loghi_iniziativa img {
						height: 55px;
					}
					
					#loghi_iniziativa .iniziativa_logo {
						display: block;
						margin-top: 25px;
					}
	
					@media screen and (min-width : 994px) {
						#loghi_iniziativa .iniziativa_logo { margin-top: 0; }
					}
		
			#partner_collaborazione {
				margin-top: 30px;
			}
			
				#loghi_collaborazione {
					display: flex;
					flex-direction: column;
					margin-top: 25px;
				}
	
				@media screen and (min-width : 994px) {
					#loghi_collaborazione { flex-direction: row; align-items: center; justify-content: space-between; margin-top: 0; }
				}
					
					#logo_cineteca {
						height: 17px;
					}
					
					#logo_fisppa {
						height: 55px;
					}
					
					#logo_csc {
						height: 47px;
					}
					
					#loghi_collaborazione .collaborazione_logo {
						display: block;
						margin-top: 25px;
					}
	
					@media screen and (min-width : 994px) {
						#loghi_collaborazione .collaborazione_logo { margin-top: 0; }
					}
					
footer {
	background: var(--grey);
}

	.footer_body {
		position: relative;
		width: 100%;
		height: auto;
		margin: 0 auto;
		padding: 60px 20px;
		color: var(--white);
		display: flex;
		flex-direction: column;
	}
	
	@media screen and (min-width : 994px) {
		.footer_body { padding: 60px 50px; flex-direction: row; }
	}
	
		.footer_body a {
			color: var(--white);
			transition: color 0.3s linear;
			-webkit-transition: color 0.3s linear;
			-moz-transition: color 0.3s linear;
		}
	
		.footer_body a:hover {
			color: rgba(var(--white_rgb), 0.5);
		}
	
		.footer_column {
			width: 100%;
			margin-top: 25px;
		}
	
		@media screen and (min-width : 994px) {
			.footer_column { width: calc(100% / 3); margin-top: 0; }
		}
	
		.footer_column:first-child {
			margin-top: 0;
		}
		
		.footer_column:last-child {
			text-align: left;
		}
	
		@media screen and (min-width : 994px) {
			.footer_column:last-child { text-align: right; }
		}
		
			.footer_column li {	
				margin-bottom: 8px;
			}
			
			.footer_column li:last-child {	
				margin-bottom: 0;
			}


/* elementi comuni */

.body_title {
	font-size: 27px;
	font-weight: 700;
	margin-bottom: 60px;
}

strong {
	font-weight: 700;
}

.btt {
	cursor: pointer;
}

.btt_main_solid {
	font-family: 'Khand';
	font-weight: 500;
	font-size: 18px;
	height: 44px;
	line-height: 44px;
	background: var(--first_color);
	color: var(--third_color);
	text-transform: uppercase;
	text-align: center;
	transition: box-shadow 0.3s linear;
	-webkit-transition: box-shadow 0.3s linear;
	-moz-transition: box-shadow 0.3s linear;
}

.btt_main_solid:hover {
	box-shadow: 0px 0px 10px 0px rgba(var(--second_rgb), 0.5);
}

.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;
}