html { 
	box-sizing: border-box;
	font-size: 16px;
	font-weight: 300;
}

body {
	margin: 0;
	font-size: 1vw;
	background: #fff; 
	color: #56565a;
}

iframe {
	width: 100%;
	padding: 3rem;
	/*height: 100vh;*/
}

hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

*,
*:before,
*:after {
	box-sizing: inherit;
}

div.grecaptcha-badge {
	visibility: hidden;
}


/* Forms
	 ========================================================================== */

button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	/* 1 */
	font-size: 100%;
	/* 1 */
	line-height: 1.15;
	/* 1 */
	margin: 0;
	/* 2 */
}

button,
input {
	/* 1 */
	overflow: visible;
}

button,
select {
	/* 1 */
	text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

fieldset {
	padding: 0.35em 0.75em 0.625em;
}

legend {
	box-sizing: border-box;
	/* 1 */
	color: inherit;
	/* 2 */
	display: table;
	/* 1 */
	max-width: 100%;
	/* 1 */
	padding: 0;
	/* 3 */
	white-space: normal;
	/* 1 */
}

progress {
	vertical-align: baseline;
}

textarea {
	overflow: auto;
}


[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	/* 1 */
	padding: 0;
	/* 2 */
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

[type="search"] {
	-webkit-appearance: textfield;
	/* 1 */
	outline-offset: -2px;
	/* 2 */
}

[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

::-webkit-file-upload-button {
	-webkit-appearance: button;
	/* 1 */
	font: inherit;
	/* 2 */
}

form input[type="text"], form input[type="email"], form input[type="tel"], form select {
    border: 1px solid #56565a;
    height: 45px;
    width: 100%;
    padding: 10px;
    background-color: #fff;
	color: #56565a;
}
form textarea {
	border: 1px solid #56565a;
	width: 100%;
	padding: 10px;
	background-color: #fff;
}
form label {
	text-transform: uppercase;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/

ul,
ol {
	margin: 0;
	padding: 0;
}

ul {
	list-style: none;
}

ol {
	list-style: decimal;
}

li>ul,
li>ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto;
	max-width: 100%;
}

figure {
	margin: 1rem 0;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

[class*=uk-modal-close-] {
	left: unset;
}

/*--------------------------------------------------------------
# Text leve semantics
--------------------------------------------------------------*/

b,
strong {
	font-weight: 700;
}
em {
	color: inherit;
}

/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {}

:hover,
:focus,
:focus-visible,
:active {
	outline: none !important;
	text-decoration: none !important;
}

/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/

h1 {}

h2 {}

h3 {}

h4 {}

h5 {}

p {}

/*--------------------------------------------------------------
# Colori
--------------------------------------------------------------*/

/*--------------------------------------------------------------
## Generali
--------------------------------------------------------------*/
section {
	padding-top: 5vw;
	padding-bottom: 5vw;
}

.logo {
	width: 9vw;
	height: auto;
}

.hamburger {
	/*display: none;*/
		position: relative;
    height: 18px;
    width: 30px;
	margin-top: 10px;
    border: none;
    padding: 0;
    outline: none!important;
    background: transparent;
    transition: all 0.3s;
    cursor: pointer;
}

.nb-solid .hamburger .bar1,
.nb-solid .hamburger .bar2,
.nb-solid .hamburger .bar3,
.nb-dialog .hamburger .bar1,
.nb-dialog .hamburger .bar2,
.nb-dialog .hamburger .bar3 { 
	display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background-color: #3b3b3b;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: all 0.3s;
}
.nb-trasp .hamburger .bar1,
.nb-trasp .hamburger .bar2,
.nb-trasp .hamburger .bar3 { 
	display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background-color: #ffffff;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: all 0.3s;
}

.hamburger .bar1 { 
	top: 0;
	transition: all .3s
}

.hamburger .bar2 { 
	top: 9px;
	transition: all .3s
}

.hamburger .bar3 { 
	top: 18px;
	transition: all .3s
} 
.nb-solid .hamburger:hover .bar1,
.nb-solid .hamburger:hover .bar2,
.nb-solid .hamburger:hover .bar3,
.nb-dialog .hamburger:hover .bar1,
.nb-dialog .hamburger:hover .bar2,
.nb-dialog .hamburger:hover .bar3 {
	background-color: #f6bd00;
}
.nb-trasp .hamburger:hover .bar1,
.nb-trasp .hamburger:hover .bar2,
.nb-trasp .hamburger:hover .bar3 {
	background-color: #f6bd00;
}


/*--------------------------------------------------------------
## Breadcrumbs
--------------------------------------------------------------*/

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.modal-menu {
	background-color: hsla(0,0%,100%,.95);
    position: fixed; 
    left: 0;
    z-index: -1;
    overflow: hidden;
    outline: 0;
    opacity: 0;
    width: 100%;
    height: calc(100% - 9vw);
    transition: opacity .3s ease-in-out;
}

.nb-trasp {
	color: #ffffff;
}
.nb-solid {
	color: #56565a;
}
ul.menu {
	margin-top:10px;
}
ul.menu li.menu-item {
	float:left;
	padding-right: 1.5rem;
}

.nb-solid ul.menu li.menu-item a,
.nb-solid ul.menu li.menu-item a:visited {
	font-size: 1.1rem;
	font-weight: 300;
	color: #56565a;
	transition: color .3s;
}

.nb-trasp ul.menu li.menu-item a,
.nb-trasp ul.menu li.menu-item a:visited {
	font-size: 1.1rem;
	font-weight: 300;
	color: #ffffff;
	transition: color .3s;
}
.nb-trasp ul.menu li.menu-item a:hover,
.nb-solid ul.menu li.menu-item a:hover {
	color: #f6bd00;
}
ul.menu li.menu-item a:hover {
	color: #f6bd00;
}

div.wpml-ls-statics-shortcode_actions {
	float:right;
}

.nb-solid li.wpml-ls-item a.wpml-ls-item-toggle span.wpml-ls-native,
.nb-solid li.wpml-ls-item a.wpml-ls-link span.wpml-ls-native {
	font-size: 0.9375rem;
	font-weight: bold;
	color: #56565a;
	transition: color .3s;
}

.nb-trasp li.wpml-ls-item a.wpml-ls-item-toggle span.wpml-ls-native,
.nb-trasp li.wpml-ls-item a.wpml-ls-link span.wpml-ls-native {
	font-size: 0.9375rem;
	font-weight: bold;
	color: #ffffff;
	transition: color .3s;
}
li.wpml-ls-item a.wpml-ls-item-toggle:hover span.wpml-ls-native,
li.wpml-ls-item a.wpml-ls-link:hover span.wpml-ls-native {
	color: #f6bd00;
}

.nb-trasp .wpml-ls-statics-shortcode_actions .wpml-ls-current-language > a,
.nb-trasp .wpml-ls-statics-shortcode_actions .wpml-ls-item > a,
.nb-solid .wpml-ls-statics-shortcode_actions .wpml-ls-current-language > a,
.nb-solid .wpml-ls-statics-shortcode_actions .wpml-ls-item > a,
.nb-dialog .wpml-ls-statics-shortcode_actions .wpml-ls-current-language > a,
.nb-dialog .wpml-ls-statics-shortcode_actions .wpml-ls-item > a {
	background-color: transparent !important;
}

.wpml-ls-legacy-dropdown-click {
    width: auto;
}
.wpml-ls-legacy-dropdown-click a {
	border:0;
}
.wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu {
	border:0;
}
.wpml-ls-legacy-dropdown-click a.wpml-ls-item-toggle:after {
	display: none;
}

/*--------------------------------------------------------------
## Menu prodotti
--------------------------------------------------------------*/

#megamenu button.uk-modal-close-full {
	background-color:#d4d4d4;
}
#megamenu button.uk-modal-close-full svg {
	display: none;
}
#megamenu button.btn-close {
	font-size: 1rem;
	color: #56565a;
	transition: color 0.3s;
}
#megamenu button.btn-close .material-symbols-outlined {
	color: inherit;
}
#megamenu button.btn-close:hover {
	color: #f6bd00;
}
#megamenu .menu-glyph {
	font-size: 1.3rem;
	font-weight: normal;
	color: #f6bd00;
	padding-right: 1rem;
}
#megamenu .uk-modal-dialog {
	background-color: #d4d4d4;
	overflow-x: hidden;
	overflow-y: scroll;
	height: 100%;
	padding: 16px;
	border-top: 5px solid #f6bd00;
	color: #56565a;
}
#megamenu img.logo {
	width: 250px;
}
#megamenu .nb-dialog ul.menu li.menu-item a,
#megamenu .nb-dialog ul.menu li.menu-item a:visited {
	font-size: 1.1rem;
	font-weight: 300;
	color: #56565a;
	transition: color .3s;
}
#megamenu .nb-dialog li.wpml-ls-item a.wpml-ls-item-toggle span.wpml-ls-native,
#megamenu .nb-dialog li.wpml-ls-item a.wpml-ls-link span.wpml-ls-native {
	font-size: 0.9375rem;
	font-weight: bold;
	color: #56565a;
	transition: color .3s;
}
#megamenu .nb-dialog .navbar .nav_lang {
	padding-top: 10px;
}
#megamenu .material-symbols-outlined {
	color: #f6bd00;
}
.btn-category {
	background-color: #ffffff;
	color: #56565a;
	transition: all .3s;
	height: 70px;
	border: 0;
	margin: 0 1rem 3px 1rem;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 16px;
	width:100%;
	position: relative;
	font-size:0.8125rem;
	text-align:left;
}
.btn-category:hover {
	color: #f6bd00;
}
.btn-category div.text-cat {
	width:90%;
	font-size:0.8125rem;
	line-height:0.9375rem;
	text-transform: uppercase;
}
.btn-category div.text {
	width:90%;
	font-size:0.9375rem;
	font-weight:bold;
}
.btn-category div.text.active {
	width:90%;
	font-size:0.9375rem;
	font-weight:bold;
	color: #f6bd00;
}

