/*
Theme Name: Sunerg Theme
Author: Sesinet
Description: Tema personalizzato per la prova pratica
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sunerg
Domain Path: /languages
*/

/* General CSS */
:root {
	--blue-color: #253141;
	--secondary-blue: #394a5e;
	--light-bg-color: #f8f8f8;
	--gray-text-color: #707070;
	--yellow-color: #f3aa38;
	--white-color: #fff;
	--light-divider-color: #e3e3e3;
	--dark-divider-color: #ffffff26;
	--red-color: rgb(230, 87, 87);
	--default-font: "Poppins", serif;
	--saira-font: "Saira", sans-serif;
}

body {
	font-family: var(--default-font);
	font-size: 17px;
	font-weight: 400;
	line-height: 1.6em;
	background-color: var(--white-color);
	color: var(--gray-text-color);
	font-style: normal;
}

p {
	line-height: 1.6em;
	margin-bottom: 1.6em;
}

/* p:last-child {
	margin-bottom: 0;
} */

/* ul {
	margin-bottom: 0;
} */

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-family: var(--saira-font);
	font-weight: 700;
	line-height: 1.2em;
	color: var(--blue-color);
}

.btn,
.btn.focus,
.btn:active,
.btn:hover,
.btn:focus,
button,
button:hover,
button:focus,
button:active,
a:active,
a:hover,
a:focus,
input:active,
input:hover,
input:focus,
.form-control:focus {
	box-shadow: none;
	text-shadow: none;
	outline: 0 none;
}

figure {
	margin: 0;
}

img {
	max-width: 100%;
}

a {
	text-decoration: none !important;
	color: inherit;
}

a:hover {
	text-decoration: none;
	outline: 0;
}

a:focus {
	text-decoration: none;
	outline: 0;
}

::-webkit-scrollbar-track {
	background-color: var(--light-divider-color);
	border-left: 1px solid var(--light-divider-color);
}

::-webkit-scrollbar {
	width: 7px;
	background-color: var(--light-divider-color);
}

::-webkit-scrollbar-thumb {
	background: var(--yellow-color);
}

html,
body {
	width: 100%;
	overflow-x: clip;
}

.container {
	max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl,
.mfp-container {
	padding-right: 15px;
	padding-left: 15px;
}

select {
	background-image: url(./assets/images/down-arrow.png);
    background-position: right 14px center;
    background-repeat: no-repeat;
    background-size: 10px;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}

.row-gap-30 {
	row-gap: 30px;
}

.gap-10 {
	gap: 10px;
}

.wpcf7-not-valid-tip {
	margin-top: 10px;
}

.wpcf7 form .wpcf7-response-output {
	margin: 25px 0 !important;
}

.pdr-70 {
	padding-right: 70px;
}

.text-strong {
	font-weight: 500;
	color: var(--blue-color);
}

.yellow-text {
	color: var(--yellow-color);
}

.blue-text {
	color: var(--blue-color);
}

.grey-text {
	color: var(--gray-text-color);
}

.text-size-14 {
	font-size: 14px;
	font-weight: 400;
}

.text-size-16 {
	font-size: 16px;
	font-weight: 400;
}

.section-gray {
	background: var(--light-bg-color);
}

.section-page {
	padding: 130px 0;
}

.section-no-padding-b {
	padding-bottom: 0 !important;
}

.section-no-padding-t {
	padding-top: 0 !important;
}

.section-title h2 {
	font-size: 44px;
	font-weight: 700;
	line-height: 1.3em;
	letter-spacing: -0.03em;
	text-transform: uppercase;
	margin-bottom: 32px;
}

.section-title h1 {
	font-size: 44px;
	text-transform: uppercase;
}

.my-custom-section h3 {
	font-size: 32px;
}

.box-reveal {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	border: 1px solid var(--light-divider-color);
	padding: 15px;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.box-reveal::before {
	content: '';
	position: absolute;
	top: 100%;
	right: 0;
	left: 0;
	background-color: var(--yellow-color);
	transition: all 0.4s ease-in-out;
	height: 100%;
	width: 100%;
	z-index: 0;
	opacity: 0;
}

figure.icon i {
	color: var(--blue-color);
}

.blog-posts a {
	transition: all 0.3s ease-in-out;
}

.blog-posts a:not(.my-btn, .my-btn-secondary):hover {
	color: var(--yellow-color);
}


.bottom-buttons {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 99999;
	justify-content: center;
	padding: 20px 0;
	background: var(--blue-color);
}

/* CSS Download */
.files-list {
	row-gap: 30px;
}

.title-garanzia:not(:first-child) {
	margin-top: 75px;
}

.all_row:not(:last-child) {
	padding-bottom: 75px;
	border-bottom: 1px solid var(--light-divider-color);
}


#page_service .box-reveal::before {
	content: none;
	transition: none;
	opacity: 0;
	position: static;
	height: 0;
	width: 0;
}

.box-reveal:hover::before {
	top: 0;
	border-radius: 0;
	opacity: 1;
}

#page_service .box-reveal:hover::before {
	top: 100%;
	opacity: 0;
	border-radius: 0;
}

.box-reveal:hover .box-reveal_title,
.box-reveal:hover p {
	color: var(--white-color);
}

#page_service .box-reveal:hover .box-reveal_title,
#page_service .box-reveal:hover p {
	color: inherit;
}

#page_service .box-reveal:hover p.my-btn {
	color: var(--white-color);
}

#page_service .box-reveal:hover img {
	filter: brightness(0) invert(0);
}

#page_service .box-reveal_title {
	padding-bottom: 10px;
	border-bottom: 0;
	width: 100%;
	margin-bottom: 10px;
	transition: all 0.3s ease-in-out;
}

#page_service .box-reveal .my-btn {
	padding: 0;
}

#page_service .box-reveal .my-btn a {
	display: inline-block;
	padding: 18px 54px 18px 20px;
}

.box-reveal_title,
.box-reveal p,
.box-reveal figure,
.box-reveal img {
	position: relative;
	z-index: 2;
}

.box-reveal_title {
	padding-bottom: 10px;
	border-bottom: 1px solid var(--light-divider-color);
	width: 100%;
	margin-bottom: 10px;
	transition: all 0.3s ease-in-out;
}

.box-reveal p {
	margin: auto;
	transition: all 0.3s ease-in-out;
}

.box-reveal figure {
	padding-bottom: 10px;
	border-bottom: 1px solid var(--light-divider-color);
	width: 100%;
	margin-bottom: 10px;
}

.box-reveal img {
	width: 64px;
	transition: all 0.3s ease-in-out;
	filter: brightness(0) invert(0);
}

.box-reveal:hover img {
	filter: brightness(0) invert(1);
}

:where(.wp-block-columns) {
	margin-bottom: 0;
}

.wp-block-image .alignleft,
.wp-block-image .alignright {
	margin: 0;
}


/*
*
*
* SEZIONE BLOCKS ACF
*
*
*/
/* ACCORDION */
.accordion {
	--bs-accordion-btn-focus-box-shadow: transparent;
}

.accordion .accordion-header {
	margin: 0;
}

.accordion-item {
	margin-bottom: 15px;
}

.accordion .accordion-item {
	border-top-style: solid !important;
	border-color: #dee2e6 !important;
}

.accordion .accordion-item {
	border-top: 1px;
}

.accordion-item:last-child {
	margin-bottom: 0;
}

.accordion-item:first-of-type>.accordion-header .accordion-button {
	border-radius: 0;
}

.accordion-item:last-of-type,
.accordion-item:first-of-type {
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}


.accordion-button {
	color: var(--blue-color);
	background-color: var(--light-bg-color);
	font-size: 20px;
	font-family: var(--saira-font);
}

.accordion-button.collapsed:hover {
	box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.24), 0 0 20px 0 rgba(0, 0, 0, 0.19);
}

.accordion-button:not(.collapsed) {
	color: var(--white-color);
	background-color: var(--yellow-color);
}

.accordion-body p {
	font-size: 16px;
}

.accordion_upper-content {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.accordion_upper-content img {
	width: 250px;
	height: auto;
}




/* Sezione container-fluid */
/* Sfondo a destra */
.bg-right {
	background: linear-gradient(90deg, var(--white-color) 40%, var(--yellow-color) 40%);
	padding: 0 0 80px;
}

.bg-right_img {
	margin-top: -40px !important;
	margin-left: -15px !important;
}

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

.bg-right_content {
	display: flex;
	padding: 125px 80px 0px 80px;
}

.bg-right_content :has(p, li) {
	color: var(--blue-color);
}

/* Sfondo a sinistra */
.bg-left {
	background: linear-gradient(90deg, var(--yellow-color) 60%, var(--white-color) 40%);
	padding: 0px 0 80px;
}

.bg-left_img {
	margin-top: -40px !important;
	margin-right: -15px !important;
}

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

.bg-left_content {
	display: flex;
	padding: 125px 80px 0px 80px;
}

.bg-left_content :has(p, li) {
	color: var(--blue-color);
}

.list-icon {
	list-style: none;
	padding: 0;
}

.list-icon li {
	margin-bottom: 10px;
}

.list-icon li:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.list-icon li::before {
	content: "\f14a";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	margin-right: 10px;
	color: #2ecc71;
}

.list-icon .wp-block-list {
	margin-top: 10px;
}

.list-icon .wp-block-list li::before {
	content: "";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	margin-right: 0;
	color: #2ecc71;
}



/*
*
*
* TEMPLATE - SIDEBAR
*
*
*/
.template-sidebar .entry-content .section-page:first-child {
	padding-top: 0;
}

.template-sidebar .section-page {
	padding-top: 75px;
	padding-bottom: 0;
}

.template-sidebar :where(h2, h3) {
	margin-bottom: 15px;
}



/*
*
*
* WIDGET - SIDEBAR
*
*
*/
.column.widget-area {
	position: sticky;
	top: 120px;
	height: 100%;
}

.column.widget-area .widget {
	background: var(--light-bg-color);
	margin-bottom: 15px;
}

.column.widget-area .widget:last-child {
	margin-bottom: 0;
}

.column.widget-area .widget .widget-title {
	text-align: start;
	padding: 15px 0;
	margin-bottom: 15px;
	border-bottom: 1px solid var(--light-divider-color);
}

.column.widget-area .widget ul {
	padding: 0;
	list-style: none;
	text-align: start;
	margin: 0;
}

.column.widget-area .widget ul li {
	margin-bottom: 10px;
}

.column.widget-area .widget ul li:last-child {
	margin-bottom: 0;
}

.column.widget-area .widget ul li a {
	transition: all 0.3s ease-in-out;
	display: inline-block;
}

.column.widget-area .widget>ul>li.cat-item.cat-parent>a,
.column.widget-area .widget>ul>li.cat-item.cat-parent .children>li {
	margin-bottom: 5px;
}


.column.widget-area .widget ul li.current_page_item a {
	color: var(--yellow-color);
	pointer-events: none;
}

.column.widget-area .widget ul li a:hover {
	color: var(--yellow-color);
}

.widget .form-row {
	position: relative;
}

.widget .form-row input {
	width: 100%;
	height: 60px;
	padding: 0 20px;
	font-size: 18px;
	border: none;
	border-radius: 0;
	background-color: var(--white-color);
	color: var(--blue-color);
	outline: none;
}

.widget .btn-search {
	position: absolute;
	font-size: 18px;
	right: 0;
	top: 0;
	width: 60px;
	height: 60px;
	background: var(--yellow-color);
	outline: 0;
	border: none;
	transition: all 0.3s ease-in-out;
}

.widget .btn-search:hover {
	background: var(--blue-color);
}

.widget .btn-search:hover i {
	color: var(--yellow-color);
}

.widget .btn-search i {
	color: var(--white-color);
}

.column.widget-area .widget.widget_text {
	background-color: var(--yellow-color);
}

aside .widget.widget_text .textwidget.custom-html-widget {
	color: var(--white-color);
}


.woocommerce form .form-row {
	padding: 0;
	margin: 0;
}

.single-blog h2 {
	margin-bottom: 25px;
}



.eyelet {
	display: inline-block;
	position: relative;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.1em;
	text-transform: uppercase;
	color: var(--yellow-color);
	padding-left: 50px;
	margin-bottom: 20px;
}

.eyelet::before {
	content: "";
	position: absolute;
	top: 50%;
	bottom: 0;
	left: 0;
	transform: translateY(-50%);
	background: url(/wp-content/uploads/2025/05/icon-sub-heading.svg) no-repeat;
	background-position: left center;
	background-size: cover;
	width: 36px;
	height: 7px;
}

.eyelet strong {
	font-weight: 400 !important;
}

.eyelet.color-white {
	color: var(--white-color);
}

.eyelet.color-white::before {
	filter: brightness(0) invert(1);
}

.image-anime {
	position: relative;
	overflow: hidden;
}

.image-anime:after {
	content: "";
	position: absolute;
	width: 200%;
	height: 0%;
	left: 50%;
	top: 50%;
	background-color: rgba(255, 255, 255, 0.3);
	transform: translate(-50%, -50%) rotate(-45deg);
	z-index: 1;
}

.image-anime:hover:after {
	height: 250%;
	transition: all 600ms linear;
	background-color: transparent;
}

.reveal,
.reveal-right {
	position: relative;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	visibility: hidden;
	overflow: hidden;
	width: 100%;
}

.reveal-right {
	justify-content: end;
}

.reveal img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transform-origin: left;
	transform-origin: left;
}

