/*MAIN SETTINGS*/
html {
	scroll-behavior: smooth;
}

html,body {
	margin:0;
	padding:0;
	font: 100% 'Bitter', serif;
	color: var(--black);
	background-color:var(--light-grey);
	font-size: 16px;
	line-height: 1.3em;
}

#main-container {
	min-height:100%;
	position: absolute;
	width: 100%;
    /*display: grid;*/
}

#body-container {
    padding:64px 0 0px;
    margin:0 auto;
    width: 100%;
}

.block-container{
	position:relative;
	margin:0 auto;
	width:1400px;
	overflow:hidden;
}

.block-container.full {
    width: 100%;
}

@media only screen and (max-width: 1460px) {
    .block-container{
		width:100%;
        padding: 0 20px;
	}
}

@media only screen and (max-width: 960px) {
	#body-container{
		padding:56px 0 0px;
		transition: 0.3s ease;
		-webkit-transition: 0.3s ease;
	}
}

@media only screen and (max-width: 720px) {
	.block-container.full {
        padding-left: 0;
        padding-right: 0;
    }
}


/* ---------------------- GENERAL SETTINGS ---------------------- */
*, *::before, *::after {
    box-sizing: border-box;
}

img {
	border:0;
}

/* colors */
:root {
    --yellow: #FCC207;
	--red: #FD2135;
    --grey: #dfdfdf;
    --light-grey: #f2f2f2;
	--dark-grey: #9f9f9f;
    --black: #000000;
    --white: #ffffff;
}

/*backgrounds*/
.grain-grey {
	background-image: url(../img/pattern-grain-grey.jpg) !important;
	background-repeat: repeat;
}

.grain-light-grey {
	background-image: url(../img/pattern-grain-light-grey.jpg) !important;
	background-repeat: repeat;
}

.grain-white {
	background-image: url(../img/pattern-grain-white.jpg) !important;
	background-repeat: repeat;
}

.grain-black {
	background-image: url(../img/pattern-grain-black.jpg) !important;
	background-repeat: repeat;
}

/* formattazione testo */
a {
	text-decoration:none;
	outline:none;
}

p {
	padding:0;
	margin:0 0 20px 0;
}

hr {
    border: 0;
    margin-bottom: 20px;
    border-bottom: solid 1px;
    border-color: var(--dark-grey);
}

h1 {
	margin: 0 0 20px;
	padding: 0;
	letter-spacing: 0.05em;
	display: block;
	width: 100%;
	font-size: 1.8em;
	font-weight: 300;
	font-family: 'Zen Kaku Gothic Antique', sans-serif;
	line-height: 1.1em;
}

h2 {
	margin: 0 0 20px;
	padding: 0;
	letter-spacing: 0.05em;
	display: block;
	width: 100%;
	font-size: 1.5em;
	font-weight:300;
	font-family: 'Zen Kaku Gothic Antique', sans-serif;
	line-height: 1.1em;
}

h3 {
	margin: 0 0 20px;
	padding: 0;
	letter-spacing: 0.05em;
	display: block;
	width: 100%;
	font-size: 1.3em;
	font-weight: 500;
	font-family: 'Zen Kaku Gothic Antique', sans-serif;
	line-height: 1.1em;
}

h4, h5, h6, h7, h8 {
	padding:0;
	margin:0 0 20px 0;
	font-family: 'Zen Kaku Gothic Antique', sans-serif;
	letter-spacing: 0.05em;
    font-size: 1.1em;
	display: block;
	width: 100%;
	font-weight: 500;
}