/*--------------------------------------------------------------
## Menu giallo
--------------------------------------------------------------*/

#megamenu-gen button.uk-modal-close-full {
	background-color: #f6bd00;
}
#megamenu-gen button.btn-close {
	font-size: 1.5rem;
	color: #56565a;
	padding-top: 35px;
}
#megamenu-gen .uk-modal-dialog {
	background-color: #f6bd00;
	overflow-x: hidden;
	overflow-y: scroll;
	height: 100%;
	padding: 1rem;
	border-top: 5px solid #f6bd00;
	color: #56565a;
}
#megamenu-gen .uk-modal-dialog a {
	color: #56565a;
	transition: color 0.3s;
}
#megamenu-gen .uk-modal-dialog a:hover {
	color: #ffffff;
}
#megamenu-gen .menu-cont {
	padding-top: 5rem;
}
#megamenu-gen img.logo {
	width: 250px;
}
#megamenu-gen ul.menu li.menu-item {
	float: none;
}
#megamenu-gen ul.menu li.menu-item a {
	font-family: Overpass;
	font-size: 3rem;
	font-weight: bold;
	text-transform: uppercase;
	transition: color 0.3s;
	line-height: 3rem;
	margin-bottom: 1.5rem;
	display: block;
}
#megamenu-gen ul.menu li.menu-item a:hover {
	color: #ffffff;
}
#megamenu-gen .testo {
	font-family: Overpass;
	font-size: 1.125rem;
	line-height: 1.75rem;
}
#megamenu-gen .testo a, #megamenu-gen .testo a:hover {
	text-decoration: underline !important;
}
#megamenu-gen .uk-modal-dialog ul.lang_sel li {
	float: left;
	padding-right: 1.5rem;
	font-size: 0.9375rem;
}
#megamenu-gen .uk-modal-dialog ul.lang_sel li a {
	font-size: 0.9375rem;
}

/*--------------------------------------------------------------
## Pulsanti
--------------------------------------------------------------*/

.btn-header {
	border: 1px solid #f6bd00;
	background-color: #f6bd00;
	font-size: 0.9rem;
	text-transform: uppercase;
	text-align: center;
	font-weight: bold;
	color: #ffffff;
	transition: all .3s;
	border-radius: 0;
	padding: 15px 20px;
}
.btn-header:hover {
	color: #ffffff;
	border-radius: 50px;
}

.btn-yellow-small {
	background-color: #f6bd00;
	font-size: 0.8125rem;
	text-transform: uppercase;
	text-align: center;
	font-weight: bold;
	color: #56565a;
	transition: all .3s;
	border-radius: 0;
	padding: 10px 20px;
}
.btn-yellow-small:hover {
	color: #ffffff;
	border-radius: 50px;
}

.btn-yellow {
	background-color: #f6bd00;
	font-size: 0.9375rem;
	text-transform: uppercase;
	text-align: center;
	font-weight: bold;
	color: #56565a;
	transition: all .3s;
	border-radius: 0;
	padding: 18px 30px 16px 30px;
	border: 0;
}
.btn-yellow:hover {
	border-radius: 50px;
	color: #56565a;
}
.btn-yellow:focus {
	color: #ffffff;
}

.btn-black {
	background-color: #ffffff;
	font-size: 0.9375rem;
	text-transform: uppercase;
	text-align: center;
	font-weight: bold;
	color: #56565a;
	transition: all .3s;
	border-radius: 0;
	padding: 10px 20px;
}
.btn-black:hover {
	color: #f6bd00;
	border-radius: 50px;
}
.material-symbols-outlined {
	vertical-align: text-bottom;
}