.reveal-right img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transform-origin: right;
	transform-origin: right;
}

.row {
	margin-right: -15px;
	margin-left: -15px;
}

.row>* {
	padding-right: 15px;
	padding-left: 15px;
}

.scroll {
	padding: 80px 0;
	margin-top: 100px;
}

.scroll-box {
	--gap: 20px;
	position: relative;
	display: flex;
	user-select: none;
	gap: var(--gap);
	align-items: center;
}

.scroll-content {
	flex-shrink: 0;
	display: flex;
	gap: var(--gap);
	min-width: 100%;
	animation: scroll 100s linear infinite;
}

.scroll-content span {
	display: inline-block;
	font-family: var(--saira-font);
	font-size: 240px;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--blue-color);
	opacity: 5%;
	vertical-align: middle;
}

@keyframes scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(calc(-100% - var(--gap)));
	}
}

.my-btn {
	display: inline-block;
	font-family: var(--saira-font);
	font-size: 17px;
	font-weight: 500;
	line-height: 1.2em;
	color: var(--white-color);
	background: var(--yellow-color);
	border-radius: 0;
	padding: 18px 54px 18px 20px;
	border: none;
	transition: 0.5s ease-in-out;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.my-btn:hover {
	background: transparent;
}

.my-btn::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	bottom: 0;
	background-image: url("/wp-content/uploads/2025/05/arrow-white.svg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	width: 24px;
	height: 24px;
	transform: translate(-30px, -50%);
	transition: 0.4s ease-in-out;
}

.my-btn:hover::before {
	transform: translate(-30px, -50%) rotate(45deg);
}

.my-btn::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: auto;
	right: 0;
	bottom: 0;
	width: 0;
	height: 106%;
	background: var(--blue-color);
	border-radius: 0;
	transition: 0.4s ease-in-out;
	z-index: -1;
}

.my-btn:hover::after {
	width: 100%;
	left: 0;
	right: auto;
}

.my-btn.my-btn-dark {
	background-color: var(--blue-color);
}

.my-btn.my-btn-dark:hover {
	color: var(--blue-color);
}

.my-btn.my-btn-dark:hover::before {
	filter: brightness(0.1) invert(0);
}

.my-btn.my-btn-dark::after {
	background-color: var(--white-color);
}

.my-btn.btn-border {
	background-color: transparent;
	border: 2px solid var(--white-color);
	color: var(--white-color);
	padding: 16px 64px 16px 30px;
}

.my-btn.btn-border:hover {
	border-color: var(--yellow-color);
}

.my-btn.btn-border::after {
	background-color: var(--yellow-color);
}

.btn-brochure {
	text-align: end;
}

.my-btn-secondary {
	display: inline-block;
	font-family: var(--saira-font);
	font-size: 17px;
	font-weight: 500;
	line-height: 1.2em;
	color: var(--yellow-color);
	background: transparent;
	border-radius: 0;
	padding: 18px 54px 18px 20px;
	border: 2px solid var(--yellow-color);
	transition: 0.5s ease-in-out;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.my-btn-secondary:hover {
	color: var(--white-color);
}

.my-btn-secondary:hover::before {
	filter: brightness(0) invert(1);
}

.my-btn-secondary::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	bottom: 0;
	background-image: url("/wp-content/uploads/2025/05/arrow-yellow.svg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	width: 24px;
	height: 24px;
	transform: translate(-30px, -50%);
	transition: 0.4s ease-in-out;
}

.my-btn-secondary:hover::before {
	transform: translate(-30px, -50%) rotate(45deg);
}

.my-btn-secondary::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: auto;
	right: 0;
	bottom: 0;
	width: 0;
	height: 106%;
	background: var(--yellow-color);
	border-radius: 0;
	transition: 0.4s ease-in-out;
	z-index: -1;
}

.my-btn-secondary:hover::after {
	width: 100%;
	left: 0;
	right: auto;
}


.mega-menu-overlay {
	background: rgba(0, 0, 0, 0.5);
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	opacity: 0;
	visibility: hidden;
	z-index: -1;
	pointer-events: none;
}

.mega-menu-overlay.enabled-overlay {
	opacity: 0.5;
	visibility: visible;
	z-index: 99;
}

.float-left {
	float: left;
}

.wpcf7-list-item {
	margin: 0;
}

/* 
*
*
Header 
*
*
*/
body:not(.home) .header-sticky {
	background-color: var(--blue-color);
}



#search-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.9);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

#search-modal.active {
	opacity: 1;
	pointer-events: auto;
}

.search-modal-inner {
	max-width: 600px;
	width: 90%;
	position: relative;
}

input[type="search"] {
	width: 100%;
	padding: 1rem;
	font-size: 1.5rem;
}

#close-search {
	position: absolute;
	font-size: 18px;
	right: 25px;
	top: 25px;
	width: 60px;
	height: 60px;
	background: var(--yellow-color);
	outline: 0;
	border: none;
	transition: all 0.3s ease-in-out;
}

.btn-menu::after {
	background: var(--secondary-blue);
}

header {
	height: 98px;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	z-index: 100;
}

header .header-service {
	width: 100%;
	position: relative;
	background-color: var(--secondary-blue);
	z-index: 99;
	padding: 10px 0;
}

header .header-service ul li {
	margin: 0 7px;
}

header .header-service ul li a,
header .header-service .icon-search i,
header .header-service .block-woo a i,
header .header-service .block-woo a span {
	color: var(--white-color);
	font-size: 14px;
	transition: all 0.3s ease-in-out;
}

header .header-service ul li a:hover,
header .header-service .icon-search:hover i,
header .header-service .block-woo .link-user:hover i,
header .header-service .block-woo .link-cart:hover i,
header .header-service .block-woo .link-cart:hover span {
	color: var(--yellow-color);
}

header .header-service .icon-search {
	margin: 0 7px;
	cursor: pointer;
}

header .header-service .header-news_title,
header .header-service .header-copy {
	font-size: 14px;
	font-weight: 400;
	color: var(--white-color);
}

header .header-service .block-woo {
	margin-left: 15px;
	display: flex;
	gap: 30px;
}

/* Switch Lingua */
.switch-language {
	margin-left: 15px;
}

.lang-item {
	display: inline-flex;
	margin-left: 15px;
	list-style: none;
}



header .header-sticky {
	position: relative;
	top: 0;
	z-index: 100;
	border-bottom: 1px solid var(--dark-divider-color);
	width: 100%;
}

header .header-sticky.hide {
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
	border-radius: 0;
}

header .header-sticky.active {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 0;
	transform: translateY(0);
	background: var(--blue-color);
	border-bottom: 1px solid var(--dark-divider-color);
	backdrop-filter: blur(10px);
}

#navbarMain {
	position: relative;
	display: flex;
	width: 100%;
}

header .my-navbar {
	display: flex;
	align-items: center;
	flex-direction: column;
	padding: 20px 0;
}

.my-navbar .link-main>a {
	padding: 0 25px !important;
}

header .responsive-menu,
header .navbar-toggle {
	display: none;
}

header .responsive-menu {
	top: 0;
	position: relative;
}

header .slicknav_btn {
	background: var(--yellow-color);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 0px;
}

header .slicknav_icon .slicknav_icon-bar {
	display: block;
	height: 3px;
	width: 22px;
	background-color: var(--white-color);
	border-radius: 6px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

.menu-main {
	display: flex;
	flex-basis: auto;
	flex-grow: 1;
	align-items: center;
}

header .slicknav_icon .slicknav_icon-bar:first-child {
	margin-top: 0 !important;
}

header .slicknav_icon .slicknav_icon-bar:last-child {
	margin-bottom: 0 !important;
}

header .navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 5px);
}

header .navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
	opacity: 0;
}

header .navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -5px);
}

header .slicknav_menu {
	position: absolute;
	width: 100%;
	padding: 0;
	background: var(--yellow-color);
	border-radius: 0;
}

header .slicknav_menu ul {
	margin: 5px 0;
}

header .slicknav_menu ul ul {
	margin: 0;
}

header .slicknav_nav .slicknav_row,
header .slicknav_nav li a {
	position: relative;
	font-family: var(--yellow-font);
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
	padding: 10px 20px;
	color: var(--white-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

header .slicknav_nav a:hover,
header .slicknav_nav a:focus,
header .slicknav_nav .slicknav_row:hover {
	background-color: transparent;
	color: var(--blue-color);
}

header .slicknav_menu ul ul li a {
	padding: 10px 20px 10px 30px;
}

header .slicknav_arrow {
	font-size: 0 !important;
}

header .slicknav_arrow:after {
	content: "\f107";
	font-family: "FontAwesome";
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: var(--white-color);
	position: absolute;
	right: 15px;
	top: 15px;
	transition: all 0.3s ease-out;
}

header .slicknav_open>a .slicknav_arrow:after {
	transform: rotate(-180deg);
	color: var(--blue-color);
}

#navbarMain #mega-menu-wrap-main-menu.mega-menu-wrap {
	text-align: center;
	flex: 1 1 0%;
	background: transparent !important;
}

#navbarMain #mega-menu-wrap-main-menu.mega-menu-wrap #mega-menu-main-menu {
	display: flex;
	flex-direction: row;
	justify-content: center;
	flex: 1;
}

#navbarMain #mega-menu-wrap-main-menu.mega-menu-wrap #mega-menu-main-menu a.mega-menu-link {
	font-size: 17px;
	font-weight: 500;
	font-family: var(--saira-font);
	transition: all 0.3s ease-in-out;
	background: transparent;
}

#navbarMain #mega-menu-wrap-main-menu.mega-menu-wrap #mega-menu-main-menu a.mega-menu-link:hover {
	color: var(--yellow-color);
	background: transparent;
}

#navbarMain #mega-menu-wrap-main-menu.mega-menu-wrap .mega-menu {
	display: flex !important;
}

#navbarMain #mega-menu-wrap-main-menu.mega-menu-wrap .mega-menu .mega-menu-row {
	padding: 15px 20px;
}

#navbarMain #mega-menu-wrap-main-menu.mega-menu-wrap .mega-menu .mega-menu-item:hover {
	background: transparent;
}

#navbarMain #mega-menu-wrap-main-menu.mega-menu-wrap .mega-menu .mega-sub-menu {
	padding-top: 21px;
	background: transparent;
}