blockquote {
    background-color: var(--grey);
    margin: 0 0 20px;
    padding: 20px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

time {
	font-size: 0.9em;
    background: var(--grey);
    padding: 5px 10px;
    display: inline-block;
    margin-bottom: 10px;
}

.section-title {
    width: 100%;
    display: block;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.6em;
	line-height: 1.1em;
	font-weight: 300;
	font-family: 'Zen Kaku Gothic Antique', sans-serif;
}

.section-subtitle {
    width: 100%;
    display: block;
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.2em;
    font-weight: normal;
	color: var(--dark-grey);
	font-weight: 400;
}

.box-title {
    width: 100%;
    display: block;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.2em;
}

.txt-center {
    text-align: center;
}

.txt-left {
    text-align: left;
}

.txt-right {
    text-align: right;
}

.block {
	display: block;
}

.inline-block {
	display: inline-block;
}

a.link {
    font-weight: bold;
    transition: 0.2s ease;
	-webkit-transition: 0.2s;
    color: var(--black);
}

a.link:hover {
    color: var(--dark-grey);
}

img.full-width {
    max-width: 100%;
    width: 100%;
    display: block;
}

img.rounded {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

ul {
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
}

ul li {
    margin-bottom: 10px;
}

ul.circlelist li {
    background-image: url(../img/icon-list-circle.svg);
    background-repeat: no-repeat;
    background-position: left 2px;
    background-size: 14px;
    padding-left: 24px;
}

ul.checklist li {
    background-image: url(../img/icon-list-check.svg);
    background-repeat: no-repeat;
    background-position: left 2px;
    background-size: 14px;
    padding-left: 24px;
}

ul.extended li {
    display: inline;
}

ul.extended li:after {
    content: ";";
}

ul.link-list li {
	margin: 0 0 10px;
	display: block;
}

ul.link-list li a {
	display: block;
	color: var(--black);
	padding: 10px 20px;
	background-color: var(--grey);
	font-family: 'Zen Kaku Gothic Antique', sans-serif;
	transition: 0.2s;
	-webkit-transition: 0.2s;
	text-align: center;
}

ul.link-list li a:hover, ul.link-list li a.active {
	background-color: var(--black);
	color: var(--white);
}

@media only screen and (max-width: 960px) {
	ul.link-list {
		margin-bottom: 20px;
		padding-bottom: 10px;
		border-bottom: dashed 1px var(--dark-grey);
	}

	ul.link-list li {
		margin: 0 5px 10px;
		display: inline-block;
	}
}

.table-container {
    overflow-x: auto;
    display: block;
    width: 100%;
    margin-bottom: 20px;
}

table {
    border-collapse: collapse;
}

table th {
	background-color: var(--dark-grey);
    color: var(--white);
    padding: 5px 10px;
    font-weight: normal;
}

table tbody tr {
	color: var(--black);
}

table tbody td {
	padding: 10px;
	font-size: 0.9em;
}

table tbody tr:nth-child(even) {
	background-color: var(--light-grey);
}

table tbody tr:nth-child(odd) {
	background-color: var(--grey);
}
/* fine formattazione testo */

/* elementi form */
.search-input {
	transition: all ease 0.2s;
	-webkit-transition: all ease 0.2s;
	margin-bottom: 20px;
	float:left;
	width: 100%;
}

.search-input.button-container {
	text-align: center;
	margin-top: 20px;
}

.search-input.button-container .button {
	display: inline-block;
	margin: 0 10px;
}

.search-input.checkbox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.search-input label {
	display: block;
	font-size: 0.8em;
	margin-bottom: 10px;
	line-height: 15px;
	font-weight: 700;
    font-family: 'Bitter', serif;
}

.search-input input, .search-input textarea {
	display: block;
	width: 100%;
}

.search-input.half {
	width: 50%;
}

.search-input.half:nth-child(odd) {
	padding-right: 10px;
}

.search-input.half:nth-child(even) {
	padding-left: 10px;
}

@media only screen and (max-width: 640px) {
	.search-input.half {
		width: 100%;
	}

	.search-input.half:nth-child(odd), .search-input.half:nth-child(even) {
		padding-right: 0;
		padding-left: 0;
	}
}

input {
	outline: none;
	border: solid 1px;
	border-color: var(--grey);
	height: 50px;
	line-height: 50px;
	background-position: 12px center;
	background-repeat: no-repeat;
    padding: 0 20px;
	background-size: 18px 18px;
	font-size: 1.0em;
	color: var(--dark-grey);
	font-family: 'Bitter', serif;
    font-weight: 500;
	transition: 0.2s;
	-webkit-transition: 0.2s;
}

input::placeholder {
	color: var(--dark-grey);
}

input:focus {
	color: var(--black);
	border-color: var(--black);
}

input.error {
	border: solid 3px;
	border-color: var(--red);
	animation: input-error 0.8s infinite;
}

input.error:focus {
	border: solid 1px;
	border-color: var(--grey);
	animation: none;
}

@keyframes input-error{
	0% {
		border-color: var(--white);
	}
	50% {
		border-color: var(--red);
		}
	100% {
		border-color: var(--white);
	}
}

textarea {
	outline: none;
	border: 0 none;
	height: 150px;
    padding:20px;
	font-size: 1.0em;
	font-family: 'Bitter', serif;
	color: var(--black);
    font-weight: 500;
	border: solid 1px;
	border-color: var(--grey);
}

textarea::placeholder {
	color: var(--dark-grey);
}

textarea:focus {
	color: var(--black);
	border-color: var(--black);
}

.search-input.checkbox {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
    
}

.search-input.checkbox a {
	color:#17242a;
	font-weight: bold;
}

.search-input.checkbox a:hover {
	opacity: 0.8;
}

.search-input.checkbox label {
	width: auto;
	margin-bottom: 0;
	opacity: 1.0;
	font-weight: normal;
}

.checkbox-style {
    -webkit-appearance: none;
    appearance: none;
    width: 24px !important;
    height: 24px !important;
    cursor: pointer;
    vertical-align: middle;
    background-color: var(--white);
    border: solid 1px;
	border-color: var(--grey);
    outline: none;
    padding: 0;
    margin-right: 15px;
    background-position: center center;
	flex-basis: 24px;
    flex-grow: 0;
    flex-shrink: 0;
}

.checkbox-style:checked {
	background-image: url(../img/icon-checkbox-checked.svg);
}

select {
	appearance: none;
	background-color: transparent;
	border: solid 1px;
	border-color: var(--grey);
	padding: 0 20px;
	margin: 0;
	width: 100%;
	height: 50px;
	font-size: 1.0em;
	background-color: var(--white);
	background-image: url(../img/icon-arrow-bottom.svg);
	background-position: right 20px center;
	background-repeat: no-repeat;
	background-size: 12px;
	color: var(--dark-grey);
	font-family: 'Bitter', serif;
    font-weight: 500;
	transition: 0.2s;
	-webkit-transition: all ease 0.2s;
	outline: none;
	-webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
	position: relative;
}

select:focus {
	color: var(--black);
	border-color: var(--black);
}

.alert {
	width: 100%;
	float: left;
	margin-bottom: 20px;
	background-color: var(--red);
	color: var(--white);
	padding: 20px 20px 20px 54px;
	font-weight: 400;
    background-repeat: no-repeat;
    background-position: 20px center;
    background-size: 24px;
	font-family: 'Zen Kaku Gothic Antique', sans-serif;
}

.alert a {
	color: var(--white);
	font-weight: 700;
}

.alert.error {
	background-image: url(../img/icon-alert.svg);
}

.alert.valid {
	background-image: url(../img/icon-smile.svg);
	background-color: var(--dark-grey);
}

.button {
	padding: 15px 30px;
	font-weight: 400;
	text-transform: uppercase;
	background-color: transparent;
	border: solid 1px;
	border-color: var(--dark-grey);
	color: var(--black);
	font-weight: 400;
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
	font-size: 1.0em;
    letter-spacing: 0.05em;
	display: inline-block;
	transition: all ease 0.2s;
	-webkit-transition: all ease 0.2s;
	cursor: pointer;
}

.button:hover {
    background-color: var(--black);
	color: var(--white);
}

.button.yellow {
	background-color: var(--yellow);
}
/* fine elementi form */

/*  colonne */
.columns {
	display: flex;
	position: relative;
	width: 100%;
}

.columns .col-sx {
	padding-right: 15px;
	transition: all 0.3s ease;
	-webkit-transition: all ease 0.3s;

}

.columns .col-dx {
	padding-left: 15px;
	transition: all 0.3s ease;
	-webkit-transition: all ease 0.3s;
}

.columns.full {
	margin-bottom: 20px;
}

.columns.half .col-sx, .columns.half .col-dx, .columns .columns.half .col-sx, .columns .columns.half .col-dx {
	width: 50%;
}

.columns.half-qtr-sx .col-sx, .columns .columns.half-qtr-sx .col-sx {
	width: 70%;
	display: inline-block;
}

.columns.half-qtr-sx .col-dx, .columns .columns.half-qtr-sx .col-dx {
	width: 30%;
	display: inline-block;
}

.columns.half-qtr-dx .col-sx, .columns .columns.half-qtr-dx .col-sx {
	width: 30%;
	display: inline-block;
}

.columns.half-qtr-dx .col-dx, .columns .columns.half-qtr-dx .col-dx {
	width: 70%;
	display: inline-block;
}

.columns.half-five .col-sx {
	width: 20%;
	display: inline-block;
}

.columns.half-five .col-dx {
	width: 80%;
	display: inline-block;
}

.columns.trd .col-row, .columns .columns.trd .col-row {
	width: 33.33%;
	display: inline-block;
    padding: 0 10px;
}

.columns.trd .col-row:nth-child(3n+1), .columns .columns.trd .col-row:nth-child(3n+1) {
    padding: 0 20px 0 0;
}

.columns.trd .col-row:nth-child(3n+3), .columns .columns.trd .col-row:nth-child(3n+3) {
    padding: 0 0 0 20px;
}

.wrap {
	flex-wrap: wrap;
}

@media only screen and (max-width: 960px) {
	.columns {
		display:block;
	}
	
	.columns .col-sx {
		border-right: 0;
		padding-right: 0;
	}

	.columns .col-dx {
		padding-left: 0;
	}
	
	.columns.half .col-sx, .columns.half .col-dx, .columns .columns.half .col-sx, .columns .columns.half .col-dx, .columns.half-five .col-sx, .columns.half-five .col-dx {
		width: 100%;
	}
	
	.columns.half-qtr-sx .col-sx, .columns.half-qtr-sx .col-dx, .columns.half-qtr-dx .col-sx, .columns.half-qtr-dx .col-dx, .columns.trd .col-row, .columns .columns.half-qtr-sx .col-sx, .columns .columns.half-qtr-sx .col-dx, .columns .columns.half-qtr-dx .col-sx, .columns .columns.half-qtr-dx .col-dx, .columns .columns.trd .col-row{
		width: 100%;
        padding: 0 !important;
	}
}

.page-link {
    display: block;
    width: 100%;
    flex: none;
    text-align: center;
}

.page-link a {
    color: var(--black);
    background-image: url(../img/icon-arrow-right.svg);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 14px;
    padding-right: 20px;
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    font-weight: bold;
    min-height: 14px;
    line-height: normal;
    margin-bottom: 30px;
    display: inline-block;
    transition: 0.2s ease;
	-webkit-transition: 0.2s;
}

.page-link hr {
    margin-bottom: 40px;
}

.page-link a:hover {
    opacity: 0.7;
}
/* fine colonne */

/* paginazione */
.paginazione {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.paginazione li {
    margin: 0;
}

.paginazione a {
    float: left;
    color: var(--black);
	font-family: 'Zen Kaku Gothic Antique', sans-serif;
    font-weight: 500;
    text-align: center;
    width: 36px;
    height: 36px;
    line-height: 36px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    transition: 0.2s;
	-webkit-transition: 0.2s;
}

.paginazione a:hover {
    color: var(--dark-grey);
}

.paginazione .active, .paginazione .active:hover {
	color: var(--dark-grey);
    cursor: default;
}

.paginazione .arrow {
    background-size: 16px;
    background-position: center;
    background-repeat: no-repeat;
	transition: 0.2s;
	-webkit-transition: 0.2s;
}

.paginazione .arrow:hover {
	opacity: 0.4;
}

.paginazione .arrow.left {
    background-image: url(../img/icon-arrow-left.svg);
}

.paginazione .arrow.right {
    background-image: url(../img/icon-arrow-right.svg);
}
/* fine paginazione */

/* gestione spazi */
.mb0 {
    margin-bottom: 0 !important;
}

.mb10 {
    margin-bottom: 10px !important;
}

.mb20 {
    margin-bottom: 20px !important;
}

.mb30 {
    margin-bottom: 30px !important;
}

.mb40 {
    margin-bottom: 40px !important;
}

.mb50 {
    margin-bottom: 50px !important;
}

.mb60 {
    margin-bottom: 60px !important;
}

.mt40 {
    margin-top: 40px !important;
}

.mt10 {
    margin-top: 10px !important;
}

.mt20 {
    margin-top: 20px !important;
}

.mt60 {
    margin-top: 60px !important;
}

.pt20 {
    padding-top: 20px;
}

.pt40 {
    padding-top: 40px;
}

.pt60 {
    padding-top: 60px;
}

.pl10 {
	padding-left: 10px;
}

.pb20 {
    padding-bottom: 20px;
}

.pb60 {
    padding-bottom: 60px;
}

.pb40 {
    padding-bottom: 40px;
}

.pb50 {
    padding-bottom: 50px;
}

.pr10 {
	padding-right: 10px;
}
/* fine gestione spazi */

.show-mobile {
    display: none;
}

@media only screen and (max-width: 960px) {
    .show-mobile {
        display: block;
    }
}

/* personalizzazione lightbox images */
.fslightbox-slide-btn {
	background: transparent !important;
}

.fslightbox-toolbar {
	background: transparent !important;
}

.fslightbox-toolbar-button:first-child {
	display: none;
}

@media only screen and (max-width: 960px) {
    .fslightbox-slide-btn {
        display: none !important;
    }
}

/* ---------------------- fine GENERAL SETTINGS ---------------------- */

/* ---------------------- FOOTER ---------------------- */
.footer-form {
    position: relative;
    width: 100%;
    background-color: var(--black);
	color: var(--dark-grey);
    padding: 40px 0 20px;
	border-top: solid 10px var(--dark-grey);
}

.footer-form .search-input.checkbox a {
	color: var(--grey);
}

.footer-title {
    margin-bottom: 20px;
    display: block;
    letter-spacing: 0.05em;
	width: 100%;
	font-size: 1.5em;
    line-height: 1.2em;
	font-weight: 400;
	font-family: 'Zen Kaku Gothic Antique', sans-serif;
	color: var(--white);
}

.footer-title.sub {
	font-size: 1.3em;
}

.footer-form .button {
	color: var(--white);
	border-color: var(--white);
}

.footer-form .button:hover {
	color: var(--black);
	background-color: var(--white);
}

@media only screen and (max-width: 960px) {
    .footer-form .col-sx {
		border-bottom: solid 1px var(--dark-grey);
		margin-bottom: 40px;
	}
}

footer {
	position: relative;
    color: var(--grey);
	background-color: var(--black);
    padding: 0 0 20px;
    font-size: 0.8em;
    display: flow-root;
    width: 100%;
	font-family: 'Zen Kaku Gothic Antique', sans-serif;
}

footer .footer-info {
    float: left;
    transition: all 0.2s ease;
	-webkit-transition: all 0.2s ease;
}

footer .link-content {
    float: right;
}

footer .footer-nav {
    list-style: none;
	margin:0 0 15px;
	padding: 0;
    transition: all 0.2s ease;
	-webkit-transition: all 0.2s ease;
    display: block;
}

footer .footer-nav li {
	display: inline-block;
	margin: 0 0 0 20px;
    padding: 0;
    background-image: none;
}

footer .footer-nav li a {
	display: block;
	color: var(--grey);
	letter-spacing: 0.05em;
}

footer .footer-nav li a:hover {
	color: var(--dark-grey);
}

footer .signature {
    display: block;
    text-align: right;
}

footer .signature img {
    height: 20px;
	cursor: pointer;
	opacity: 1;
	transition: 0.2s;
	-webkit-transition: 0.2s;
}

footer .signature img:hover {
	opacity: 0.5;
}

footer .signature.brand {
	margin-bottom: 10px;
	text-align: left;
}

footer .signature.brand img {
	height: 25px;
}

@media only screen and (max-width: 960px) {    
    footer .signature, footer .signature.brand {
        text-align: center;
	}
    
    footer .footer-nav li {
        margin: 0 10px;
    }
    
    footer .link-content, footer .footer-info {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 580px) {
    
}
/* ---------------------- fine FOOTER ---------------------- */

/* ---------------------- HEADER ---------------------- */
header {
	position: fixed;
	top: 0;
	width: 100%;
	padding: 15px 0;
	z-index: 100;
	transition:all 0.2s ease;
	-webkit-transition: all 0.2s ease;
    background-color: var(--white);
	box-shadow: 0 0 5px rgba(0,0,0, 0.1);
}

header .head-container {
	position: relative;
	display: flex;
    justify-content: space-between;
	align-items: center;
	height: 100%;
    z-index: 80;
    transition: 0.3s ease;
	-webkit-transition: 0.3s ease;
	overflow: visible;
}

.head-logo {
	flex: 1 0;
}

.head-signature-logo {
    margin: 0 auto;
    height: 30px;
    transition: 0.2s ease;
	-webkit-transition: 0.2s ease;
    display: inline-block;
    position: relative;
}

.head-signature-logo img {
    display: block;
    height: 100%;
	transition: 0.2s ease;
	-webkit-transition: 0.2s ease;
}

@media only screen and (max-width: 960px) {
    .head-signature-logo {
        
    }
}

.sticky {
	transition: all 0.2s ease;
	-webkit-transition: all 0.2s ease;
}

.sticky .head-signature-logo {
	max-height: 20px;
}

.sticky .nav li a {
	/* line-height: 66px; */
}

header .nav {
	list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

header .nav li {
	display: inline-block;
	height: 100%;
    padding: 0;
    background-image: none;
    line-height: normal;
    margin-bottom: 0;
}

header .nav li a {
    color: var(--black);
    font-weight: 500;
    font-size: 0.8em;
    letter-spacing: 0.05em;
    margin-left: 24px;
    height: 100%;
    display: block;
    transition: 0.2s ease;
	-webkit-transition: 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 120;
	font-family: 'Zen Kaku Gothic Antique', sans-serif;
	text-transform: uppercase;
}

header .nav li a:hover {
	color: var(--dark-grey);
}

header .nav li a.active {
	color: var(--grey);
}


header .nav li a.nav-icon img{
	height: 18px;
	display: block;
}

header .nav li a.nav-icon label{
	margin-left: 15px;
	display: none;
}

header .nav hr {
	display: none;
	width: 100%;
}

#toggle, .toggle {
	background-image: url(../img/icon-nav-mobile.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size:100%;
	display: none;
	z-index: 100;
}

@media only screen and (max-width: 960px) {
	header {
		/* height:60px; */
	}
    
    .sticky {
        padding: 15px 0;
    }
	
	header .head-signature-logo {
		max-height: 20px;
		/* max-width: 92px; */
	}
	
	header .nav li a {
		/* font-size: 0.8em; */
		margin-left: 15px;
	}
}

@media only screen and (max-width: 760px) {
	header .nav {
		position:fixed;
		display: none;
		top: 0;
		left: 0;
		z-index:120;
		float:left;
		overflow:hidden;
		height:100%;
		opacity: 0;
		margin:0;
		padding: 0 20px;
		width:100%;
		transition: 0.3s;
		-webkit-transition: 0.3s;
        background-color: var(--grey);
        background-image: url(../img/signature-logo-black.svg);
        background-repeat: no-repeat;
        background-position: 20px 15px;
        background-size: auto 20px;
		animation: background-light 20.0s infinite;
	}

	@keyframes background-light {
		0% {
			background-color:#FF0080;
		}
		25% {
			background-color:#FFFF00;
			}
		50% {
			background-color:#00FF81;
			}
		75% {
			background-color:#00C0FF;
			}
		100% {
			background-color:#FF0080;
		}
	}

	header .nav hr {
		display: inline-block !important;
	}
	
	header .nav li {
		width:100%;
		float:left;
		height: auto;
        padding: 0;
        position: relative;
        height: 40px;

	}

	header .nav li:first-child {
		margin-top: 80px;
		transition: 0.2s ease;
		-webkit-transition: 0.2s ease;
	}
	
	header .nav li a {
		justify-content: flex-start;
		font-size: 1.0em;
        position: absolute;
        height: 40px;
	}
	
	header .nav li a.active {
		border-bottom: 0 !important;
		color: var(--black);
	}

	header .nav li a:hover {
		color: var(--black);
	}
	
	header .nav li a{
		width:100%;
		margin:0 0 20px;
		line-height: normal;
		height:auto;
		float:left;
		color:var(--black);
        font-size: 1.0em;
		font-weight: 500;
	}

	header .nav li a.nav-icon label{
		display: block;
	}

	header .nav hr {
		display: block;
		border-color: var(--black);
	}
	
	.toggle {
		cursor: pointer;
		outline: none;
		display: block;
		height: 20px;
		position: relative;
		float:right;
		z-index: 150;
		margin-top: 0px;
		cursor: pointer;
		display: flex;
		position: relative;
		width: 20px;
		-webkit-touch-callout: none;
		-webkit-user-select: none;
		user-select: none;
		-webkit-transition: all 0.2s ease-in-out;
		-moz-transition: all 0.2s ease-in-out;
		-ms-transition: all 0.2s ease-in-out;
		-o-transition: all 0.2s ease-in-out;
		transition: all 0.2s ease-in-out;
		background-image: linear-gradient( #000 0, #000 100%);
		background-size: 50% 2px;
		background-position: right;
		background-repeat: no-repeat;
		align-self: center;
	}
	
	.toggle::before {
		background-color: var(--black);
		content: "";
		display: block;
		height: 2px;
		left: 0;
		position: absolute;
		top: 0;
		width: 100%;
		-webkit-transition: all 0.2s ease-in-out;
		-moz-transition: all 0.2s ease-in-out;
		-ms-transition: all 0.2s ease-in-out;
		-o-transition: all 0.2s ease-in-out;
		transition: all 0.2s ease-in-out;
		-webkit-backface-visibility: hidden;
	  }
	
	.toggle::after {
		background-color: var(--black);
		content: "";
		display: block;
		float: left;
		height: 2px;
		right: 0;
		position: absolute;
		bottom: 0;
		width: 100%;
		-ms-transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		-webkit-transition: all 0.2s ease-in-out;
		-moz-transition: all 0.2s ease-in-out;
		-ms-transition: all 0.2s ease-in-out;
		-o-transition: all 0.2s ease-in-out;
		transition: all 0.2s ease-in-out;
		-webkit-backface-visibility: hidden;
	}
	
	#toggle:checked ~ .bag span.on {
		background-color: var(--white);
	}

	#toggle:checked ~ .nav {
		opacity: 1;
		display: block;
	}
	
	#toggle:checked ~ .nav li {
		opacity: 1;
	}

	#toggle:checked ~ .nav li:first-child {
		margin-top: 100px;
	}
	
	#toggle:checked ~ .toggle:before {
		width: 100%;
		/* background-color: var(--yellow); */
		-ms-transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		top: 50%;
		left: 50%;
		margin-top: -2px;
		margin-left: calc(-50% + 0.5px);
		-webkit-transition: all 0.2s ease-in-out;
		-moz-transition: all 0.2s ease-in-out;
		-ms-transition: all 0.2s ease-in-out;
		-o-transition: all 0.2s ease-in-out;
		transition: all 0.2s ease-in-out;
		height: 2px;
		width: 100%;
	}
	
	#toggle:checked ~ .toggle:after {
		width: 100%;
		/* background-color: var(--yellow); */
		-ms-transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		bottom: 50%;
		margin-right: -1px;
		-webkit-transition: all 0.2s ease-in-out;
		-moz-transition: all 0.2s ease-in-out;
		-ms-transition: all 0.2s ease-in-out;
		-o-transition: all 0.2s ease-in-out;
		transition: all 0.2s ease-in-out;
		-webkit-border-radius: 1px;
		-moz-border-radius: 1px;
		border-radius: 1px;
		height: 2px;
		width: 100%;
	}
	
    #toggle:checked ~ .toggle {
        background-image: linear-gradient( transparent 0, transparent 100%);
        -webkit-transition: all 0.2s ease-in-out;
        -moz-transition: all 0.2s ease-in-out;
        -ms-transition: all 0.2s ease-in-out;
        -o-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
        background-position: right center;
        background-size: 0% 2px;
		transform: rotate(-360deg);
    }
}
/* ---------------------- fine HEADER ---------------------- */