/*--------------------------------------------------------------
## Header
--------------------------------------------------------------*/
header {
	/*padding: 1vw 0;*/
	background-color: transparent;
	/*box-shadow: 0 3px 10px rgb(0, 0, 0, 0.3);*/
	position: relative;
	z-index: 5;
	margin-bottom: 5px;
}

header img.logo {
	width:250px;
}

header.site-header .nb-trasp .navbar {
	border-top: 5px solid #f6bd00; 
	padding: 16px;
	background-color:transparent;
	margin-bottom: -92px;
}
header.site-header .nb-solid .navbar {
	border-top: 5px solid #f6bd00; 
	padding: 16px;
	background-color: #ffffff;;
}
header.site-header .nb-solid .navbar .nav_lang,
header.site-header .nb-trasp .navbar .nav_lang {
	padding-top: 10px;
}

/*--------------------------------------------------------------
## Main banner
--------------------------------------------------------------*/
.main-banner {
	width: 100%;
}
.main-banner div.container {
	aspect-ratio: 200/92;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}

body.post-type-archive-progetti .main-banner div.container,
body.page-template-page-fabbriche .main-banner div.container {
	aspect-ratio: 16/9;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}
.main-banner div.container div.image-layer {
	position: absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	background-color: #a9b4ba;
}
body.page-template-homepage .main-banner div.container div.image-layer {
	position: absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	background-color: #000000;
}
.main-banner div.container div.image-layer img {
	mix-blend-mode: multiply;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.main-banner div.container div.grey-gradient {
	position: absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	background: linear-gradient(90deg,rgba(86, 86, 90, 0.7) 0%, rgba(86, 86, 90, 0) 100%);
}
.main-banner div.container div.grey-solid {
	position: absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	background-color: #56565a;
}
.main-banner div.container div.breadcrumbs-container {
	position: absolute;
	top: 120px;
	left: 40px;
	padding: 0;
	color: #ffffff;
	font-size: 0.75rem;
	z-index: 3;
}
.main-banner div.container div.breadcrumbs-container a, .main-banner div.container div.breadcrumbs-container .breadcrumb_last {
	color: #ffffff;
	transition: color 0.3s;
	font-size: 0.75rem;
}
.main-banner div.container div.breadcrumbs-container a:hover {
	color: #f6bd00;
}
.main-banner div.container div.text-container {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 25%;
	padding: 10% 10% 10% 10%;
}
body.page-template-page-contatti .main-banner div.container div.text-container,
body.page-template-page-richinfo .main-banner div.container div.text-container {
	position: absolute;
	bottom: 15%;
	left: 0;
	right: 25%;
	padding: 10% 10% 0 10%;
}
.main-banner div.container div.text-container h1 {
	font-family: "Overpass";
	font-weight: bold;
	font-size: 3.5rem;
	line-height: 3.5rem;
	color: #ffffff;
	text-align: left;
	text-transform: uppercase;
	margin-top: 1rem;
}
.main-banner div.container div.text-container .titoletto {
	font-family: "Overpass";
	font-size: 1.3125rem;
	line-height: 2.25rem;
	color: #f6bd00;
	text-align: left;
	text-transform: uppercase;
}
.main-banner div.container div.text-container h3 {
	font-family: "Overpass";
	font-size: 1.5rem;
	line-height: 2.5rem;
	color: #ffffff;
	text-align: left;
}
.main-banner div.container div.scroll-it {
	position: absolute;
	bottom: 15rem;
	left: 0;
	right: 90%;
	padding-left: 1rem;
}
.main-banner div.container div.scroll-it .scrontainer {
	position: absolute;
    font-size: .8rem;
    bottom: 3rem;
	left: 0;
    display: flex;
    align-items: center;
    transition: all .3s;
    gap: 2rem;
    transform: rotate(-90deg)
}
.main-banner div.container div.scroll-it .scrontainer .c-text {
    color: #ffffff;
	font-size: 0.75rem;
}
.main-banner div.container div.scroll-it .scrontainer .c-text:hover {
    transition: all .3s;
    color: #00a6cb
}
.main-banner div.container div.scroll-it .scrontainer .c-line-container {
    position: relative;
    right: 0;
    width: 3px;
    height: 50px;
    background: #535860;
    transform: rotate(90deg)
}
.main-banner div.container div.scroll-it .c-line-container .c-line {
    width: 100%;
    height: 100%;
    display: block;
    background-image: linear-gradient(#fff,#fff);
    background-position: 0 0;
    background-image: linear-gradient(#fff 50%,transparent 0);
    background-size: 100% 200%;
    -webkit-animation: 2s ease-in-out infinite forwards scrolldown;
    animation: 2s ease-in-out infinite forwards scrolldown
}

@keyframes scrolldown {
	0% {
		background-position: 0 200%
	}
	50% {
		background-position: 0 100%
	}
	100% {
		background-position: 0 0
	}
}

/*--------------------------------------------------------------
## Blocchi pagina prodotto / categorie
--------------------------------------------------------------*/

section.descrizione {
	font-size: 1.3125rem;
	padding-top: 6rem;
	padding-bottom: 3.5rem;
	margin-bottom: 0;
}
section.descrizione .desc_titolo {
	font-family: "Overpass";
	font-weight: 300;
	font-size: 2.25rem;
	line-height: 2.625rem;
	text-transform: uppercase;
}
section.descrizione .desc_testo p {
	font-family: "Overpass";
	font-weight: 300;
	font-size: 1.3125rem;
	margin-top: 0;
	margin-bottom: 30px;
}
section.descrizione ul, section.blocco_testo_img ul, section.testolibero ul {
	list-style-type: disc;
	list-style-position: outside;
	padding-left: 1rem;
}
section.descrizione ul {
	margin-bottom: 20px;
}
section.descrizione li, section.blocco_testo_img li {
	padding-bottom: 0.5rem;
	line-height: 2rem;
}
section.descrizione h2, section.vantaggi h2, section.galleria h2, section.progetti h2, 
section.highlights h2, section.dati-tecnici h2, section.ausiliari h2, section.testolibero h2,
section.blocco_testo_img h2, body.page-template-page-azienda section.boxgialli h2, section.form h2,
section.video h2, body.single-post h2, section.privacy-cookie h2 {
	font-family: "Overpass";
	font-size: 3rem;
	text-transform: uppercase;
	/*border-left: 5px solid #f6bd00;*/
	border-left: 0;
	padding-left: 1rem;
	margin-bottom: 3rem;
	color: #56565a;
	position: relative;
}
section.descrizione h2 {
	margin-bottom: 1.5rem;
}
section.progetti h2, section.video h2 {
	margin-bottom: 1rem;
}

/*section.progetti h2 {
	position: relative;
}*/
section.descrizione h2::before, section.vantaggi h2::before, section.galleria h2::before, section.progetti h2::before, 
section.highlights h2::before, section.dati-tecnici h2::before, section.ausiliari h2::before, section.testolibero h2::before,
section.blocco_testo_img h2::before, body.page-template-page-azienda section.boxgialli h2::before, section.form h2::before,
section.video h2::before, body.single-post h2::before, section.privacy-cookie h2::before {
	border-left: 5px solid #f6bd00;
    height: 100%;
    width: 20px;
    content: " ";
    display: inline-block;
    height: calc(100% - 14px);
    padding-top: 0;
    padding-bottom: 0;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
}
/*section.progetti h2 {
	border-left: 0;
}*/

section.descrizione h3, section.testolibero h3, section.privacy-cookie h3 {
	font-family: "Overpass";
	font-size: 1.75rem;
	color: #56565a;
	margin-top: 0;
	font-weight: 300;
	margin-bottom: 1rem;
}
section.descrizione h4, section.testolibero h4, section.privacy-cookie h4, #form-brochure h4 {
	font-family: "Overpass";
	font-size: 1.3125rem;
	font-weight: bold;
	text-transform: uppercase;
	color: #56565a;
	margin-top: 0;
}
section.prod-menu {
	padding: 1rem 3rem;
	background-color:#56565a;
	height: 72px;
	position: sticky;
	top: 0px;
	z-index: 4;
}
section.prod-menu p {
	font-size: 1rem;
	text-transform: uppercase;
	color: #ffffff;
}
section.prod-menu ul li {
	float:left;
	padding-left: 1rem;
}
section.prod-menu ul.left li a {
	color: #ffffff;
	transition: color 0.3s;
	font-family: Overpass;
	font-size: 1rem;
	transition: color 0.3s;
}
section.prod-menu ul.left li.uk-active a {
	color: #f6bd00;
}
section.prod-menu ul.left li a:hover {
	color: #f6bd00;
}
section.prod-menu ul.right li a {
	color: #f6bd00;
	transition: color 0.3s;
	font-family: Overpass;
	font-size: 1rem;
	transition: color 0.3s;
}
section.prod-menu ul.right li a:hover {
	color: #ffffff;
}
section.prod-menu ul.right li a.btn-yellow {
	color: #56565a;
	transition: color 0.3s;
	font-family: Overpass;
	font-size: 0.8125rem;
	transition: all 0.3s;
}
section.prod-menu ul li.left a.btn-yellow:hover {
	color: #ffffff;
}
section.blocco_testo_img {
	padding-top: 4rem;
	padding-bottom: 2rem;
}
section.blocco_testo_img h2 {
	margin-bottom: 2rem;
}
section.blocco_testo_img h3 {
	font-family: Overpass;
	font-size: 1.75rem;
	line-height: 1.75rem;
	color: #56565A;
	padding-bottom: 0;
	margin-top: 0;
	margin-bottom: 1rem;
	font-weight: 300;
	text-transform: uppercase;
}
section.blocco_testo_img h4 {
	font-size: 1.3125rem;
	text-transform: uppercase;
	margin-top: 0;
	font-weight: bold;
	color: #56565a;
	margin-bottom: 10px;
}
section.blocco_testo_img div.testo, section.blocco_testo_img div.testo p {
	font-family: Overpass;
	font-size: 1.3125rem;
	color: #56565A;
	margin-top: 0;
}
section.blocco_testo_img div.testo p {
	margin-top: 0;
}
section.blocco_testo_img ul {
	list-style: outside;
	padding-left: 1rem;
	margin-bottom: 2rem;
}
section.testolibero {
	font-size: 1.3125rem;
	padding-top: 3.5rem;
	padding-bottom:0;
}
body.postid-422 section.testolibero,
body.postid-916 section.testolibero,
body.postid-578 section.testolibero,
body.postid-872 section.testolibero,
body.postid-575 section.testolibero,
body.postid-873 section.testolibero,
body.postid-490 section.testolibero,
body.postid-887 section.testolibero {
	padding-bottom:7rem;
}
section.testolibero p {
	font-size: 1.3125rem;
}
section.testolibero ul {
	margin-bottom: 30px;
}
section.testolibero ul li {
	margin-bottom: 20px;
}
section.highlights {
	padding-top: 3.5rem;
	padding-bottom: 0;
}
body.postid-515 section.highlights,
body.postid-881 section.highlights,
body.postid-338 section.highlights,
body.postid-924 section.highlights {
	padding-top: 3.5rem;
	padding-bottom: 7rem;
}
section.highlights div.high_card {
	background-color: #eaeaea;
	color: #56565a;
	padding: 2rem;
	border-left: 5px solid #f6bd00;
}
section.highlights div.high_card .titolo {
	font-weight: bold;
	font-family: "Overpass";
	font-size: 1.3125rem;
	line-height: 1.75rem;
} 
section.highlights div.high_card div.testo {
	font-family: "Overpass";
	font-weight: 300;
	font-size: 1.3125rem;
	line-height: 1.75rem;
	padding-bottom: 0;
	padding-top: 0;
}
section.highlights div.high_card div.testo .testo p {
	font-family: "Overpass";
	font-weight: 300;
	font-size: 1rem;
	margin-bottom: 0;
}
section.vantaggi {
	padding-top: 7rem;
	padding-bottom:0;
}
section.vantaggi div.grey {
	background-color: #eaeaea;
	padding-top: 6rem;
	padding-bottom: 6rem;
}
section.vantaggi div.vant_card {
	background: #56565a;
    color: #ffffff;
    padding: 2rem;
    border-left: 5px solid #f6bd00;
    font-weight: bold;
    font-size: 1.3125rem;
    line-height: 1.75rem;
}
section.dati-tecnici {
	padding-top: 4rem;
	padding-bottom: 0;
}
section.dati-tecnici .grey {
	background-color: #eaeaea;
	padding: 7rem 5rem;
}
section.dati-tecnici h2 {
	margin-bottom: 1rem;
}
section.dati-tecnici .testo {
	margin-bottom: 3rem;
}
section.dati-tecnici .testo p {
	font-family: Overpass;
	font-size: 1.3125rem;
	line-height: 2rem;
}
section.galleria {
	/*padding-top: 7rem;*/
	padding-top: 0;
	padding-bottom: 0;
}
body.single-progetti section.galleria,
body.postid-473 section.galleria,
body.postid-891 section.galleria {
	padding-top: 7rem;
}
body.single-post section.galleria {
	padding-top: 0;
}
section.galleria .grey {
	background-color: #56565a;
	padding: 7rem 2rem;
	position: relative;
}
section.galleria h2 {
	color: #ffffff;
	margin-bottom: 3rem !important;
}
section.galleria .uk-slider .uk-slider-items img {
	width: 100%;
}
section.galleria .uk-slider a.btn-previous {
	position:absolute;
	top: 50%;
	left:0;
	width: 5rem;
	height: 5rem;
	padding: 0.5rem;
}
section.galleria .uk-slider a.btn-next {
	position:absolute;
	top: 50%;
	right:0;
	width: 5rem;
	height: 5rem;
	padding: 0.5rem;
}
section.galleria .uk-slider a.btn-previous span,
section.galleria .uk-slider a.btn-next span {
		font-size: 4rem;
	}
section.galleria .uk-slider a.btn-next:hover, section.galleria .uk-slider a.btn-previous:hover {
	border-radius: 0;
}
section.galleria .uk-slider .img-caption {
	font-family: "Overpass";
	font-size: 0.9375rem;
	margin-top: 1.5rem;
	color: #ffffff;
}
section.galleria .uk-slider li .magnify {
	position:absolute;
	bottom:10px;
	left:10px;
}
section.galleria .uk-slider li .magnify .material-symbols-outlined.btn-yellow {
	padding: 5px;
	color: #56565A;
	border-radius:0;
	transition: all 0.3s;
}
section.galleria .uk-slider li:hover .magnify .material-symbols-outlined.btn-yellow {
	border-radius: 50px;
}
div.uk-lightbox-panel .uk-lightbox-items>*>* { /* Dimensione max immagine in lightbox */
	max-width: 90vw;
	max-height: 90vh;
}
button.uk-lightbox-toolbar-icon.uk-close-large svg { /* Dimensione pulsante chiusura lightbox */
	width: 40px;
	height: 40px;
}
section.ausiliari {
	padding-top: 5rem;
	padding-bottom: 5rem;
}
section.accordion {
	padding-top: 6rem;
	padding-bottom: 4rem;
}
section.accordion li {
	background-color: #eaeaea;
	border-left: 5px solid #f6bd00;
	padding: 1rem;
}
section.accordion li a.uk-accordion-title {
	font-size: 1.5rem;
	line-height: 4rem;
	text-transform: uppercase;
	color: #56565a;
}
section.accordion li a.uk-accordion-title:hover {
	color: #f6bd00;
}
section.accordion li a.uk-accordion-title::before {
	background-color: #f6bd00;
	background-size: 30%;
	width: 4rem;
	height: 4rem;
}
section.accordion li div.uk-accordion-content {
	font-size: 1.125rem;
	padding: 0 6rem 2rem;
}
section.accordion li div.uk-accordion-content p {
	font-size: 1.125rem;
}
section.accordion li div.uk-accordion-content h4 {
	text-transform: uppercase;
	font-size: 1.125rem;
	color: #56565a;
}
section.accordion li ul {
	list-style-type: disc;
	list-style-position: outside;
	padding-left: 1rem;
}
section.accordion li ul li {
	border-left: 0;
	padding: 0 0 0.5rem 0;
}
section.accordion li .magnify {
	position: absolute;
	bottom: 10px;
	left: 10px;
}
section.accordion li div.uk-position-relative .magnify .material-symbols-outlined.btn-yellow {
	padding: 5px;
	color: #56565a;
	border-radius:0;
	transition: all 0.3s;
}
section.accordion li div.uk-position-relative:hover .magnify .material-symbols-outlined.btn-yellow {
	border-radius: 50px;
}
body.postid-338 section.accordion,
body.postid-924 section.accordion {
	padding-top:0;
}
section.ausiliari {

}
section.ausiliari div.aux_card {
	background-color: #56565a;
	color: #ffffff;
	padding: 1rem;
	font-family: Overpass;
	cursor: pointer;
}
section.ausiliari div.aux_card .titolo {
	padding-top: 1rem;
	font-size: 1.2rem;
	line-height: 1.3125rem;
	font-weight: bold;
	text-transform: uppercase;
}
section.ausiliari div.aux_card:hover .titolo {
	color: #f6bd00;
}
section.ausiliari div.aux_card .testo {
	font-size: 1rem;
}
section.ausiliari div.aux_card:hover .testo {
	color: #f6bd00;
}
section.ausiliari div.aux_card .testo p {
	font-size: 1rem;
	margin-bottom:0;
}
section.ausiliari div.aux_card:hover .testo p {
	color: #f6bd00;
}
section.ausiliari div.aux_card .btn-yellow {
	padding: 1rem;
	margin-top: 10px;
	position: absolute;
	bottom: 0;
	right: 0;
}
section.ausiliari div.aux_card:hover .btn-yellow{
	border-radius: 50px;
	color: #ffffff;
}
section.progetti {
	padding-top: 7rem;
	padding-bottom: 7rem;
	overflow-x: hidden;
}
body.postid-490 section.progetti,
body.postid-556 section.progetti,
body.postid-500 section.progetti,
body.postid-885 section.progetti,
body.term-19 section.progetti,
body.term-44 section.progetti,
body.term-20 section.progetti,
body.term-45 section.progetti,
body.term-21 section.progetti,
body.term-43 section.progetti {
	padding-bottom: 0;
}
section.progetti div.testo, section.progetti div.testo p {
	font-size: 1.3125rem;
}

section.progetti div.proj_card_cont {
	max-width:1000px;
}
section.progetti div.proj_card {
	background-color: #56565a;
	color: #ffffff;
	padding: 1.5rem;
	cursor: pointer;
}
section.progetti div.proj_card .testo h4 {
	color: #ffffff;
	font-size: 1.5rem;
	line-height: 1.75rem;
	font-weight: bold;
	text-transform: uppercase;
	transition: all 0.3s;
	margin-top: 0.75rem;
	margin-bottom: 0.75rem;
}
section.progetti div.proj_card:hover .testo h4 {
	color: #f6bd00;
}
section.progetti div.proj_card .testo, section.progetti div.proj_card .testo p {
	font-size: 1.125rem;
	margin-top: 0;
}
section.progetti div.proj_card .link, section.progetti div.proj_card .link a {
	font-size: 0.9375rem;
	font-weight: bold;
	color: #ffffff;
	transition: all 0.3s;
}
section.progetti div.proj_card .link, section.progetti div.proj_card .link a span.material-symbols-outlined.btn-yellow {
	padding: 3px;
	vertical-align: bottom;
	margin-right: 0.5rem;
}
section.progetti div.proj_card .link, section.progetti div.proj_card:hover .link a span.material-symbols-outlined.btn-yellow {
	border-radius: 50px;
	color: #56565a;
}
section.progetti div.proj_card .link, section.progetti div.proj_card:focus .link a span.material-symbols-outlined.btn-yellow {
	color: #ffffff;
}
section.progetti div.proj_card:hover .link, section.progetti div.proj_card:hover .link a {
	color: #f6bd00;
}
section.progetti div.proj_card:hover .link a img {
	border-radius: 50px;
}
section.progetti div.proj_card a.btn-yellow {
	padding: 0.8rem 0.5rem;
}
section.progetti .uk-slider {
	/*position: relative;*/
}
section.progetti .uk-slider a.btn-previous {
	position:absolute;
	top: calc(50% - 2.5rem);
	left: -2rem;
	padding: 0.5rem;
	color: #56565a;
}
section.progetti .uk-slider a.btn-next {
	position:absolute;
	top: calc(50% - 2.5rem);
	right: -2rem;
	padding: 0.5rem;
	color: #56565a;
}
section.progetti .uk-slider-container {
	padding-left: 0;
	padding-right: 0;
	overflow: visible;
}
section.progetti div.uk-slider-container a.btn-previous span,
section.progetti div.uk-slider-container a.btn-next span {
	font-size:4rem;
}
section.video {
	padding-top: 7rem;
	padding-bottom: 0;
}
section.video div.grey {
	background-color: #eaeaea;
	padding-top: 7rem;
	padding-bottom: 7rem;
}
section.video div.videocont {
	margin-top: 2rem;
}
section.blocco_testo_img .riga {
	margin-bottom: 4rem;
}
body.page-template-page-service section.blocco_testo_img .riga,
body.page-template-page-fabbriche section.blocco_testo_img .riga {
	margin-bottom: 8rem;
}
/*--------------------------------------------------------------
## Homepage
--------------------------------------------------------------*/
body.page-template-homepage {

}
body.page-template-homepage .main-banner div.container {
	aspect-ratio: 16/9;

}
body.page-template-homepage .main-banner div.container div.text-container h1 {
	text-transform: none;
	font-size: 6.5rem;
	line-height: 5.5rem;
}
body.page-template-homepage .main-banner div.container div.text-container h3 {
	line-height: 2rem;
}
body.page-template-homepage section.first {
	padding-top: 5rem;
	padding-bottom: 8rem;
}
body.page-template-homepage section.first div.titolo {
	font-size: 2.25rem;
	line-height: 2.625rem;
	text-transform: uppercase;
}
body.page-template-homepage section.first div.blocchi .titolo {
	font-size: 1.5rem;
	font-weight: bold;
	padding-bottom: 0.5rem;
}
body.page-template-homepage section.first div.blocchi .testo {
	font-size: 1.125rem;
	padding-bottom: 2rem;
}

section.yellovideo div.yellow {
	background-color: #f6bd00;
	padding: 5rem;
}
section.yellovideo div.yellow div.overlay div.yel_guarda {
	font-size:2rem;
	text-transform: uppercase;
}
section.yellovideo div.yellow div.overlay div.yel_video a.play-button span {
	color: #ffffff;
    font-size: 8rem;
}
/*--------------------------------------------------------------
## Taxonomy
--------------------------------------------------------------*/

/*--------------------------------------------------------------
## Single
--------------------------------------------------------------*/

/*--------------------------------------------------------------
## News block
--------------------------------------------------------------*/
section.news-container div.heading h2 {
	font-family: Overpass;
	font-size: 2.25rem;
	line-height: 2.625rem;
	text-transform: uppercase;
}
section.news-container div.newscont {
	border-bottom: 5px solid #f6bd00;
	padding-bottom: 2rem;
}
section.news-container div.newscont figure {
	margin: 0;
}
section.news-container div.news {
	cursor: pointer;
}
section.news-container div.news div.data {
	font-family:Overpass;
	font-size:0.75rem;
	text-transform:uppercase;
	padding-bottom: 0.5rem;
}
section.news-container div.news div.titolo {
	padding-bottom: 2rem;
}
section.news-container div.news div.titolo h3 a {
	font-family: Overpass;
	font-size: 1.5rem;
	line-height: 1.75rem;
	font-weight: bold;
	color: #56565A;
	transition: color 0.3s;
}
section.news-container div.news:hover div.titolo h3 a {
	color: #f6bd00;
}
section.news-container div.news div.link {
	position: absolute;
	bottom: 0;
}
section.news-container div.news div.link a {
	color: #56565A;
	font-family: Overpass;
	font-weight: bold;
	font-size: 0.9375rem;
	transition: color 0.3s;
}
section.news-container div.news div.link a .btn-yellow {
	margin-right: 0.5rem;
}
section.news-container div.news div.newstext {
	vertical-align:top;
	padding: 0 0 0 1rem;
}
section.news-container div.news:hover div.link a {
	color: #f6bd00;
}
section.news-container div.news:hover div.link a .btn-yellow {
	border-radius: 50px;
	color: #ffffff;
}
section.news-container {
	padding-top: 7rem;
	padding-bottom: 7rem;
}
section.news-container div.newslist {
	cursor: pointer;
	padding-bottom: 4rem;
	border-bottom: 5px solid #f6bd00;
}
section.news-container div.newslist div.data {
	font-family:Overpass;
	font-size:0.75rem;
	text-transform:uppercase;
	padding-bottom: 0.5rem;
	padding-top: 1.5rem;
}
section.news-container div.newslist div.titolo {
	padding-bottom: 2rem;
}
section.news-container div.newslist div.titolo h3 a {
	font-family: Overpass;
	font-size: 1.5rem;
	line-height: 1.75rem;
	font-weight: bold;
	color: #56565A;
	transition: color 0.3s;
}
section.news-container div.newslist:hover div.titolo h3 a {
	color: #f6bd00;
}
section.news-container div.newslist div.link {
	padding-bottom: 2rem;
	position: absolute;
	bottom: 0;
}
section.news-container div.newslist div.link a {
	color: #56565A;
	font-family: Overpass;
	font-weight: bold;
	font-size: 0.9375rem;
	transition: color 0.3s;
}
section.news-container div.newslist:hover div.link a {
	color: #f6bd00;
}
section.news-container div.newslist:hover div.link a .btn-yellow {
	border-radius: 50px;
	color: #ffffff;
}

body.single-post, body.single-post p {
	font-size: 1.3125rem;
}
body.single-post h3 {
	font-size: 2.25rem;
	text-transform: uppercase;
}
body.single-post h4 {
	font-size: 1.5rem;
	text-transform: uppercase;
}
body.single-post section.notizia {
	padding-top: 6rem;
	padding-bottom: 7rem;
}
body.single-post section.prod-menu p {
	font-size: 1rem;
	text-transform: uppercase;
	color: #ffffff;
}
body.single-post section.notizia ul {
	list-style: disc;
    list-style-position: outside;
    padding-left: 30px;
}
body.single-post section.notizia ul li {
	padding-bottom: 1rem;
}
body.single-post .main-banner div.container {
	aspect-ratio: 25/10;
}
body.single-post section.prod-menu p.txt {
	margin-top: 7px;
}

/*--------------------------------------------------------------
## Horizontal banner
--------------------------------------------------------------*/
section.hbanner {
	padding: 1rem 0 1rem 0;
}
section.hbanner div.contrelative {
	width:100%;
	aspect-ratio: 16/5;
	position: relative;
}
section.hbanner div.contimg {
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	background-size:cover;
	background-position: center;
}
section.hbanner div.contgradient-left {
	position:absolute;
	top:0;
	left:0;
	bottom:0;
	right:0;
	background: linear-gradient(90deg,rgba(86, 86, 90, 1) 0%, rgba(86, 86, 90, 0.25) 40%, rgba(86, 86, 90, 0) 100%);
}
section.hbanner div.contgradient-right {
	position:absolute;
	top:0;
	left:0;
	bottom:0;
	right:0;
	background: linear-gradient(-90deg,rgba(86, 86, 90, 1) 0%, rgba(86, 86, 90, 0.25) 40%, rgba(86, 86, 90, 0) 100%);
}
section.hbanner div.conttext-left {
	position:absolute;
	top:0;
	left:0;
	bottom:0;
	right:50%;
	padding: 5rem;
}
section.hbanner div.conttext-left div.content {
	height: 100%;
}
section.hbanner div.conttext-right {
	position:absolute;
	top:0;
	left:60%;
	bottom:0;
	right:0;
	padding: 5rem;
}
section.hbanner div.titolo {
	font-family: Overpass;
	font-size: 3rem;
	line-height: 3rem;
	color: #ffffff;
	text-transform: uppercase;
	padding: 0 0 1.5rem 0;
}
section.hbanner div.testo {
	font-family: Overpass;
	font-size: 1.125rem;
	line-height: 1.75rem;
	color: #ffffff;
}
section.hbanner div.link {
	padding: 3rem 0;
}
section.hbanner div.link button.btn-yellow {
	padding: 15px 30px 12px 30px;
	font-family: Overpass;
}
section.hbanner .flex-center {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/*--------------------------------------------------------------
## Pagina fabbriche del futuro
--------------------------------------------------------------*/
.testo-top {
	margin-top: 10rem;
}
.testo-top .ff-titolo {
	font-family: Overpass;
	font-size: 2.25rem;
	line-height: 2.25rem;
	color: #56565A;
	text-transform: uppercase;
}
.testo-top .ff-testo {
	font-family: Overpass;
	font-size: 1.3125rem;
	line-height: 1.3125rem;
	color: #56565A;
}

/*--------------------------------------------------------------
## Pagina contatti
--------------------------------------------------------------*/
body.page-template-page-contatti {}

body.page-template-page-contatti .main-banner div.container div.scroll-it {
	bottom: 5rem;
}

body.page-template-page-contatti .main-banner div.container {
	aspect-ratio: 3/1;
}
body.page-template-page-contatti section.descrizione a,
body.page-template-page-contatti section.descrizione a:visited {
	color: #f6bd00;
	transition: color 0.3s;
}
body.page-template-page-contatti section.descrizione a:hover {
	color: #ffffff;
}  
section.form {
	padding-top: 7rem;
	padding-bottom: 7rem;
}
section.form div.grey {
	background-color: #eaeaea;
	padding: 8rem 6rem;
}
section.form span.testo-privacy,
#form-brochure span.testo-privacy {
	text-transform: none;
}
section.form .wpcf7-list-item {
	margin:0;
}
section.form a, section.form a:visited {
	color: #56565a;
	text-decoration: underline;
	transition: color 0.3s;
}
section.form a:hover {
	color: #f6bd00;
	text-decoration: underline;
}
section.form p input[type="submit"],
#form-brochure p input[type="submit"] {
	padding-right: 40px;
}
section.form p span.material-symbols-outlined.freccia,
#form-brochure p span.material-symbols-outlined.freccia {
	position: absolute;
	left: 80px;
	top: 13px;
	color: #56565a;
	transition: color 0.3s;
}
section.form p:hover span.material-symbols-outlined.freccia {
	/*color: #ffffff;*/
}
section.form .wpcf7 .wpcf7-submit:disabled {
    cursor: not-allowed;
	opacity: 0.5;
	pointer-events: none;
}
section.form .wpcf7 p input.wpcf7-submit[disabled] + span.freccia {
	opacity: 0.5;
}