header .header-sticky .my-navbar #navbarMain .link-main .mega-menu-column #menu-menu-fotovoltaico li a,
header .header-sticky .my-navbar #navbarMain .link-main .mega-menu-column #menu-menu-fotovoltaico-en li a,
header .header-sticky .my-navbar #navbarMain .link-main .mega-menu-column #menu-menu-fotovoltaico-fr li a,
header .header-sticky .my-navbar #navbarMain .link-main .mega-menu-column #menu-menu-solare li a,
header .header-sticky .my-navbar #navbarMain .link-main .mega-menu-column #menu-menu-solare-en li a,
header .header-sticky .my-navbar #navbarMain .link-main .mega-menu-column #menu-menu-solare-fr li a,
header .header-sticky .my-navbar #navbarMain .link-main .mega-menu-column #menu-menu-incentivi li a,
header .header-sticky .my-navbar #navbarMain .link-main .mega-menu-column #menu-menu-incentivi-en li a,
header .header-sticky .my-navbar #navbarMain .link-main .mega-menu-column #menu-menu-incentivi-fr li a {
	font-size: 17px !important;
	font-weight: 400 !important;
	font-family: var(--saira-font) !important;
}

#navbarMain #mega-menu-wrap-main-menu.mega-menu-wrap .mega-menu .mega-sub-menu .mega-menu-row {
	background: var(--white-color) !important;
	box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.5);
}

#navbarMain #mega-menu-wrap-main-menu.mega-menu-wrap .mega-menu .mega-sub-menu .mega-menu-row .mega-menu-item li a {
	transition: all 0.3s ease-in-out;
	background: transparent;
}

#navbarMain #mega-menu-wrap-main-menu.mega-menu-wrap .mega-menu .mega-sub-menu .mega-menu-row .mega-menu-item li a:hover {
	color: var(--yellow-color);
	background: transparent;
}

#navbarMain #mega-menu-wrap-main-menu.mega-menu-wrap .mega-menu .mega-sub-menu ul {
	list-style: none;
	padding: 0;
}

#navbarMain #mega-menu-wrap-main-menu.mega-menu-wrap .mega-menu .mega-sub-menu img {
	width: 100%;
}

/* Menu Mobile */
.wrapper-menu-mobile {
	display: none;
}

.menu-mobile {
	position: fixed;
	z-index: 9999;
	width: 100%;
	background: var(--blue-color);
}

.menu-mobile :where(li, li a, i),
.icon-mobile-service i {
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

.menu-mobile :where(li:hover, li:hover a, i:hover),
.icon-mobile-service i:hover {
	color: var(--yellow-color);
}

.menu-mobile ul {
	list-style: none;
	margin-bottom: 0;
}

#menu-menu-mobile li a,
#menu-menu-mobile-en li a,
#menu-menu-mobile-fr li a {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#menu-menu-mobile li:first-of-type,
#menu-menu-mobile-en li:first-of-type,
#menu-menu-mobile-fr li:first-of-type {
	padding-top: 20px;
}

#menu-menu-mobile li:last-of-type,
#menu-menu-mobile-en li:last-of-type,
#menu-menu-mobile-fr li:last-of-type {
	padding-bottom: 20px;
}

.menu-mobile-service {
	padding: 20px 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: var(--secondary-blue);
	gap: 10px;
}

button.navbar-toggler {
	font-size: 35px;
	width: 35px;
	height: 24px;
	display: inline-block;
	position: relative;
	padding: 0;
	border: none;
	vertical-align: middle;
	border-radius: 0;
}

.navbar-toggler,
.navbar-toggler:focus {
	box-shadow: none;
	border: 0;
	outline: 0;
	border-radius: 0;
}

.navbar-toggler-line:nth-child(1) {
	top: 0px;
}

.navbar-toggler-line:nth-child(2),
.navbar-toggler-line:nth-child(3) {
	top: 8px;
}

.navbar-toggler-line:nth-child(4) {
	top: 16px;
}

.navbar-toggler-line {
	height: 3px;
	width: 35px;
	content: "";
	display: block;
	position: absolute;
	right: 0px;
	margin-left: auto;
	margin-right: auto;
	transform: rotate(0deg);
	background: var(--white-color);
	border-radius: 0px;
	transition: 0.25s ease-in-out;
}

button.navbar-toggler[aria-expanded="true"] .navbar-toggler-line:nth-child(1) {
	top: 7px;
	width: 0%;
}

button.navbar-toggler[aria-expanded="true"] .navbar-toggler-line:nth-child(2) {
	transform: rotate(45deg);
}

button.navbar-toggler[aria-expanded="true"] .navbar-toggler-line:nth-child(3) {
	transform: rotate(-45deg);
}

button.navbar-toggler[aria-expanded="true"] .navbar-toggler-line:nth-child(4) {
	top: 7px;
	width: 0%;
}

.icon-mobile-service,
#menu-menu-service-1,
.icon-mobile-service .block-woo {
	display: flex;
	gap: 10px;
}

.bottom-mobile-service .switch-language {
	margin: 0;
}

header.mobile-menu-open .header-sticky {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 0;
	transform: translateY(0);
	border-bottom: 1px solid var(--dark-divider-color);
	/* backdrop-filter: blur(10px); */
}

.mobile-language {
	margin: 0;
}

.mobile-language .lang-item:first-of-type {
	margin: 0;
}

.mobile-language img {
	width: 20px !important;
	height: 14px !important;
}

.menu-mobile .nav-item {
	margin-bottom: 15px;
	padding-bottom: 5px;
	border-bottom: 1px solid var(--light-divider-color);
}

#menu-menu-mobile .sub-menu {
	display: none;
	padding-left: 1rem;
}

#menu-menu-mobile .sub-menu li:first-child {
	padding-top: 0;
	margin-top: 10px;
}

#menu-menu-mobile .sub-menu li:last-of-type {
	padding-bottom: 0;
}


.menu-mobile .nav-item li {
	margin-bottom: 10px;
}

.menu-mobile .accordion-icon {
	transition: transform 0.3s;
	float: right;
	fill: var(--white-color);
}

.menu-mobile li.menu-item-has-children.open .accordion-icon {
	transform: rotate(180deg);
}

.icon-mobile-service i {
	font-size: 20px;
}



/*
*
*
* MEGA MENU
*
*
*/
.menu-service .mega-sub-menu {
	padding-top: 15px !important;
	margin-top: 21px !important;
	background: var(--white-color) !important;
}

.menu-service .mega-sub-menu a {
	padding: 0 !important;
}


#mega-menu-wrap-main-menu #mega-menu-main-menu ul.mega-sub-menu {
	/* max-height: 500px; */
	display: flex !important;
	column-gap: 15px;
}

/* #mega-menu-wrap-main-menu #mega-menu-main-menu .menu-settori ul.mega-sub-menu {
	flex-direction: column;
} */

#mega-menu-wrap-main-menu #mega-menu-main-menu .menu-produzione .has-bg-img {
	height: 100%;
}

#mega-menu-wrap-main-menu #mega-menu-main-menu .menu-produzione .has-bg-img a {
	color: var(--white-color);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	z-index: 1;
	padding: 15px !important;
}

#mega-menu-wrap-main-menu #mega-menu-main-menu .mega-menu-column .mega-sub-menu {
	max-height: 100%;
	height: 100%;
	display: flex !important;
	flex-direction: column;
}

#mega-menu-wrap-main-menu #mega-menu-main-menu .menu-service .mega-sub-menu {
	display: inherit !important;
}

#mega-menu-wrap-main-menu #mega-menu-main-menu .menu-produzione .mega-menu-item-type-widget.widget_custom_html {
	position: absolute;
	bottom: 0;
}

#mega-menu-wrap-main-menu #mega-menu-main-menu .textwidget.custom-html-widget h4 {
	font-size: 17px;
	font-weight: 400;
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

#mega-menu-wrap-main-menu #mega-menu-main-menu .menu-settori .textwidget.custom-html-widget {
	height: 100px;
}

#mega-menu-wrap-main-menu #mega-menu-main-menu .menu-settori .textwidget.custom-html-widget h4 {
	text-transform: uppercase;
	font-weight: 500;
	font-size: 17px;
}

.menu-settori li:not(:last-child) {
	padding-bottom: 5px;
	margin-bottom: 10px;
	border-bottom: 1px solid var(--light-divider-color);
}

#mega-menu-wrap-main-menu #mega-menu-main-menu .menu-produzione .mega-menu-column:hover .textwidget.custom-html-widget h4 {
	color: var(--yellow-color);
}

#mega-menu-wrap-main-menu #mega-menu-main-menu .menu-produzione .mega-menu-column,
#mega-menu-wrap-main-menu #mega-menu-main-menu .menu-produzione .mega-menu-column,
#mega-menu-wrap-main-menu #mega-menu-main-menu .menu-produzione .mega-menu-column {
	position: relative;
	height: 100%;
	aspect-ratio: 420 / 320;
	max-height: 420px;
}

#mega-menu-wrap-main-menu #mega-menu-main-menu .menu-produzione .mega-menu-column::before,
#mega-menu-wrap-main-menu #mega-menu-main-menu .menu-settori .has-bg-img .mega-menu-item-type-widget.widget_custom_html::before {
	content: '';
	position: absolute;
	inset: 0;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: block;
	z-index: -1;
}

.link-parent a {
	height: 100% !important;
}

#mega-menu-wrap-main-menu #mega-menu-main-menu .has-bg-img .widget_nav_menu {
	padding: 15px 0 0 0 !important;
}

#mega-menu-wrap-main-menu #mega-menu-main-menu .has-bg-img>.mega-sub-menu {
	position: relative;
}

#mega-menu-wrap-main-menu #mega-menu-main-menu .has-bg-img .mega-sub-menu .link-parent {
	padding: 0 !important;
	height: 100px;
}

#mega-menu-wrap-main-menu #mega-menu-main-menu .has-bg-img .mega-sub-menu .link-parent a {
	padding: 15px !important;
}

#mega-menu-wrap-main-menu #mega-menu-main-menu .has-bg-img .widget_media_image {
	position: absolute !important;
	top: 0;
	height: 100%;
	z-index: -1;
	padding: 0 !important;
	background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5));
}

#mega-menu-wrap-main-menu #mega-menu-main-menu .menu-settori .has-bg-img .widget_media_image {
	height: 100px !important;
}

#mega-menu-wrap-main-menu #mega-menu-main-menu .has-bg-img .widget_media_image::before {
	content: '';
	background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5));
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	display: block;
}

#mega-menu-wrap-main-menu #mega-menu-main-menu .has-bg-img .widget_media_image img {
	height: 100% !important;
	object-fit: cover;
}


#mega-menu-wrap-main-menu #mega-menu-main-menu .has-bg-img .widget_nav_menu li a {
	color: var(--blue-color);
	transition: all 0.3s ease-in-out;
}

#mega-menu-wrap-main-menu #mega-menu-main-menu .has-bg-img .widget_nav_menu li:hover a {
	color: var(--yellow-color);
}

#mega-menu-wrap-main-menu #mega-menu-main-menu>li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
	font-weight: 400 !important;
}


/*
*
*
* COVER
*
*
*/
.sub_banner_con {
	padding: 120px 0 0 0;
	background-color: var(--yellow-color);
	margin-top: -100px;
	min-height: 50vh;
	display: flex;
	align-items: center;
}

.sub_banner_con .sub_banner_content {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.sub_banner_con .sub_banner_content h1 {
	font-size: 70px;
	text-transform: uppercase;
}

.sub_banner_con .sub_banner_content .box {
	font-weight: 500;
	display: flex;
	gap: 5px;
	color: var(--white-color);
}

.sub_banner_con .sub_banner_content .box a {
	transition: all 0.3s ease-in-out;
}

.sub_banner_con .sub_banner_content .box a:hover {
	color: var(--blue-color);
}

.sub_banner_con .sub_banner_content .box span {
	color: var(--blue-color);
}


/*
*
*
* PAGINE FOTOVOLTAICO - SOLARE
*
*
*/
.child-pages-list,
.achievements-grid {
	row-gap: 40px;
}

.child-page-link {
	border: 1px solid var(--light-divider-color);
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: end;
	height: calc(100% - 40px);
	overflow: hidden;
}

.child-page-link::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 2;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.7) 100%);
}

.child-page-link_img {
	width: 100%;
	aspect-ratio: 1 / 0.96;
	object-fit: cover;
	transition: all 0.3s ease-in-out;
}

.child-page-link_info {
	position: absolute;
	bottom: 0;
	z-index: 5;
}