/* ############################# --- HOMEPAGE --- ############################# */

/* ---------------------- Full Video ---------------------- */
section.full-video {
	height: 650px;
	position:relative;
	overflow: hidden;
	transition: 0.2s;
	-webkit-transition: 0.2s;
	background-color: var(--black);
}

section.full-video video {
	position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    min-width: 100%;
    height: auto;
    min-height: 100%;
    transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
    /* z-index: -1; */
}

section.full-video .mute-video {
	position: absolute;
	bottom: 15px;
	right: 15px;
	width: 40px;
	height: 40px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background-color: rgba(0,0,0, 0.5);
	background-image: url(../img/icon-sound-off.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 60%;
	cursor: pointer;
	border: 0 none;
	transition: 0.2s;
	-webkit-transition: 0.2s;
	animation: start-sound-on 0.4s linear;
    animation-delay: 1s;
}

@keyframes start-sound-on {
	0% {
		width: 40px;
	}
	50% {
		width: 50px;
		height: 50px;
		bottom: 10px;
		right: 10px;
		}
	100% {
		width: 40px;
	}
}

section.full-video .mute-video:hover {
	width: 50px;
	height: 50px;
	bottom: 10px;
	right: 10px;
}

section.full-video .unmute-video {
	background-image: url(../img/icon-sound-on.svg);
}

@media only screen and (max-width: 1200px) {
	section.full-video {
		height: 520px;
	}
}

@media only screen and (max-width: 960px) {
	section.full-video {
		height: 0;
		padding-bottom: 56.25%;
	}

	section.full-video .mute-video:hover {
		bottom: 15px;
		right: 15px;
		width: 40px;
		height: 40px;
	}
}
/* ---------------------- fine Full Video ---------------------- */


/* ---------------------- Storyboard ---------------------- */
section.home-storyboard {
	padding: 60px 0 0;
}

a.post {
	color: var(--black);
	transition: 0.2s;
	-webkit-transition: 0.2s;
	display: block;
}

a.post img {
	transition: 0.2s;
	
}

a.post:hover img {
	opacity: 0.8;
}

section.storyboard .columns.trd {
	/*display: block;*/
	display: flex;
	flex-wrap: wrap;
}

section.storyboard .columns.trd .col-row {
	float: left;
}

@media only screen and (max-width: 960px) {
	section.home-storyboard .columns.trd .col-row {
		margin-bottom: 20px;
		border-bottom: dashed 1px;
		border-color: var(--dark-grey);
	}
}

section.storyboard a.post {
	margin-bottom: 20px;
	border-bottom: dashed 1px;
	border-color: var(--dark-grey);
}

@media only screen and (max-width: 960px) {
	section.storyboard .columns.trd .col-row {
		width: 50%;
    	padding: 0 15px !important;
		float: left;
	}
}

@media only screen and (max-width: 640px) {
	section.storyboard .columns.trd .col-row {
		width: 100%;
    	padding: 0 !important;
		float: none;
	}
}
.title-block {
	display: -webkit-flex;
	display: flex;
	justify-content: space-between;
	width: 100%;
	align-items: center;
	padding-bottom: 20px;
}

.back-arrow {
	background-size: 20px;
    background-position: center;
    background-repeat: no-repeat;
	background-image: url(../img/icon-arrow-left.svg);
	width: 36px;
    height: 36px;
	margin-right: 15px;
	transition: 0.2s;
	-webkit-transition: 0.2s;
}

.back-arrow:hover {
	opacity: 0.4;
}

.title-container {
	flex: 1 0;
}

.title-container .section-title {
	text-align: left;
	font-weight:400;
}

.title-container .section-subtitle {
	text-align: left;
	margin-bottom: 0;
}

.storyboard .columns .col-dx .col-dx-title {
	text-align: center;
	border-bottom: dashed 1px var(--dark-grey);
	padding-bottom: 20px !important;
}

.storyboard .columns .col-dx .articolo-blog {
	border-bottom: solid 1px var(--dark-grey);
	margin-bottom: 20px;
	display: block;
}

.storyboard .columns .col-dx .articolo-blog:last-child {
	border-bottom: 0;
	margin-bottom: 0px;
}

@media only screen and (max-width: 960px) {
	.storyboard .columns .col-sx {
		border-bottom: solid 1px var(--dark-grey);
		margin-bottom: 40px;
		padding-bottom: 20px !important;
	}
}

.yt-video {
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
    padding-top: 30px;
    position: relative;
	display: block;
	margin-bottom: 20px;
}
.yt-video iframe,
.yt-video object,
.yt-video embed {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.blocco-articolo img {
	display: block;
	width: 100%;
	margin-bottom: 20px;
}

.blocco-articolo a {
	font-weight: bold;
	color: var(--black);
	transition: 0.2s;
}

.blocco-articolo a:hover {
	opacity: 0.7;
}

.blocco-articolo ul li {
    background-image: url(../img/icon-list-circle.svg);
    background-repeat: no-repeat;
    background-position: left 2px;
    background-size: 14px;
    padding-left: 24px;
}

.sharing-box {
	display: inline-block;
	width: 100%;
	margin: 20px 0 40px;
	padding:40px 0 0;
	border-top: dashed 1px var(--dark-grey);
}

.sharing-box a {
	color: var(--white);
	font-weight: normal;
}

.sharing-title {
	font-weight: 400;
	font-size: 1.3em;
	display: block;
	margin-bottom: 10px;
}
/* ---------------------- fine storyboard ---------------------- */

/* trustbox */
ul.trustbox {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin: 0;
}

ul.trustbox li {
	width: 33.33%;
	display: inline-block;
	padding: 0 40px;
	margin-bottom: 40px;
	text-align: center;
	transition: 0.2s;
	-webkit-transition: 0.2s;
	border-right: dashed 1px var(--dark-grey);
}

ul.trustbox li:nth-child(3n+3) {
	border-right: 0;
}

ul.trustbox li .icon-container {
	display: flex;
    width: fit-content;
    align-items: center;
	margin: 0 auto 20px;
	/*padding: 30px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;*/
}

ul.trustbox li .icon-container img {
	display: inline-block;
	width: 48px;
}

ul.trustbox li strong {
	font-size: 1.3em;
	display: block;
	margin-bottom: 20px;
	font-weight: 400;
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
}

ul.trustbox li p {
	margin: 0;
}

@media only screen and (max-width: 960px) {
	ul.trustbox li {
		width: 50%;
		font-size: 0.9em;
		padding: 0 20px;
	}

	ul.trustbox li:nth-child(3n+3) {
		border-right: dashed 1px var(--dark-grey);
	}

	ul.trustbox li:nth-child(2n+2) {
		border-right: 0;
	}
}

@media only screen and (max-width: 520px) {
	ul.trustbox li .icon-container img {
		width: 36px;
	}
}

@media only screen and (max-width: 380px) {
	ul.trustbox li {
		font-size: 0.8em;
		line-height: 1.25em;
		padding: 0 10px;
	}
}
/* fine trustbox */


/* Servizi */
ul.servizi-list {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin: 0;
}

ul.servizi-list li {
	width: 25%;
	display: inline-block;
	padding: 0 10px;
	margin-bottom: 20px;
	transition: 0.2s;
	-webkit-transition: 0.2s;
}

ul.servizi-list li a {
	display: block;
	overflow: hidden;
	position: relative;
	/*background-color: var(--black);*/
}

ul.servizi-list li a img {
	display: block;
	width: 100%;
	transition: 0.4s;
	-webkit-transition: 0.4s;
	/*filter: saturate(100%);
	-webkit-filter: saturate(100%);
	filter: blur(6px);*/
	opacity: 1.0;
}

ul.servizi-list li a:hover img {
	transform: scale(1.2);
	-ms-transform:scale(1.2);
	-webkit-transform: scale(1.2);
	filter: blur(0);
}

ul.servizi-list li a .servizi-name {
	position: absolute;
	right:0px; bottom: 0px; left: 0px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 15px 0;
	color: var(--white);
	text-transform: uppercase;
	font-family: 'Zen Kaku Gothic Antique';
	font-weight:400;
	font-size: 1.0em;
    letter-spacing: 0.1em;
	text-shadow: 0px 0px 10px var(--black);
	background-color: var(--black);
	background-image: url(../img/pattern-grain-black.jpg) !important;
    background-repeat: repeat;
}

.servizi .title-description {
	font-size: 1.4em;
	color: var(--black);
	font-weight: 400;
}

.servizi .checklist {
	background-color: var(--grey);
	padding: 30px 30px 20px;
	display: inline-block;
	width: 100%;
}

.servizi .col-sx div img {
	width: 100% !important;
}

@media only screen and (max-width: 960px) {
	ul.servizi-list li {
		width: 50%;
		font-size: 0.9em;
		padding: 0 5px;
		margin-bottom: 10px;
	}

	.servizi .col-sx {
		margin-bottom: 40px;
	}
}

@media only screen and (max-width: 480px) {
	ul.servizi-list li {
		font-size: 0.7em;
		line-height: 1.4em;
	}
}

ul.photogallery {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin: 0;
}

ul.photogallery li {
	/* width: 25%; */
	/*width: 12.5%;*/
	display: inline-block;
	/*padding: 0 10px;*/
	/*margin-bottom: 20px;*/
	text-align: center;
	transition: 0.2s;
	-webkit-transition: 0.2s;
	background: none;
}

ul.photogallery li a{
	display: block;
}

ul.photogallery li a img{
	display: block;
	width: 100%;
	margin-bottom: 0;
	/*filter: saturate(0);
	-webkit-filter: saturate(0);*/
	transition: 0.2s;
	-webkit-transition: 0.2s;
}

ul.photogallery li a:hover img {
	transform: scale(1.05);
	-webkit-transform: scale(1.05);
	filter: saturate(100%);
	-webkit-filter: saturate(100%);
}

@media only screen and (max-width: 960px) {
	ul.photogallery li {
		/* width: 33.33%; */
		width: 25%;
	}
}

@media only screen and (max-width: 640px) {
	ul.photogallery li {
		padding: 0 5px;
		margin-bottom: 10px;
	}
}

@media only screen and (max-width: 520px) {
	ul.photogallery li {
		/* width: 50%; */
		width: 33.33%;
	}
}
/* fine Servizi */


/* Partnership */
section.partnership {
	padding: 80px 0 60px;
}

section.partnership .partnership-row {
	width: 100%;
	display: block;
}

section.partnership .partnership-row ul {
	display: flex;
	width: 100%;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0;
}

section.partnership .partnership-row ul li {
	padding: 0 20px;
	margin-bottom: 20px;
}

section.partnership .partnership-row ul li a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}

section.partnership .partnership-row ul li a img {
	width: 180px;
	mix-blend-mode: multiply;
	transition: 0.2s;
}

section.partnership .partnership-row ul li a:hover img {
	transform: scale(1.1);
}

@media only screen and (max-width: 720px) {
	
}
/* fine Partnership */


/* CONTATTI */
.contatti .col-sx {
	text-align: right;
}

.contatti .title-description {
	font-size: 1.4em;
	color: var(--black);
	font-weight: 400;
}

.contatti .title-subdescription {
	font-size: 1.2em;
    color: var(--dark-grey);
    font-weight: 400;
}

.contatti .contatti-links {
	background-color: var(--grey);
	padding: 30px 30px 20px;
	display: inline-block;
	width: 100%;
}

.contatti .contatti-links .contatto-info:last-child {
	margin-bottom: 10px;
}

.contatto-info {
    display: flex;
    width: 100%;
    align-items: center;
    color: var(--black);
    margin-bottom: 20px;
    font-family: 'Bitter', serif;
    transition: 0.2s;
	-webkit-transition: 0.2s;
}

.contatto-info:hover {
    opacity: 0.7;
}

.contatto-info .icon {
    width: 24px;
    margin-right: 15px;
}

@media only screen and (max-width: 960px) {
    .contatti .col-sx, .contatti .col-dx {
        text-align: left;
    }

	.contatti .col-sx {
		border-bottom: solid 1px;
		margin-bottom: 20px;
		border-color: var(--dark-grey);
	}

	.contatto-info .icon {
		width: 16px;
	}
}