/*--------------------------------------------------------------
## Pagina richiedi informazioni
--------------------------------------------------------------*/
body.page-template-page-richinfo .main-banner div.container {
	aspect-ratio: 3/1;
}
body.page-template-page-richinfo .main-banner div.container div.scroll-it {
	bottom: 5rem;
}
body.page-template-page-richinfo section.form {
	padding-top: 0;
	background: linear-gradient(180deg,rgba(86, 86, 90, 1) 0%, rgba(86, 86, 90, 1) 30%, rgba(255, 255, 255, 1) 30%, rgba(255, 255, 255, 1) 100%);
}


/*--------------------------------------------------------------
## Pagina azienda
--------------------------------------------------------------*/
body.page-template-page-azienda section.boxgialli {
	padding-top: 7rem;
	padding-bottom: 7rem;
}
body.page-template-page-azienda section.boxgialli div.testo,
body.page-template-page-azienda section.boxgialli div.testo p {
	font-size: 1.3125rem;
}
body.page-template-page-azienda section.boxgialli div.box_giallo {
	background-color: #f6bd00;
	padding: 2rem;
	font-size: 1.3125rem;
}
body.page-template-page-azienda section.boxgialli div.box_giallo h4 {
	font-size: 4.5rem;
	font-weight: bold;
	color: #56565a;
}
body.page-template-page-azienda section.trebox div.trecard {
	background-color: #eaeaea;
    border-left: 5px solid #f6bd00;
    padding: 2rem;
	font-size: 1.125rem;
}
body.page-template-page-azienda section.trebox div.trecard h3 {
	text-transform: uppercase;
	font-size: 3rem;
	color: #56565a;
}
section.trebox {
	padding-top: 7rem;
	padding-bottom: 0;
}
section.az_video {
	padding-top: 7rem;
	padding-bottom: 0;
}
section.az_video div.videocont {
	width: 100%;
	background-color: #eaeaea;
	aspect-ratio: 16/9;
}