.child-page-link_info :where(h3, p) {
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

.child-page-link:hover .child-page-link_img {
	transform: scale(1.1);
}

.child-page-link:hover :where(h3, p) {
	color: var(--yellow-color);
}

.child-page-link p {
	font-size: 16px;
}






/*
*
*
* BLOG 
*
*
*/
.blog-posts i {
	color: var(--yellow-color);
}

.blog-posts .main-box,
.blog-post .main-box {
	margin-bottom: 30px;
	border: 1px solid var(--light-divider-color);
	padding: 25px;
}

.blog-posts.single-blog .main-box,
.blog-post.single-blog .main-box {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.blog-posts .main-box:last-child {
	margin-bottom: 0;
}

.upper-portion {
	padding-bottom: 20px;
}

.blog-posts .main-box .lower-portion {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.blog-posts .main-box .lower-portion h4 {
	transition: all 0.3s ease-in-out;
}

.blog-posts .main-box .lower-portion h4:hover {
	color: var(--yellow-color);
}

.blog-posts .main-box .lower-portion .span-i-con {
	margin-top: 15px;
}

.blog-posts .main-box .lower-portion .span-i-con .text-mr {
	margin-right: 20px;
}

.blog-posts .main-box .lower-portion .span-i-con a {
	transition: all 0.3s ease-in-out;
}

.blog-posts .main-box .lower-portion .span-i-con a:hover {
	color: var(--yellow-color);
}

.blog-posts .main-box .button-portion {
	border-top: 1px solid var(--light-divider-color);
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 20px;
	margin-top: 20px;
}



/* 
*
*
* HOMEPAGE
*
*
*/

/* Hero */
.hero {
	position: relative;
	overflow: hidden;
	min-height: 100vh;
	padding: 230px 0 315px;
	margin-top: -100px;
}

.hero::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(270deg, rgba(12, 55, 90, 0) 0%, rgba(12, 55, 90, 0.6) 87.5%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero.hero-video .hero-bg-video {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.hero.hero-video .hero-bg-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider-layout {
	background: none;
	padding: 0;
}

.hero.hero-slider-layout .hero-slide {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 100vh;
}

.hero.hero-slider-layout .hero-slide::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(270deg, rgba(12, 55, 90, 0) 0%, rgba(12, 55, 90, 0.6) 87.5%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider-layout .hero-pagination {
	position: absolute;
	bottom: 125px;
	text-align: left;
	padding-left: calc((100vw - 1285px) / 2);
	z-index: 2;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet {
	width: 24px;
	height: 24px;
	background: var(--white-color);
	opacity: 1;
	transition: all 0.3s ease-in-out;
	margin: 0 5px;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active {
	background-color: var(--yellow-color);
}

.hero-content {
	position: relative;
	width: 100%;
	max-width: 1025px;
	z-index: 2;
}

/* .hero-content .section-title {
	margin-bottom: 40px;
} */

.hero-content .section-title h1 {
	font-size: 70px;
	color: var(--white-color);
	white-space: nowrap;
	letter-spacing: -2.1px;
}

.hero-content .section-title p {
	font-size: 20px;
	margin: 20px 0;
}

.hero-content-body .my-btn.btn-border {
	margin-left: 25px;
}


/* ABOUT */
#about h3 {
	font-size: 32px;
}

#about .about-title {
	padding-bottom: 40px !important;
	margin-bottom: 40px;
	border-bottom: 1px solid var(--light-divider-color);
}

#about .about-title h2 {
	font-size: 70px;
}

#about .about-title h3 {
	margin: 15px 0 25px 0;
}

#about .about-content {
	display: flex;
	flex-direction: row;
}

#about .about-content .about-image {
	margin-right: 30px;
	width: 100%;
}

#about .about-content .about-paragraph {
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid var(--light-divider-color);
}

#about .about-content .about-paragraph h3 {
	margin-bottom: 15px;
}

#about .about-content .about-paragraph ul {
	list-style: none;
	padding-left: 0;
}

#about .about-content .about-paragraph li {
	margin-bottom: 10px;
}

#about .about-content .about-paragraph ul li::before {
	content: "\f14a";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	margin-right: 10px;
	color: #2ecc71;
}

#about .about-content .about-paragraph:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

/* IMPIANTI */
#impianti {
	position: relative;
}

/* #impianti::before {
	content: "";
	position: absolute;
	background-color: var(--yellow-color);
	height: 35%;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
} */

#impianti .impianti-title {
	padding-bottom: 40px !important;
	border-bottom: 1px solid var(--light-divider-color);
}

/* #impianti .impianti-title .eyelet::before {
	filter: brightness(0) invert(1);
} */

#impianti .impianti-title h2 {
	font-size: 44px;
	text-transform: uppercase;
}

#impianti .impianti-title .impianti-btn {
	text-align: end;
}

#impianti .impianti-title .impianti-btn .btn-dark {
	background-color: var(--blue-color);
}

.product-home-section {
	padding-top: 40px;
}

.product-home-section .product-box {
	height: 100%;
	border: 1px solid var(--light-divider-color);
	display: flex;
	flex-direction: column;
}

.product-home-section .product-home_upper-content a {
	width: 100%;
	display: block;
	text-align: center;
}

.product-home-section .product-home_upper-content img {
	height: 350px;
	width: auto;
}

.product-home-section .product-home_lower-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	padding: 15px;
}

#impianti .impianti-item .btn-impianti {
	position: absolute;
	top: 30px;
	right: 30px;
	z-index: 2;
}

#impianti .impianti-item .btn-impianti a {
	background-color: var(--yellow-color);
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

#impianti .impianti-item .btn-impianti a::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	background-image: url("/wp-content/uploads/2025/05/arrow-white.svg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	width: 24px;
	height: 24px;
	transform: translate(-50%, -50%);
	transition: 0.4s ease-in-out;
}

#impianti .impianti-item .item-title {
	position: absolute;
	bottom: 30px;
	left: 30px;
	right: 30px;
	z-index: 2;
}

#impianti .impianti-item .item-title h3,
#impianti .impianti-item .item-title p {
	color: var(--white-color) !important;
}

#impianti .btn-scopri {
	text-align: center;
	margin-top: 1.5rem;
}


/* RIVOLGIAMO */
#rivolgiamo {
	background: linear-gradient(90deg, var(--yellow-color) 60%, var(--white-color) 40%);
	padding: 0px 0 80px;
}

#rivolgiamo .rivolgiamo-box {
	padding: 125px 80px 0px 80px;
}

#rivolgiamo .rivolgiamo-box .rivolgiamo-title {
	margin-bottom: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid var(--light-divider-color);
}

#rivolgiamo .rivolgiamo-box .rivolgiamo-title .eyelet {
	color: var(--white-color);
}

#rivolgiamo .rivolgiamo-box .rivolgiamo-title .eyelet::before {
	filter: brightness(0) invert(1);
}

#rivolgiamo .rivolgiamo-box .rivolgiamo-title h2 {
	font-size: 44px;
	margin-bottom: 15px;
	text-transform: uppercase;
}

#rivolgiamo .rivolgiamo-box .rivolgiamo-title p {
	margin-bottom: 0;
	color: var(--blue-color);
}

#rivolgiamo .rivolgiamo-box .rivolgiamo-content {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 30px;
	margin-bottom: 40px;
}

#rivolgiamo .rivolgiamo-box .rivolgiamo-content .rivolgiamo-item {
	width: calc(50% - 15px);
	display: flex;
	flex-direction: column;
	flex: 1;
}

#rivolgiamo .rivolgiamo-box .rivolgiamo-content .rivolgiamo-item .icon-box {
	margin-bottom: 15px;
}

#rivolgiamo .rivolgiamo-box .rivolgiamo-content .rivolgiamo-item .icon-box img {
	width: 60px;
}

#rivolgiamo .rivolgiamo-box .rivolgiamo-content .rivolgiamo-item .rivolgiamo-item-content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

#rivolgiamo .rivolgiamo-box .rivolgiamo-content .rivolgiamo-item .rivolgiamo-item-content h3 {
	font-size: 20px;
	margin-bottom: 10px;
	text-transform: capitalize;
}

#rivolgiamo .rivolgiamo-box .rivolgiamo-content .rivolgiamo-item .rivolgiamo-item-content p {
	color: var(--blue-color);
	margin: 0;
}

#rivolgiamo .rivolgiamo-box .rivolgiamo-content .rivolgiamo-item .rivolgiamo-item-content .btn-brochure {
	margin-top: 10px;
	text-align: start;
}

#rivolgiamo .rivolgiamo-img {
	margin-top: -45px;
}

#rivolgiamo .mySwiper {
	width: 100%;
	height: auto;
	position: relative;
}

#rivolgiamo .mySwiper .swiper-pagination-progressbar-fill {
	background-color: var(--yellow-color);
}

/* NEWS HOME */
#news-home .news-box-title {
	margin-bottom: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid var(--light-divider-color);
}

#news-home .news-box-title .eyelet {
	margin-bottom: 20px;
}

#news-home .news-box-title h2 {
	font-size: 44px;
	text-transform: uppercase;
}

#news-home .news-box-title p {
	margin-top: 25px;
}

#news-home .news-item {
	height: 100%;
	position: relative;
	overflow: hidden;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border: 1px solid var(--light-divider-color);
	padding: 15px;
}

#news-home .news-item h3 {
	transition: all 0.3s ease-in-out;
}

#news-home .news-item h3:hover {
	color: var(--yellow-color) !important;
}

#news-home .news-item .news-image {
	border-bottom: 1px solid var(--light-divider-color);
	margin-bottom: 20px;
	padding-bottom: 20px;
}

#news-home .news-item .news-image img {
	width: 100%;
	height: 250px;
	object-fit: cover;
}

#news-home .news-item h3 {
	font-size: 20px;
	text-transform: capitalize;
}

.wrapper-category {
	display: flex;
	gap: 10px;
}

.news-category {
	transition: all 0.3s ease-in-out;
	margin-bottom: 20px;
	display: block;
}

.news-category:hover {
	color: var(--yellow-color);
}

#news-home .news-item h3+p {
	transition: all 0.3s ease-in-out;
}

.news-home_bottom-content {
	margin-top: 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/*
*
*
* SEZIONE CTA e CALL TO ACTION
*
*
*/
#section-cta {
	margin-bottom: -40px;
	position: relative;
	z-index: 99;
}

#section-cta .section-cta-box {
	background-color: var(--yellow-color);
	padding: 40px;
}

#section-cta .section-cta-content {
	align-items: center;
}

#section-cta .section-cta-content .row {
	align-items: center;
}

#section-cta .section-cta-content .eyelet {
	color: var(--white-color);
}

#section-cta .section-cta-content .eyelet::before {
	filter: brightness(0) invert(1);
}

#section-cta .section-cta-content h2 {
	font-size: 32px;
	text-transform: uppercase;
	margin-bottom: 15px;
	text-wrap-style: balance;
}

#section-cta .section-cta-content p {
	color: var(--white-color);
	font-size: 16px;
}

.section-cta-content .btn-contact {
	text-align: end;
}





#call-to-action {
	position: relative;
	z-index: 99;
}

#call-to-action .call-to-action-box {
	background-color: var(--yellow-color);
	padding: 40px;
}

#call-to-action .call-to-action-content {
	display: flex;
	align-items: center;
}

#call-to-action .call-to-action-content .eyelet {
	color: var(--white-color);
}

#call-to-action .call-to-action-content .eyelet::before {
	filter: brightness(0) invert(1);
}

#call-to-action .call-to-action-content h2 {
	font-size: 34px;
	text-transform: uppercase;
	margin-bottom: 15px;
}

#call-to-action .call-to-action-content p {
	color: var(--white-color);
}

#call-to-action .call-to-action-content .btn-contact {
	text-align: end;
}


/*
*
*
*
* PAGINA CHI SIAMO
*
*
*
*/
#page_chi-siamo #mission h2 {
	text-transform: capitalize;
}

#mission {
	background: var(--light-bg-color);
}

#page_chi-siamo .scroll {
	margin-top: 0;
	margin-bottom: 175px;
}

#brevetti-certificazioni h3 {
	text-wrap-style: balance;
}

#brevetti-certificazioni .icon-brevetti {
	gap: 25px;
}