span.videoarrow {
	font-size: 15rem;
}

/*--------------------------------------------------------------
## Pagine categorie prodotti
--------------------------------------------------------------*/
.testo-cat {
	margin-top: 10rem;
}
.testo-cat .ff-titolo {
	font-family: Overpass;
	font-size: 2.25rem;
	line-height: 2.625rem;
	color: #56565A;
	text-transform: uppercase;
}
.testo-cat .ff-testo h3 {
	font-size: 1.3125rem;
	font-weight: bold;
	line-height: 28px;
	color: #56565A;
	text-transform: uppercase;
}
.testo-cat .ff-testo p {
	font-family: Overpass;
	font-size: 1.3125rem;
	color: #56565A;
}
.testo-cat .ff-testo ul {
	list-style: inside;
}
.testo-cat .ff-testo ul li::marker {
	color: #f6bd00;
}

/*--------------------------------------------------------------
## Cookie & PRIVACY
--------------------------------------------------------------*/
body.page-template-page-privacy-cookie section {
	padding-top:0;
	padding-bottom:0;
}
body.page-template-page-privacy-cookie h2::before {
	background-image:none !important;
}
body.page-template-page-privacy-cookie #iub-legalDoc {
	border-top: 0;
}
body.page-template-page-privacy-cookie #iub-legalDoc .main-header h1 {
	font-family: Overpass;
    font-weight: 300;
    font-size: 2.25rem;
    line-height: 2.625rem;
    text-transform: uppercase;
}
body.page-template-page-privacy-cookie .container header.main-header p {
	font-family: "Overpass";
    font-weight: 300;
    font-size: 1.3125rem !important;
} 

/*--------------------------------------------------------------
## Sezione lista categorie
--------------------------------------------------------------*/
section.box_racconta_progetto {
	padding-top:7rem;
	padding-bottom: 7rem;
}
body.page-template-homepage section.box_racconta_progetto {
	padding-top:7rem;
	padding-bottom: 0;
}
section.cat_list {
	padding: 3.5rem 0;
}
body.page-template-homepage section.cat_list {
	padding: 7rem 0;
}
body.tax-cat_ausiliari section.cat_list {
	padding-top: 6rem;	
}

section.cat_list div.cat_card {
	background-color: #eaeaea;
	border: 0;
	width:100%;
	height:100%;
	padding: 1rem 1rem 2rem 1rem;
	cursor: pointer;
}
section.cat_list div.cat_card div.img {
	margin-bottom: 30px !important;
}
section.cat_list div.cat_card div.txt {
	font-family: Overpass;
	font-size: 1.5rem;
	line-height: 1.5rem;
	font-weight: bold;
	color: #56565a;
	text-transform: uppercase;
	transition: all 0.3s;
	min-height: 2rem;
}
section.cat_list div.cat_card:hover div.txt {
	color: #f6bd00;
}
section.cat_list div.cat_card div.lnk a {
	position: absolute;
    bottom: 0;
    right: 0;
    padding: 15px;
	background-color: #f6bd00;
    font-size: 0.9375rem;
    text-transform: uppercase;
    text-align: center;
    font-weight: bold;
    color: #56565a;
    transition: all .3s;
    border-radius: 0;
    border: 0;
}
section.cat_list div.cat_card span.desc {
	font-size: 1.125rem;
	color: #56565a;
	text-transform: none;
	font-weight: 300;
}
section.cat_list div.cat_card span.desc p {
	margin-top: 1rem;
	margin-bottom: 0;
}
section.cat_list div.cat_card:hover div.lnk a {
	border-radius: 50px;
}
section.cat_list div.cat_card div.txt div.cat_desc {
	font-family: Overpass;
	font-size: 1.125rem;
	font-weight: 300;
	text-transform: none;

}