.bg-yellow {
	background: linear-gradient(90deg, var(--yellow-color) 60%, var(--white-color) 40%);
	padding: 0px 0 80px !important;
}

#sede .sede-box-content {
	padding: 125px 80px 0px 80px;
}

#sede .sede-box-img {
	margin-top: -45px;
}

#sede .odometer {
	font-size: 80px;
	color: var(--blue-color);
	font-weight: 700;
	display: flex;
}

#sede .sede-icon-box>div {
	display: flex;
	gap: 16px;
	align-items: center;
}

#sede .sede-icon-box p {
	margin-bottom: 0;
	font-family: var(--saira-font);
}

#sede .odometer-desc {
	font-size: 24px;
	font-family: var(--saira-font);
	font-weight: 700;
	line-height: 1.2;
	color: var(--blue-color);
}

#sede .box-odometer-80 img,
#sede .box-odometer-40 img {
	width: 60px;
}

#sede .box-odometer-80 .odometer::before {
	content: '+';
	font-size: 80px;
	color: var(--blue-color);
}


#map {
	height: 500px;
	z-index: 1;
}

.map-container {
	position: relative;
}

.world-map {
	width: 100%;
	height: auto;
	display: block;
}

.map-pin {
	position: absolute;
	width: 20px;
	height: 20px;
	background: var(--yellow-color);
	border-radius: 50%;
	border: 2px solid white;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
	animation: heartbeat 3s infinite;
}

.logo-marchio {
	display: flex;
	justify-content: flex-end;
}

.popup {
	position: absolute;
	top: -10px;
	left: 25px;
	background: white;
	border: 1px solid #ccc;
	padding: 16px;
	border-radius: 8px;
	max-width: 250px;
	display: none;
	opacity: 0;
	transition: all 0.5s ease-in-out;
	z-index: 95;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.popup ul {
	padding-left: 0;
	margin: 0;
	list-style: none;
}

.popup h3 {
	margin-top: 0;
	font-size: 18px;
}

@keyframes heartbeat {
	0% {
		transform: scale(1);
	}

	20% {
		transform: scale(1.1);
	}

	40% {
		transform: scale(1);
	}

	60% {
		transform: scale(1.1);
	}

	80% {
		transform: scale(1);
	}

	100% {
		transform: scale(1);
	}
}

#marchio {
	background: var(--light-bg-color);
}



/*
*
*
* PRODUZIONE
*
*
*/
.video-banner {
	position: relative;
	max-width: 100%;
	overflow: hidden;
	margin-top: -100px;
}

.custom-poster {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 2;
	width: 100vw;
	height: 100vh;
	object-fit: cover;
}

#customVideo {
	height: 100vh;
	width: 100vw;
	background: #000;
	z-index: 5;
}

.video-controls {
	position: absolute;
	top: 50%;
	left: 50%;
	display: flex;
	gap: 18px;
	z-index: 10;
	transform: translate(-50%, -50%);
	background: var(--blue-color);
	padding: 24px;
	transition: all 0.3s ease-in-out;
	cursor: pointer;
	z-index: 5;
}

.video-controls-pause {
	position: absolute;
	bottom: 15px;
	left: 10px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	z-index: 5;

}

#pause,
#mute {
	background: var(--blue-color);
	transition: all 0.3s ease-in-out;
	padding: 16px;
}

#pause:hover,
#mute:hover {
	background: var(--yellow-color);
}

.video-btn {
	background: transparent;
	color: white;
	border: none;
	font-size: 20px;
	cursor: pointer;
}

.video-controls:hover {
	background: var(--yellow-color);
}

#page_produzione :where(figure.wp-block-embed, figure.wp-block-embed>div, .wp-block-embed iframe) {
	width: 100%;
	height: 100%;
}


#risultati-ftv {
	background: var(--light-bg-color);
}

#galleria-ftv {
	padding-bottom: 0;
}

#galleria-ftv,
#galleria-st {
	position: relative;
}

#galleria-ftv::before,
#galleria-st::before {
	content: "";
	position: absolute;
	background-color: var(--yellow-color);
	height: 400px;
	top: 0;
	right: 0px;
	bottom: 0px;
	left: 0px;
	z-index: -1;
}

.title-gallery {
	margin-bottom: 40px;
	border-bottom: 1px solid var(--light-divider-color);
	padding-bottom: 40px;
}

.title-gallery h2 {
	font-size: 44px;
}

.title-gallery .box-navigation {
	display: flex;
	justify-content: end;
	align-items: flex-end;
	gap: 30px;
}

.title-gallery .gallery-button-prev::after {
	content: '';
	background-image: url('/wp-content/uploads/2025/06/arrow.svg');
	display: block;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	width: 44px;
	height: 44px;
	transform: scaleX(-1);
	transition: all 0.3s ease-in-out;
}

.title-gallery .gallery-button-next::after {
	content: '';
	background-image: url('/wp-content/uploads/2025/06/arrow.svg');
	display: block;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	width: 44px;
	height: 44px;
	transition: all 0.3s ease-in-out;
}

.title-gallery .gallery-button-prev:hover::after {
	transform: scaleX(-1) scale(1.2);
}

.title-gallery .gallery-button-next:hover::after {
	transform: scale(1.2);
}


.swiper-gallery>.swiper-wrapper {
	transition-timing-function: linear;
}

.swiper-gallery .swiper-slide {
	height: auto;
}

.swiper-gallery .swiper-slide {
	overflow: hidden;
	transition: all 0.3s ease-in-out;
}

.swiper-gallery .swiper-slide:hover img {
	transform: scale(1.2);
}

.swiper-gallery .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.3s ease-in-out;
}

.gslide-description.description-bottom {
	display: none;
}

.icon-columns:not(:last-child) {
	margin-bottom: 34px;
}

#controlli-qualità h3 {
	color: var(--yellow-color);
}

#certificazioni-st {
	background: var(--light-bg-color);
}


/*
*
*
* PAGINE SETTORI
*
*
*/
.product-video iframe {
	width: 100%;
	height: 470px;
}


/* SISTEMA AGRIVOLTAICO */
#impianto-agrivoltaico figure {
	height: 100%;
}

#page_sistema-agrivoltaico #esperienza h2 {
	text-wrap-style: balance;
}

/* PLUG AND PLAY */
.product-preview:not(:last-child) {
	margin-bottom: 30px;
}

.product-preview_item {
	border: 1px solid var(--light-divider-color);
}

.product-preview_header {
	position: relative;
	position: relative;
	display: flex;
	justify-content: center;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0) 50.73%, rgba(0, 0, 0, 0.7) 100%);
	border-bottom: 1px solid var(--light-divider-color);
	overflow: hidden;
	width: 100%;
}

.product-preview_header .link-product,
.product-preview_header img {
	width: 100%;
}

.product-preview_single-title {
	color: var(--yellow-color);
	position: absolute;
	top: 0;
	padding: 15px;
	z-index: 1;
}

.product-preview_img {
	height: 350px;
	object-fit: contain;
	z-index: -1;
	position: relative;
}

.product-preview_content {
	padding: 15px;
}

.product-preview_description {
	padding-bottom: 15px;
}

.link-product img {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

.link-product:hover img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);

}


/*
*
*
* PAGINA CERTIFICAZIONI
*
*
*/
.files-con .categories-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
	border: 1px solid var(--light-divider-color);
	padding: 30px 20px;
	text-align: center;
	height: 100%;
	justify-content: flex-end;
}

.files-con .categories-box figure {
	margin-bottom: auto;
}

.files-con .categories-box h3 {
	border-bottom: 1px solid var(--light-divider-color);
	padding-bottom: 15px;
	font-size: 30px;
}

.files-con .categories-box figure.icon {
	position: relative;
}

.files-con .categories-box figure.icon {
	background-color: var(--yellow-color);
	width: 68px;
	height: 68px;
	line-height: 68px;
	font-size: 32px;
	text-align: center;
	color: var(--blue-color);
	border-radius: 50%;
}

.files-con .categories-box p {
	margin: 0;
	font-size: 16px;
}

.files-con .categories-box :where(figure, p) {
	transition: all 0.3s ease-in-out;
}

.files-con .categories-box:hover p {
	color: var(--yellow-color) !important;
}

.files-con .categories-box:hover figure {
	transform: scale(1.1);
}




/*
*
*
* PAGINA SERVICE
*
*
*/
#link-servizi.section-page {
	padding-top: 0;
}


/* RESO */

.form_block+.form_block,
.repeater-field-item {
	margin-top: 60px;
}

.form_space {
	row-gap: 24px;
}

form p {
	margin: 0;
}

.form_style {
	border: var(--bs-border-width) solid var(--bs-border-color);
	border-radius: 0;
	padding: 17px;
}

form .cf7-repeater {
	padding: 0;
}

form h3,
form .repeater-field-header-title {
	margin-bottom: 24px;
}

.repeater-field-header-title {
	font-size: 28px;
	font-weight: 700;
	color: var(--blue-color);
	font-family: var(--saira-font);
}

.repeater-field-header-title p {
	margin: 0;
}

.form_style.grid-form {
	border: 0;
	padding: 0;
	/*display: grid;
	grid-template-columns: 1fr 1fr;*/
	font-size: 16px;
	column-gap: 25px;
}
.form_style.grid-form .wpcf7-list-item {
	display: block;
}

form .btn-repeater {
	font-size: 16px;
	line-height: 16px;
	font-weight: 600;
	padding: 20px 36px;
	text-align: center;
	display: inline-block;
	position: relative;
	color: var(--white-color);
	background: var(--yellow-color);
	transition: all 0.3s ease-in-out;
	outline: none;
	border-style: none;
	border-radius: 0;
	margin-top: 25px;
}

form .btn-repeater:hover {
	background: var(--blue-color);
	opacity: 1;
}

form .btn-repeater[disabled] {
	cursor: not-allowed;
}

.info-modello-2,
.info-modello-3,
.info-modello-4,
.info-modello-5 {
	display: none;
}


/* PAGINA COMUNICAZIONI FORNITORI */
.box-comunicazioni .upper-portion a {
	width: 100%;
	height: 100%;
	display: block;
}

.box-comunicazioni figure {
	height: 230px;
}

.single-com_fornitori .lower-portion h1 {
	margin-top: 25px;
}

.box-comunicazioni .upper-portion img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/*
* 
* 
* PAGINA CONTATTI
* 
* */
#contatti p {
	margin: 0;
}

#contatti .form-group:not(.acceptance):not(.input5) {
	margin-bottom: 20px;
}

#contatti .contatti-title {
	margin-bottom: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid var(--light-divider-color);
}

#contatti .contatti-title h2 {
	font-size: 44px;
	text-transform: uppercase;
}

#contatti .contatti-title p {
	margin-top: 25px;
}

#contatti .contatti-title .eyelet {
	margin-top: 0;
}

.contatti-item {
	display: flex;
	gap: 35px;
	margin-bottom: 40px;
}

.contatti-item:last-child {
	margin-bottom: 0;
}

.contatti-item h3 {
	font-size: 20px;
	margin-bottom: 5px;
}

#contatti .contatti-form-box {
	background-color: var(--light-bg-color);
	padding: 40px;
}

#contatti .contatti-form-box .form-control {
	border: 0;
	border-radius: 0;
	padding: 17px;
}

#contatti .contatti-form-box .contatti-form-box-title {
	margin-bottom: 40px;
}

#contatti .contatti-form-box .contatti-form-box-title h2 {
	font-size: 34px;
	text-transform: uppercase;
	margin-bottom: 15px;
}

#contatti .contatti-form-box .disabled,
#contatti .contatti-form-box :disabled {
	transition: none;
	cursor: not-allowed;
	opacity: 0.7;
	background: var(--yellow-color);
}

#contatti .contatti-form-box .disabled:hover,
#contatti .contatti-form-box :disabled:hover {
	background: var(--yellow-color);
}

#contatti .contatti-form-box .disabled::after,
#contatti .contatti-form-box :disabled::after {
	display: none;
}

form .submit_now {
	width: 100%;
	font-size: 16px;
	line-height: 16px;
	font-weight: 600;
	padding: 20px 36px;
	text-align: center;
	display: inline-block;
	position: relative;
	color: var(--white-color);
	background: var(--yellow-color);
	transition: all 0.3s ease-in-out;
	outline: none;
	border-style: none;
}