/*--------------------------------------------------------------
## Privacy / Cookies
--------------------------------------------------------------*/
body.page-template-page-privacy-cookie .main-banner div.container {
	aspect-ratio: 3/1;
}
/*--------------------------------------------------------------
## Tablepress
--------------------------------------------------------------*/
table.tablepress thead tr th {
	background-color: #f6bd00;
	font-family: Overpass;
	font-weight: bold;
	font-size: 0.9375rem;
	line-height: normal;
	color: #56565a;
}
table.tablepress tbody tr td {
	font-family: Overpass;
	font-size: 0.9375rem;
	color: #56565a;
	line-height: normal;
	padding: 0.8rem 0.5rem;
}
table.tablepress tbody tr td:first {
	font-weight: bold;
}

/*--------------------------------------------------------------
## Pagina archivio progetti
--------------------------------------------------------------*/
body.post-type-archive-progetti section.progetti {
	padding-top: 7rem;
	padding-bottom: 7rem;
}
section.progetti .textcont {
	margin-bottom: 2rem;
}
section.progetti div.projlist_card {
	background-color: #808080;
	color: #ffffff;
	padding: 2.5rem 2rem 2rem 2rem;
	cursor: pointer;
}
section.progetti div.projlist_card .testo h4 {
	color: #ffffff;
	font-size: 1.5rem;
	line-height: 1.75rem;
	font-weight: bold;
	text-transform: uppercase;
	transition: all 0.3s;
}
section.progetti div.projlist_card:hover .testo h4 {
	color: #f6bd00;
}
section.progetti div.projlist_card .testo, section.progetti div.projlist_card .testo p {
	font-size: 1.125rem;
}
section.progetti div.projlist_card .link {
	margin-bottom: 3rem;
}
section.progetti div.projlist_card .link, section.progetti div.projlist_card .link a {
	font-size: 0.9375rem;
	font-weight: bold;
	color: #ffffff;
	transition: all 0.3s;
}
section.progetti div.projlist_card:hover .link, section.progetti div.projlist_card:hover .link a {
	color: #f6bd00 !important;
}
section.progetti div.projlist_card .link, section.progetti div.projlist_card .link a span.material-symbols-outlined.btn-yellow {
	padding: 3px;
	margin-right: 0.5rem;
	vertical-align: bottom;
}
section.progetti div.projlist_card .link, section.progetti div.projlist_card:hover .link a span.material-symbols-outlined.btn-yellow {
	border-radius: 50px;
	color: #ffffff;
}