form .submit_now:hover {
	background: var(--blue-color);
}

#contatti .contatti-form-box .help-block.with-errors ul {
	margin: 0;
	text-align: left;
}

#contatti .contatti-form-box .help-block.with-errors ul li {
	color: var(--red-color);
	font-weight: 500;
	font-size: 14px;
}


/*
*
*
* PAGINA LAVORA CON NOI	
*
*
*/
.lavora-con .accordion_upper-content {
	flex-direction: column;
	justify-content: start;
	align-items: flex-start;
}


/*
*
*
* PAGINA LA TUA CASA ECOLOGICA
*
*
*/

.timeline {
	display: flex;
	flex-direction: column;
	position: relative;
}

.timeline__event {
	margin-bottom: 20px;
	position: relative;
	display: flex;
	margin: 20px 0;
	border-radius: 6px;
	align-self: center;
	width: 100%;
}

.timeline__event:nth-child(2n+1) {
	flex-direction: row-reverse;
}

.timeline__event:nth-child(2n+1) .timeline__event__content {
	border-radius: 0;
}

.timeline__event:nth-child(2n+1) .timeline__event__icon:before {
	content: "";
	width: 2px;
	height: 190%;
	background: var(--blue-color);
	position: absolute;
	top: 0%;
	left: 50%;
	right: auto;
	z-index: -1;
	transform: translateX(-50%);
	-webkit-animation: fillTop 0.3s forwards 0.3s ease-in-out;
	animation: fillTop 0.3s forwards 0.3s ease-in-out;
}

.timeline__event:nth-child(2n+1) .timeline__event__icon:after {
	content: "";
	width: 100%;
	height: 2px;
	background: var(--blue-color);
	position: absolute;
	right: 0;
	z-index: -1;
	top: 50%;
	left: auto;
	transform: translateY(-50%);
	-webkit-animation: fillLeft 0.3s forwards 0.3s ease-in-out;
	animation: fillLeft 0.3s forwards 0.3s ease-in-out;
}

.timeline__event__title h3 {
	text-transform: capitalize;
	color: var(--yellow-color);
}

.timeline__event__content {
	padding: 20px;
	box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25), 0 18px 36px -18px rgba(0, 0, 0, 0.3), 0 -12px 36px -8px rgba(0, 0, 0, 0.025);
	background: var(--white-color);
	width: 100%;
	border-radius: 0;
}

.timeline__event__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white-color);
	padding: 20px;
	align-self: center;
	margin: 0 20px;
	background: var(--blue-color);
	border-radius: 100%;
	width: 40px;
	box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25), 0 18px 36px -18px rgba(0, 0, 0, 0.3), 0 -12px 36px -8px rgba(0, 0, 0, 0.025);
	padding: 40px;
	height: 40px;
	position: relative;
}

.timeline__event__icon {
	font-size: 24px;
}

.timeline__event__icon:before {
	content: "";
	width: 2px;
	height: 190%;
	background: var(--blue-color);
	position: absolute;
	top: 0%;
	z-index: -1;
	left: 50%;
	transform: translateX(-50%);
	-webkit-animation: fillTop 0.3s forwards 0.3s ease-in-out;
	animation: fillTop 0.3s forwards 0.3s ease-in-out;
}

.timeline__event__icon:after {
	content: "";
	width: 100%;
	height: 2px;
	background: var(--blue-color);
	position: absolute;
	left: 0%;
	z-index: -1;
	top: 50%;
	transform: translateY(-50%);
	-webkit-animation: fillLeftOdd 0.3s forwards 0.3s ease-in-out;
	animation: fillLeftOdd 0.3s forwards 0.3s ease-in-out;
}

.timeline__event__description {
	flex-basis: 60%;
}

.timeline__event.left .timeline__event__icon {
	background: var(--blue-color);
}

.timeline__event.left .timeline__event__title h3 {
	color: var(--yellow-color);
}

.timeline__event.right .timeline__event__icon {
	background: var(--yellow-color);
}

.timeline__event.right .timeline__event__title h3 {
	color: var(--blue-color);
}

.timeline__event:last-child .timeline__event__icon:before {
	content: none;
}

@media (max-width: 786px) {
	.timeline__event {
		flex-direction: column;
		align-self: center;
	}

	.timeline__event__content {
		width: 100%;
	}

	.timeline__event__icon {
		border-radius: 0;
		width: 100%;
		margin: 0;
		box-shadow: none;
	}

	.timeline__event__icon:before,
	.timeline__event__icon:after {
		display: none;
	}

	.timeline__event:nth-child(2n+1) {
		flex-direction: column;
		align-self: center;
	}

	.timeline__event:nth-child(2n+1) .timeline__event__icon {
		border-radius: 0;
		margin: 0;
	}
}

@-webkit-keyframes fillLeft {
	100% {
		right: 100%;
	}
}

@keyframes fillLeft {
	100% {
		right: 100%;
	}
}

@-webkit-keyframes fillTop {
	100% {
		top: 100%;
	}
}

@keyframes fillTop {
	100% {
		top: 100%;
	}
}

@-webkit-keyframes fillLeftOdd {
	100% {
		left: 100%;
	}
}

@keyframes fillLeftOdd {
	100% {
		left: 100%;
	}
}





/* 
*
*
* FOOTER 
*
*
*/

footer {
	background-color: var(--blue-color);
	padding: 60px 0;
}

footer h3 {
	color: var(--yellow-color);
	font-size: 20px;
	margin-bottom: 30px;
}

footer .certificazioni-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

footer .certificazioni-list li {
	color: var(--white-color);
}

footer .icon-certificazioni img {
	max-width: 20%;
	margin-top: 20px;
}

footer .scroll {
	margin-bottom: 100px;
	margin-top: 0;
}

footer .scroll .scroll-content span {
	color: var(--white-color);
	opacity: 6%;
}

footer .section-newsletter {
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--dark-divider-color);
}

footer .section-newsletter .upper_portion {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

.form-news {
	display: flex;
	flex: 1;
	justify-content: space-between;
	align-items: center;
}

footer .section-newsletter .upper_portion h4 {
	color: var(--yellow-color);
	/*padding-left: 180px;*/
}

footer .section-newsletter .upper_portion form {
	width: 50%;
}

footer .section-newsletter .upper_portion form .form-group {
	position: relative;
	width: 100%;
}

footer .section-newsletter .upper_portion form .form-group input {
	padding: 20px;
	width: 100%;
	border: none;
	height: 100%;
	outline: none;
}

footer .section-newsletter .upper_portion form .form-group button {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translate(0, -50%);
	height: 100%;
	outline: none;
}

footer .footer-info ul {
	list-style: none;
	padding: 0;
	margin-bottom: 0;
}

footer .footer-info li,
footer .footer-info li a {
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

footer .footer-info li:hover a {
	color: var(--yellow-color);
}

footer #menu-menu-footer,
footer #menu-menu-footer-en,
footer #menu-menu-footer-fr {
	margin-top: 30px;
}

footer #menu-menu-footer li a,
footer #menu-menu-footer-en li a,
footer #menu-menu-footer-fr li a {
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

footer #menu-menu-footer li a:hover,
footer #menu-menu-footer-en li a:hover,
footer #menu-menu-footer-fr li a:hover {
	color: var(--yellow-color);
}

footer .widget .gallery-item {
	text-align: start !important;
	width: auto !important;
	margin-right: 25px;
}

footer .widget .gallery-item:last-of-type {
	margin-right: 0;
}


footer .widget #gallery-1 .gallery-item a {
	pointer-events: none;
}

footer .widget .gallery-item a img {
	border: 0 !important;
	width: auto;
	height: 50px;
}

footer .footer-copy {
	margin-top: 60px;
	padding: 40px 0;
	color: var(--white-color);
	border-top: 1px solid var(--dark-divider-color);
}

footer .footer-privacy-policy ul {
	display: flex;
	flex-direction: row;
	list-style: none;
	padding: 0;
	justify-content: flex-end;
}

footer .footer-privacy-policy li {
	padding: 0 25px 0 20px;
	position: relative;
}

footer .footer-privacy-policy li::before {
	content: "/";
	position: absolute;
	right: 0;
	bottom: 0;
	top: 0;
	color: var(--white-color);
}

footer .footer-privacy-policy li:last-child::before {
	content: "";
}

footer .footer-privacy-policy li:first-child {
	padding-left: 0;
}

footer .footer-privacy-policy li:last-child {
	padding-right: 0;
}

footer .footer-privacy-policy li a {
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

footer .footer-privacy-policy li:hover a {
	color: var(--yellow-color);
}

footer .project_modal .modal .contact_content h4 {
	font-size: 30px;
	color: var(--blue-color);
	margin-bottom: 15px;
}

footer .project_modal .modal .contact_content p {
	line-height: 1.2;
}

footer .legals {
	display: flex;
	flex-direction: column;
	justify-content: center;
	background-color: #fff;
    border-radius: 0.25rem;
    padding: 15px;
    margin: 0;
    text-align: center;
}

footer .legals .row:first-child {
	justify-content: center;
	align-items: center;
}

footer .legals .logo-bando img {
	margin: 0 auto;
    max-height: 75px;
}

footer .legals  p {
	font-size: 12px;
	line-height: 20px;
}


footer .modal h1 {
	color: var(--yellow-color);
}

footer .social-icons {
	display: flex;
	gap: 10px;
}

footer .social-icons i.social-networks {
	font-size: 14px;
	height: 40px;
	width: 40px;
	line-height: 40px;
	border-radius: 100%;
	text-align: center;
	color: var(--blue-color);
	background-color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

footer .social-icons i.social-networks:hover {
	color: var(--yellow-color);
	background-color: var(--secondary-blue);
}


.project_modal .modal {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	/* z-index: 1050; */
	overflow: hidden;
	outline: 0;
}

.project_modal .fade {
	opacity: 0;
	transition: opacity .15s linear;
}

.modal-open .modal {
	overflow-x: hidden;
	overflow-y: auto;
}

.project_modal .fade.show {
	opacity: 1;
	background-color: transparent;
}

[tabindex="-1"]:focus {
	outline: 0 !important;
}

.project_modal .modal.fade .modal-dialog {
	transition: transform .3s ease-out, -webkit-transform .3s ease-out;
	transform: translate(0, -25%);
}

.project_modal .modal-dialog {
	max-width: 48%;
	margin: 1.75rem auto;
	position: relative;
	width: auto;
	pointer-events: none;
}

.project_modal .modal.show .modal-dialog {
	transform: translate(0, 0);
}

.project_modal .modal.fade .modal-dialog {
	transition: transform .3s ease-out, -webkit-transform .3s ease-out;
}

.project_modal .modal-content {
	position: relative;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	width: 100%;
	pointer-events: auto;
	background-clip: padding-box;
	outline: 0;
	background-color: var(--white-color);
	border-radius: 0;
	border: none;
}

.project_modal .modal-header {
	display: flex;
	-webkit-box-align: start;
	align-items: flex-start;
	-webkit-box-pack: justify;
	justify-content: space-between;
	padding: 16px;
	border-bottom: none;
}

.project_modal .btn-close-modal:not(:disabled):not(.disabled) {
	cursor: pointer;
	opacity: 1 !important;
}

.project_modal .modal-header .btn-close-modal {
	padding: 1rem;
	margin: -1rem -1rem -1rem auto;
}

.project_modal .modal button {
	background: var(--white-color);
	opacity: 1;
	position: absolute;
	right: 10px;
	top: 10px;
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	outline: none;
	z-index: 9999;
}

.project_modal .btn-close-modal {
	float: right;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1;
	color: #000;
	text-shadow: 0 1px 0 #fff;
	border: 0;
	appearance: none;
}

.project_modal button {
	text-transform: none;
	overflow: visible;
}

.project_modal .modal button i {
	color: var(--blue-color);
	font-size: 18px;
	line-height: 18px;
	padding: 5px 5px;
	outline: none;
}

.project_modal .fa-x:before {
	content: "\58";
}

.project_modal .blog-model-con .modal-body {
	overflow-y: auto;
	padding-top: 0;
}

.project_modal .modal-body {
	position: relative;
	-webkit-box-flex: 1;
	flex: 1 1 auto;
	padding: 1rem;
	padding-left: 30px;
	padding-right: 30px;
}

.project_modal .modal-body .blog-box-item {
	display: flex;
	align-items: center;
	border-radius: 0;
}

.project_modal .blog-box-item {
	background: var(--white-color);
	overflow: hidden;
}

.project_modal .modal-body .blog-img {
	float: left;
	width: 100%;
}

.project_modal .modal-body .blog-img figure {
	position: relative;
}

.project_modal .img-fluid {
	width: 100%;
	border-radius: 20px;
}

.project_modal .modal-content .project_content {
	padding: 40px;
}

.project_modal .modal-content .project_content .text {
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	display: block;
	margin-bottom: 20px;
	color: var(--gray-text-color);
}

.project_modal .modal-content .project_content .properties {
	margin-bottom: 20px;
}

.project_modal .modal-content .project_content .properties ul {
	padding-left: 25px;
}

.project_modal .modal-content .project_content .properties li {
	margin-bottom: 8px;
	position: relative;
	color: var(--gray-text-color);
}

.project_modal .modal-content .project_content .properties li:last-child {
	margin-bottom: 0;
}

.project_modal .modal-content .project_content .properties ul li .circle {
	font-size: 9px;
	width: 17px;
	height: 17px;
	line-height: 17px;
	top: 4px;
	left: -25px;
	text-align: center;
	border-radius: 100%;
	position: absolute;
	color: var(--white-color);
	background-color: var(--blue-color);
	transition: all 0.3s ease-in-out;
}

.project_modal .modal-content .project_content .submit_now {
	font-size: 16px;
	line-height: 16px;
	font-weight: 600;
	padding: 20px 36px;
	text-align: center;
	display: inline-block;
	position: relative;
	color: var(--white-color);
	background: var(--yellow-color);
	transition: all 0.3s ease-in-out;
	outline: none;
	border-style: none;
}

.project_modal .modal-content .project_content .submit_now:hover {
	background: var(--blue-color);
}

.project_modal .modal-content .project_content input.form_style {
	font-size: 14px;
	line-height: 14px;
	font-weight: 400;
	height: 53px;
	width: 100%;
	padding: 10px 10px 10px 22px;
	color: var(--gray-text-color);
	background-color: var(--white-color);
	border: 1px solid var(--white-color);
	overflow: visible;
	outline: none;
	border: 1px solid var(--light-divider-color);
}

.project_modal .modal-content .project_content :where(.input1, .input2) {
	position: relative;
	z-index: 5;
}

.project_modal .modal-content .project_content .form-group {
	margin-bottom: 20px;
}

.project_modal .modal-content .contact_content .form-group input.form_style {
	width: 100%;
}

.project_content form> :last-child {
	margin-bottom: 0;
}

.wpcf7-not-valid-tip {
	font-size: 14px;
}




/*
*
*
* WOOCOMMERCE
*
*
*/
/* Modal */



/* CSS GENERALE WOOCOMMERCE */
.price {
	font-size: 20px;
	color: #958e09;
	margin-bottom: 10px;
}

.product-home_lower-content .price {
	margin-bottom: 0;
}

.account-welcome {
	font-size: 32px;
}

header.woocommerce-Address-title.title {
	align-items: flex-start;
}

.account-content form input,
.account-content span.select2-selection.select2-selection--single {
	border: var(--bs-border-width) solid var(--bs-border-color) !important;
	border-radius: 0 !important;
	padding: 17px !important;
}

.select2-container .select2-dropdown {
	border: var(--bs-border-width) solid var(--bs-border-color) !important;
	border-radius: 0 !important;
}

.woocommerce form .form-row {
	margin-bottom: 25px;
}

.account-content fieldset {
	margin-top: 30px;
}

.woocommerce-info {
	border-top-color: var(--yellow-color);
}

.woocommerce-info::before {
	color: var(--blue-color);
}

.account-content a {
	text-decoration: underline !important;
}

.account-content .account-logout {
	color: var(--red-color);
}

.account-content .button.wc-forward,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button {
	text-decoration: none !important;
	display: inline-flex;
	font-family: var(--saira-font);
	font-size: 17px;
	font-weight: 500;
	line-height: 1.2em;
	color: var(--white-color);
	background: var(--yellow-color);
	border-radius: 0;
	border: none;
	transition: 0.5s ease-in-out;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button {
	padding: 18px 20px 18px 20px;
	margin-top: 30px;
}

.account-content .button.wc-forward:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:hover {
	background: transparent;
	color: var(--white-color);
}

.account-content .button.wc-forward::after,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: auto;
	right: 0;
	bottom: 0;
	width: 0;
	height: 106%;
	background: var(--blue-color);
	border-radius: 0;
	transition: 0.4s ease-in-out;
	z-index: -1;
}

.account-content .button.wc-forward:hover::after,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:hover::after {
	width: 100%;
	left: 0;
	right: auto;
}


.shop-header {
	margin-bottom: 30px;
	row-gap: 30px;
}

.shop-title {
	flex: 1 1 auto;
}

.shop-ordering {
	flex: 0 0 auto;
}

.shop-header+h1.page-title {
	display: none;
}

.woocommerce .woocommerce-result-count {
	margin: 0;
}

.woocommerce-ordering .orderby {
	border: var(--bs-border-width) solid var(--bs-border-color);
	border-radius: 0;
	padding: 17px;
}

.wc-block-cart-item__remove-link {
	color: var(--red-color) !important;
}


.product-categories ul.children {
	padding-left: 15px;
}

.product-categories ul.children li::before {
	content: '-';
	margin-right: 5px;
}


.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button,
.wp-block-button__link.add_to_cart_button,
.wc-block-components-button.wp-element-button.wc-block-cart__submit-button,
.wc-block-components-button.wp-element-button.wc-block-components-totals-coupon__button.contained,
.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained {
	display: inline-flex;
	font-family: var(--saira-font);
	font-size: 17px;
	font-weight: 500;
	line-height: 1.2em;
	color: var(--white-color);
	background: var(--yellow-color);
	border-radius: 0;
	border: none;
	transition: 0.5s ease-in-out;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:hover,
.wp-block-button__link.add_to_cart_button:hover,
.wc-block-components-button.wp-element-button.wc-block-cart__submit-button:hover,
.wc-block-components-button.wp-element-button.wc-block-components-totals-coupon__button.contained:hover,
.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained:hover {
	background: transparent;
	color: var(--white-color);
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button::after,
.wp-block-button__link.add_to_cart_button::after,
.wc-block-components-button.wp-element-button.wc-block-cart__submit-button::after,
.wc-block-components-button.wp-element-button.wc-block-components-totals-coupon__button.contained::after,
.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: auto;
	right: 0;
	bottom: 0;
	width: 0;
	height: 106%;
	background: var(--blue-color);
	border-radius: 0;
	transition: 0.4s ease-in-out;
	z-index: -1;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:hover::after,
.wp-block-button__link.add_to_cart_button:hover::after,
.wc-block-components-button.wp-element-button.wc-block-cart__submit-button:hover::after,
.wc-block-components-button.wp-element-button.wc-block-components-totals-coupon__button.contained:hover::after,
.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained:hover::after {
	width: 100%;
	left: 0;
	right: auto;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt.disabled {
	display: inline-block;
	font-family: var(--saira-font);
	font-size: 17px;
	font-weight: 500;
	line-height: 1.2em;
	color: var(--white-color);
	background: var(--yellow-color);
	border-radius: 0;
	padding: 18px 20px 18px 20px;
	border: none;
	transition: 0.5s ease-in-out;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt.disabled:hover {
	background: transparent;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt::after,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt.disabled::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: auto;
	right: 0;
	bottom: 0;
	width: 0;
	height: 106%;
	background: var(--blue-color);
	border-radius: 0;
	transition: 0.4s ease-in-out;
	z-index: -1;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:hover::after,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt.disabled:hover::after {
	width: 100%;
	left: 0;
	right: auto;
}

/* Modale Aggiunta al carrello */
/* cart-offcanvas.css */
.cart-offcanvas {
	position: fixed;
	inset: 0;
	z-index: 9999;
	visibility: hidden;
	opacity: 0;
	transition: all 0.3s ease;
}

.cart-offcanvas.active {
	/* display: block; */
	visibility: visible;
	opacity: 1;
}

.cart-offcanvas-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
}

.cart-offcanvas-header,
.woocommerce-mini-cart.cart_list.product_list_widget,
.woocommerce_bottom-content,
.woocommerce-mini-cart__empty-message {
	padding: 20px 15px;
}

.cart-offcanvas-content {
	position: absolute;
	top: 0;
	right: 0;
	width: 400px;
	max-width: 100%;
	height: 100%;
	background: #fff;
	transform: translateX(100%);
	transition: all 0.3s ease;
	/* overflow-y: auto; */
}

.cart-offcanvas-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
}

.cart-offcanvas-body {
	height: calc(100% - 69px);
	overflow: hidden;
	position: relative;
}

.widget_shopping_cart_content,
.cart-offcanvas-inner {
	height: 100%;
}

.widget_shopping_cart_content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	/* margin: 30px 0; */
}

.cart-offcanvas-inner ul {
	list-style: none;
	padding: 0;
}

.woocommerce-mini-cart-item a:last-of-type {
	display: flex;
	align-items: center;
	gap: 15px;
}

.cart-offcanvas-inner img {
	width: auto;
	height: 90px;
}

.woocommerce_bottom-content .woocommerce-mini-cart__buttons.buttons,
.woocommerce_bottom-content .woocommerce-mini-cart__total.total {
	display: flex;
	justify-content: space-between;
	gap: 15px;
}



.woocommerce_bottom-content p {
	margin-bottom: 0;
}

.woocommerce_bottom-content .total {
	margin-bottom: 15px;
}

.cart-offcanvas.active .cart-offcanvas-content {
	transform: translateX(0);
}

.cart-offcanvas-close {
	/* position: absolute;
	top: 10px;
	left: 15px; */
	padding: 0;
	background: none;
	border: none;
	font-size: 28px;
	cursor: pointer;
}

.my-btn-secondary .spinner {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 18px;
	height: 18px;
	margin: -9px 0 0 -9px;
	border: 2px solid var(--blue-color);
	border-top-color: transparent;
	border-radius: 50%;
	animation: spin 0.6s linear infinite;
	pointer-events: none;
	z-index: 2;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

.woocommerce-mini-cart__buttons.buttons a {
	font-size: 14px;
	font-weight: 500;
	padding: 16px 56px 16px 18px;
	align-self: self-end;
}

.woocommerce-mini-cart-item.mini_cart_item {
	position: relative;
}

.remove.remove_from_cart_button {
	position: absolute;
	background: var(--yellow-color);
	width: 20px;
	height: 20px;
	text-align: center;
	vertical-align: middle;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	color: var(--white-color);
}

.cart-offcanvas .product-name {
	display: flex;
	flex-direction: column;
}

.cart-offcanvas .product-name p {
	margin-bottom: 0;
}

.cart-offcanvas .product-name .quantity {
	margin-top: 10px;
}

.cart-offcanvas .product-name .quantity {
	font-weight: 500;
}

.cart-offcanvas .product-name .amount {
	font-weight: 400;
	color: #958e09;
}

.cart-offcanvas-loader {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 10;
	display: none;
	/* sarà mostrato via JS */
	pointer-events: none;
}

.cart-offcanvas-loader .spinner-icon {
	width: 24px;
	height: 24px;
	border: 2px solid #ccc;
	border-top-color: transparent;
	border-radius: 50%;
	animation: spin 0.6s linear infinite;
	display: block;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}




/* Prodotto Singolo */
.woocommerce.single-product a,
.link-manuale a {
	transition: all 0.3s ease-in-out;
}

.woocommerce.single-product a:hover,
.link-manuale a:hover {
	color: var(--yellow-color);
}

.woocommerce-message {
	display: flex;
	align-items: center;
	gap: 10px;
	justify-content: flex-end;
	padding: 15px 20px;
}

.woocommerce-message::before {
	top: 20px;
}

.woocommerce.single-product .main-box h2:not(.accordion-header) {
	margin-bottom: 25px;
}

.woocommerce-product-details__short-description {
	margin-bottom: 25px;
}

.woocommerce div.product form.cart,
.single_variation_wrap .woocommerce-variation-add-to-cart {
	display: flex;
	align-items: stretch;
	gap: 25px;
}

.woocommerce div.product .variations_form.cart {
	flex-direction: column;
	gap: 15px;
}

.woocommerce #tipo-kit {
	padding-left: 15px;
	margin-left: 15px;
	border-radius: 0;
	background-color: var(--white-color);
	color: var(--blue-color);
	outline: none;
	border: var(--bs-border-width) solid var(--bs-border-color);
}

.woocommerce .reset_variations {
	margin-left: 15px;
}

.woocommerce table.variations label {
	width: max-content;
}

.woocommerce div.product .variations_form.cart div.quantity {
	margin: 0 0 0 0;
}

.woocommerce div.product form.cart div.quantity {
	margin: 0 0 0 -25px;
}

.woocommerce .quantity .qty {
	height: 100%;
	font-size: 18px;
	border-radius: 0;
	background-color: var(--white-color);
	color: var(--blue-color);
	outline: none;
	border: var(--bs-border-width) solid var(--bs-border-color);
}

.product_meta {
	font-size: 14px;
	text-wrap-style: balance;
}


.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	margin: 0 25px 25px 0;
}

h2.download-cat:not(:first-of-type) {
	margin-top: 25px;
}

.woocommerce .product-faq-section {
	margin-top: 40px;
	padding-top: 40px;
	border-top: 1px solid var(--light-divider-color);
}

.woocommerce.single-product .related.products {
	margin-top: 40px;
	padding-top: 40px;
	border-top: 1px solid var(--light-divider-color);
}


/*
*
*
* ARCHIVIO PRODOTTI CUSTOM
*
*
*/
.card-product_custom {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.card-product_custom img {
	object-fit: cover;
	padding-bottom: 0;
	z-index: -1;
}


/*
*
*
* PRODOTTI CUSTOM
*
*
*/
.single-custom_products .upper_content {
	display: flex;
	flex-direction: row;
}

.single-custom_products .files-con .categories-box {
	height: auto;
	margin-top: 25px;
}

.product-downloads-list {
	display: flex;
	flex-direction: column;
	row-gap: 15px;
}

.product-downloads-list i {
	margin-right: 5px;
}

.product-downloads-list.link-manuale a {
	text-transform: capitalize;
}


/*
* 
* 
* MEDIA QUERY
* 
* */
@media only screen and (max-width: 1440px) {
	#sede .odometer {
		font-size: 50px;
	}
}


@media only screen and (max-width: 1280px) {
	.hero.hero-slider-layout .hero-pagination {
		padding-left: 15px;
	}

	.news-box-title div {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
	}
}

@media only screen and (max-width: 1024px) {
	#impianti::before {
		height: 400px;
	}

	#rivolgiamo .rivolgiamo-box {
		padding: 125px 40px 0px 40px;
	}

	.project_modal .modal-dialog {
		max-width: 60%;
	}
}

@media only screen and (max-width: 992px) {

	aside.widget-area {
		margin-top: 30px;
	}

	.wp-block-columns {
		display: flex;
		flex-direction: column;
	}

	.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column {
		flex-basis: 100%;
	}

	.section-page.bg-right {
		background: var(--yellow-color);
		padding: 0 0 80px;
	}

	.section-page.bg-left {
		background: var(--yellow-color);
		padding: 80px 0 0;
	}

	.bg-yellow {
		background: var(--yellow-color);
		padding: 0 !important;
	}

	#sede .sede-box-img {
		margin: 0;
	}

	.bg-right_content,
	.bg-left_content {
		padding: 25px 15px 0px 15px;
	}

	.bg-left_content {
		padding-top: 0;
		padding-bottom: 25px;
	}

	.reveal,
	.reveal-right {
		display: block;
	}

	#page_produzione :where(figure.wp-block-embed, figure.wp-block-embed>div, .wp-block-embed iframe) {
		height: 450px;
	}

	.section-page {
		padding: 90px 0;
	}

	.section-title h2 {
		font-size: 36px;
	}

	#navbarMain {
		justify-content: space-between;
		align-items: flex-end;
	}

	.menu-main {
		display: none;
	}

	.wrapper-menu-mobile {
		display: flex;
		flex: 1;
		justify-content: flex-end;
		align-items: center;
	}

	.icon-mobile-service {
		flex: 1;
		justify-content: center;
	}

	.icon-mobile-service .gap-10 {
		gap: 10px;
	}

	.header-service {
		display: none;
	}

	.scroll-content span {
		font-size: 200px;
	}


	header .responsive-menu,
	header .navbar-toggle {
		display: block;
	}

	.about-image img {
		aspect-ratio: 1 / 0.74;
	}

	.impianti-title .btn-brochure {
		margin-top: 15px;
		text-align: start;
	}

	.impianti-image img {
		aspect-ratio: 1 / 0.97;
	}

	#rivolgiamo {
		background: var(--yellow-color);
		padding: 0px 0 0;
	}

	#rivolgiamo .container-fluid {
		padding: 0;
	}

	#rivolgiamo .row>* {
		padding-right: 0;
		padding-left: 0;
	}

	#rivolgiamo .rivolgiamo-box {
		padding: 50px 40px 50px 40px;
	}

	#rivolgiamo .rivolgiamo-image {
		margin-top: 0;
		width: 100%;
	}

	#rivolgiamo .rivolgiamo-image img {
		width: 100%;
		height: auto;
		aspect-ratio: 1 / 0.81;
	}

	.news-home_column:not(:last-child) {
		margin-bottom: 15px;
	}

	#news .news-image {
		width: 100%;
	}

	#news .news-image img {
		width: 100%;
	}

	.logo-marchio {
		justify-content: flex-start;
	}

	#call-to-action .call-to-action-content {
		justify-content: space-between;
	}

	#menu-menu-footer,
	#menu-menu-footer-en,
	#menu-menu-footer-fr {
		margin-bottom: 30px;
	}

	footer .footer-privacy-policy {
		margin-top: 15px;
	}

	footer .footer-privacy-policy ul {
		justify-content: flex-start;
	}

	footer .section-newsletter .form-news {
		margin-top: 20px;
	}

	footer .legals {
		margin-bottom: 100px;
	}

	.section-cta-content .btn-contact {
		margin-top: 25px;
		text-align: start;
	}
}