section.progetti div.projlist_card:hover .link a img {
	border-radius: 50px;
}
section.progetti div.projlist_card a.btn-yellow {
	padding: 0.8rem 0.5rem;
}

/*--------------------------------------------------------------
## Privacy & Cookie Policy
--------------------------------------------------------------*/

/*--------------------------------------------------------------
## 404
--------------------------------------------------------------*/

/*--------------------------------------------------------------
## Search
--------------------------------------------------------------*/

/*--------------------------------------------------------------
## Footer
--------------------------------------------------------------*/
footer {
	padding: 7rem 0 0 0;
	background-color: #56565A;
	/*box-shadow: 10px 3px 10px rgb(0, 0, 0, 0.3); */
	bottom:0px;
	width:100%;
	color: #ffffff;
	font-family:Overpass;
	font-size:1.125rem;
	line-height:1.75rem;
	border-top: 5px solid #ffffff;
}

footer .titolo {
	font-weight:bold;
	text-transform:uppercase;
	padding-bottom: 0.5rem;
}
footer a {
	color: #f6bd00;
	font-family: Overpass;
	font-size: 1.125rem;
	line-height:1.75rem;
	transition: color 0.3s;
}
footer a:hover {
	color: #ffffff;
}
footer .social a {
	padding-right: 1rem;
}
footer .lastline {
	text-align:center;
	margin-top:7rem;
	padding-bottom: 4rem;
	font-size: 0.9375rem;
}
footer .lastline a {
	font-size: 0.9375rem;
}
footer div.social div.titolo {
	display:inline-block;
	margin-right:3rem;
}

ul.social-icons {}
ul.social-icons li{ display:inline; padding-left:5px }
ul.social-icons li a{}
ul.social-icons li a:hover{ opacity:0.8; transition:all 0.3s }

/*--------------------------------------------------------------
## Condividi Share
--------------------------------------------------------------*/
#shareIcons {
	display: none;
}