@media only screen and (max-width: 768px) {
	p {
		font-size: 16px;
	}

	.sub_banner_con .sub_banner_content h1 {
		font-size: 62px;
	}

	.section-title h2 {
		font-size: 28px;
	}

	.scroll-content span {
		font-size: 160px;
	}

	.row .col-lg-4:nth-of-type(2) .box-reveal {
		margin: 15px 0;
	}

	.box-reveal {
		height: auto !important;
	}

	.eyelet {
		font-size: 12px;
		text-wrap-style: balance;
	}

	.eyelet::before {
		width: 34px;
	}

	.hero-content .section-title h1 {
		font-size: 32px;
		text-wrap-style: balance;
		white-space: wrap;
	}

	.hero-content .section-title p {
		font-size: 16px;
	}

	.hero.hero-slider-layout .hero-pagination {
		bottom: 100px;
	}

	#about .about-title h2 {
		font-size: 36px;
	}

	#rivolgiamo .rivolgiamo-box {
		padding: 50px 40px 50px 40px;
	}

	#rivolgiamo .rivolgiamo-box .rivolgiamo-content .rivolgiamo-item {
		width: 100%;
	}

	#rivolgiamo .rivolgiamo-box .rivolgiamo-content {
		flex-direction: column;
	}

	.swiper-horizontal>.swiper-pagination-progressbar,
	.swiper-pagination-progressbar.swiper-pagination-horizontal {
		top: auto;
		bottom: 0;
	}

	#news-home .news-item {
		height: auto;
	}

	#news-home .news-item .news-image img {
		height: auto;
	}

	.map-pin {
		width: 15px;
		height: 15px;
	}

	.project_modal .modal-dialog {
		max-width: 80%;
	}

	.shop-header {
		flex-direction: column;
		align-items: flex-start;
	}

	.shop-ordering {
		width: 100%;
		margin-top: 1rem;
	}

	footer .section-newsletter .upper_portion {
		flex-direction: column;
		gap: 20px;
	}

	footer .section-newsletter .upper_portion h4 {
		padding-left: 0;
	}

	.form-news {
		display: flex;
		flex: 1;
		flex-direction: column;
		align-items: center;
		width: 100%;
		gap: 20px;
	}

	footer .section-newsletter .upper_portion form {
		width: 100%;
	}

	footer .legals .row:first-child {
		row-gap: 15px;
	}

	footer .legals .logo-bando img {
		max-height: 60px;
	}

	footer .legals p {
		font-size: 12px;
	}
}

@media only screen and (max-width: 610px) {
	footer .footer-privacy-policy ul {
		flex-direction: column;
		gap: 10px;
		align-items: flex-start;
	}

	footer .footer-privacy-policy li {
		padding: 0;
		text-align: center;
	}

	footer .footer-privacy-policy li::before {
		display: none;
	}
}

@media only screen and (max-width: 600px) {
	.sub_banner_con .sub_banner_content h1 {
		font-size: 54px;
	}

	.sub_banner_con .sub_banner_content .box {
		gap: 2px;
		flex-wrap: wrap;
		justify-content: center;
	}

	.sub_banner_con .sub_banner_content .box :where(a, span) {
		font-size: 14px;
	}

	.section-title h1 {
		font-size: 36px;
	}

	.section-title h2 {
		font-size: 24px;
	}

	.section-page {
		padding: 75px 0;
	}

	.project_modal .modal-dialog {
		max-width: 90%;
	}

	.project_modal .modal-body {
		padding: 0;
	}

	.project_modal .modal-content .project_content {
		padding: 20px 10px;
	}

	.modal-body h4 {
		font-size: 20px !important;
	}

	.project_modal .modal button {
		width: 40px;
		height: 40px;
	}

	.project_modal .modal-content .contact_content .form-group {
		width: 100%;
	}

	.project_modal .modal-content .contact_content .form-group.float-left {
		float: none;
	}

	.project_modal .modal-content .contact_content .form-group.float-left.input1 {
		margin-right: 0;
	}

	.project_modal .modal-content .contact_content .form-group.float-left.input2 {
		margin-left: 0;
	}

	.project_modal .modal-content .contact_content .form-group input.form_style {
		padding: 12px;
		height: 45px;
	}

	#sede .sede-box-content {
		padding: 75px 15px 0px 15px;
	}

	#call-to-action .call-to-action-box {
		padding: 20px;
	}

	.text-size-14 {
		font-size: 12px;
	}

	.project_modal .modal-content .project_content .submit_now {
		width: 100%;
	}

	#section-cta .section-cta-box {
		padding: 30px;
	}

	#section-cta .section-cta-content h2 {
		font-size: 25px;
	}

	.section-cta-content p {
		font-size: 14px;
	}

	.contatti-item {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
	}

}


@media only screen and (max-width: 450px) {
	.sub_banner_con .sub_banner_content h1 {
		font-size: 46px;
	}

	.hero-content-body .my-btn.btn-border {
		margin-left: 0;
	}

	.blog-posts .main-box .button-portion {
		flex-direction: column;
		gap: 15px;
		align-items: flex-start;
	}

	.blog-posts .main-box .lower-portion {
		margin-top: 20px;
	}

	#contatti .contatti-form-box {
		padding: 20px;
	}
}

.return-block-add {
	font-size: 14px;
}
.return-block-remove {
	font-size: 14px;
	position: absolute;
	top: 0;
	right: 0;
	display: none !important;
	padding: 2px 10px 0;
	border-radius: 4px;
	border: 1px solid rgb(112, 112, 112);
}
.info-modello:last-of-type .return-block-remove {
	display: inline-block !important;
}
#return-block_1 .return-block-remove {
	display: none !important;
}
