:root {
    --font: 'Roboto', sans-serif;
    --red: #d11317;
    /* --darkgrey: #212121; */
    --darkgrey: #2f3d4a;
    --grey: #58585a;
    --lightgrey: #e5e5e5;
    /* --lightgrey: #21212; */
    --textcolor_dark: #1d1d1b;
    --textcolor_light: #dbdbdb;
}

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,400&display=swap');

* {
	white-space: normal;
    word-wrap: break-word;
    vertical-align: baseline;
    font-weight: inherit;
    font-family: inherit;
    font-style: inherit;
    font-size: 100%;
    border: 0 none;
    outline: 0;
    padding: 0;
    margin: 0;
}

body, html {
    font-family: var(--font);
    position: relative;
    padding-left: 70px;
    color: var(--textcolor_dark);
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, .header, hgroup, menu, nav, section, summary, time, mark, audio, video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent; }
article,aside,details,figcaption,figure, footer,.header,hgroup,menu,nav,section{display:block;}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
	font-weight: normal;
}

input, button, textarea, select, optgroup, option {
	font-family: inherit;
	font-size: inherit;
	font-style: inherit;
	font-weight: inherit;
	outline-style: none;
    box-shadow: none;
}

/*@purpose To enable resizing for IE */
/*@branch For IE6-Win, IE7-Win */
input, button, textarea, select {
	*font-size: 100%;
}

strong{font-weight:bold;}

button:focus {
    outline: none !important;
}

img { max-width: 100%; }

a {
    color: inherit;
}

a:hover {
	color: var(--red);
    text-decoration: none;
}

h1 {
	font-size: 65px;
}

.h1 {
    font-size: 8vw;
    line-height: 7vw;
}

h2 {
	font-size: 68px;
}

h3, .h3 {
	font-size: 42px;
}

h4, h4 > a, .h4 {
	font-size: 34px;
}

h5 {
    font-size: 26px;
}

/* ----------------------------------------------------------------------------- */
/* ------------------             CLASSI COSTANTI             ------------------ */
/* ----------------------------------------------------------------------------- */

/* h3, .h3 {
    font-size: 32px !important;
} */

@media(max-width: 1024px){
    h1 {
        font-size: 54px;
    }

	h3, .h3 {
		font-size: 32px;
	}

    h4, h4 > a, .h4 {
        font-size: 26px;
    }
}

@media(max-width: 767px){
	h2 {
    	font-size: 36px;
	}

    h4, h4 > a {
        font-size: 24px;
    }
}

@media(max-width: 576px){

	h1 {
        font-size: 36px;
    }

    .h1 {
        font-size: 40px;
    }
    
    h5 {
        font-size: 22px;
    }

    /* .h3 {
        font-size: 26px !important;
    } */

    h2 {
    	font-size: 34px;
	}

    h3, .h3 {
    	font-size: 28px !important;
	}
}

@media(max-width: 480px){
	/* h2 {
    	font-size: 24px;
	} */

    .h3 {
        font-size: 22px !important;
    }
}

.nowrap-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.uppercase { text-transform: uppercase; }

a:not([href]):not([tabindex]):focus, a:not([href]):not([tabindex]):hover {
    color: var(--red);
    text-decoration: none;
}

.relative {
	position: relative;
}

.background-black { background-color: var(--darkgrey) !important; }
.background-grey { background-color: var(--lightgrey) !important; }
.background-darkgrey { background-color: var(--grey) !important; }
.background-white { background-color: #fff !important; }
.background-red { background-color: var(--red) !important; }

.color-white { color: var(--textcolor_light) !important; }
.color-dark { color: var(--textcolor_dark) !important; }
.color-grey { color: var(--grey)  !important; }
.color-red { color: var(--red)  !important; }

.small, .small a {
    font-size: 12px !important;
    font-weight: 400;
}

.underline { text-decoration: underline !important; }
.d-hide {
    display: none !important;
}

.background-cover-center {
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.background-cover-top {
	background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.background-cover-right {
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.background-image--square {
    display: inline-block;
    background-size: cover;
    width: 100%;
    background-position: center;
    position: relative;
    padding-top: 100%;
}

.image-square {
	width: 100%;
	position: relative;
	overflow: hidden;
    height: 0;
    padding-bottom: 100%;
}

.image-squareCol {
    width: 100%;
	position: relative;
	overflow: hidden;
}

/* .image-square:after {
	content: "";
  	display: block;
  	padding-bottom: 100%;
} */

.image-square > img {
	position: absolute;
	top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.ratio_box {
	padding-top: 56.25%;
    position: relative;
}

.swiper {
    width: 100%;
    height: 100%;
}

/* .swiper-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
} */

.gallery-top {
    height: 80%;
    width: 100%;
}

.gallery-thumbs {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
}

.gallery-thumbs .swiper-slide {
    width: 20%;
    height: 100%;
    opacity: 0.7;
}

.gallery-thumbs .swiper-slide-active {
    opacity: 1;
}

/* mie colonne */

[class*="custom-col--"]{
    margin: 0.5%;
    flex: 0 0 0;
}

.custom-col--3 {
    flex-basis: 32.333333%;
    -moz-flex-basis: 32.333333%;
    -ms-flex-basis: 32.333333%;
    min-width: 32.333333%;
}

.custom-col--2 {
    flex-basis: 49%;
    -moz-flex-basis: 49%;
    -ms-flex-basis: 49%;
    min-width: 49%;
}


.custom-col--4 {
    flex-basis: 24%;
    -moz-flex-basis: 24%;
    -ms-flex-basis: 24%;
    min-width: 24%;
}

.custom-col--5 {
    flex-basis: 19%;
    -moz-flex-basis: 19%;
    -ms-flex-basis: 19%;
    min-width: 19%;
}

.custom-col--auto {
    flex:1;
    min-width: 32.333333%;
}

.no_paddings {
    padding: 0px;
}

@media(max-width: 1024px){

    .custom-col--4, .custom-col--5 {
        flex-basis: 32.33333%;
        -moz-flex-basis: 32.33333%;
        -ms-flex-basis: 32.33333%;
        min-width: 32.33333%;
    }
}

@media(max-width: 768px){

    .custom-col--3, .custom-col--4, .custom-col--5 {
        flex-basis: 49%;
        -moz-flex-basis: 49%;
        -ms-flex-basis: 49%;
        min-width: 49%;
    }
}

@media(max-width: 578px){

    .custom-col--2, .custom-col--3, .custom-col--4, .custom-col--5 {
        flex-basis: 99%;
        -moz-flex-basis: 99%;
        -ms-flex-basis: 99%;
        min-width: 99%;
    }

	.table td {
	    font-size: 14px;
	}
}

.bold {
    font-weight: bolder !important;
}

.light {
	font-weight: 100;
}

.medium {
	font-weight: 500;
}

.semibold {
    font-weight: 600;
}

.italic, em {
	font-style: italic;
}

.overflow {
    overflow: hidden;
}

.wrapperVideo {
    display: inline-block;
    padding: 0;
    margin: 0;
    width: 100%;
    padding-top: 56.25%;
    height: 0px;
    position: relative;
    margin-bottom: -6px;
}

.wrapperVideo > iframe, .wrapperVideo > video {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
}

.thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.fancybox-overlay {
    background-color: rgba(0,0,0,0.7);
}

.fancybox-skin {
    background: transparent !important;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    padding: 0px !important;
}

/* clear fix */

.grid:after {
  content: '';
  display: block;
  clear: both;
}

/* ui group */

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

/* ----------------------------------------------------------------------------- */
/* ------------------                 MODAL POPUP             ------------------ */
/* ----------------------------------------------------------------------------- */

/*top*/

.modal.top {
    padding-right: 0 !important;
}

.modal-top {
    max-width: 100%;
    margin: 0px auto;
    border: 0px;
    border-radius: 0px;
    padding: 0;
    width: 100%;
}

.top .modal-content {
    border-radius: 0px;
}

.modal.left .modal-dialog,
.modal.right .modal-dialog {
	position: fixed;
	margin: auto;
	width: 320px;
	height: 100%;
	-webkit-transform: translate3d(0%, 0, 0);
	-ms-transform: translate3d(0%, 0, 0);
	-o-transform: translate3d(0%, 0, 0);
	transform: translate3d(0%, 0, 0);
}

.modal.left .modal-content,
.modal.right .modal-content {
	height: 100%;
	overflow-y: auto;
}
	
.modal.left .modal-body,
.modal.right .modal-body {
	padding: 15px 15px 80px;
}

/*Left*/

.modal.left.fade .modal-dialog{
	left: -320px;
	-webkit-transition: opacity 0.3s linear, left 0.3s ease-out;
	   -moz-transition: opacity 0.3s linear, left 0.3s ease-out;
	     -o-transition: opacity 0.3s linear, left 0.3s ease-out;
	        transition: opacity 0.3s linear, left 0.3s ease-out;
}

.modal.left.fade.show .modal-dialog{
	left: 0;
}
        
/*Right*/

.modal.right.fade .modal-dialog {
	right: -320px;
	-webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
	   -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
	     -o-transition: opacity 0.3s linear, right 0.3s ease-out;
	        transition: opacity 0.3s linear, right 0.3s ease-out;
}

.modal.right.fade.show .modal-dialog {
	right: 0;
}

/* ----------------------------------------------------------------------------- */
/* ------------------        CLASSI BOOTSTRAP MODIFICATE      ------------------ */
/* ----------------------------------------------------------------------------- */

/*
xs: 0,
sm: 576px,
md: 768px,
lg: 992px,
xl: 1200px
*/

.btn,
.dropdown-menu, 
.no__border-radius {
    border-radius: 0px !important;
    -webkit-appearance: none;
}

textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {   
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 0px 0px rgba(0, 0, 0, 0) inset, 0 0 8px rgba(255, 255, 255, 0.1);
  outline: 0 none;
}

.btn.focus, .btn:focus {
    outline: 0;
    box-shadow: 0 0 0 0 rgba(255,255,255,0) !important;
}

button {
    background-color: transparent;
}

.btn-scroll, .pointer {
	cursor: pointer;
}

a:not([href]) {
    /*color: inherit !important;*/
    text-decoration: none;
    cursor: pointer;
}

.btn-plus {
    position: relative;
    padding-left: 50px;
    display: flex;
    font-weight: 300;
    letter-spacing: 0.01em;
    color: var(--textcolor_dark);
    display: flex;
    height: 40px;
    align-items: center;
}

.btn-plus.light {
    color: #ffffff !important;
}

.btn-plus.light:before {
    background-color: #c3c3c3;
    color: var(--darkgrey);
}

.btn-plus:before {
    content: "+";
    position: absolute;
    background-color: var(--darkgrey);
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    text-align: center;
    line-height: 38px;
    font-weight: 500;
    font-size: 22px;
    top: 0;
    bottom: 0;
    left: 0;
    transition: all 200ms linear;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
}

.btn-plus:hover {
    color: inherit !important;
}

.btn-plus:hover:before {
    transform: rotate(90deg);
    transform-origin: center;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transition: all 200ms linear;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
}

.btn-download {
    background-color: var(--grey);
    padding: 15px 20px 15px 45px;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    display: inline-block;
    position: relative;
}

.btn-download:before {
    content: "";
    /*position: absolute;
    */background-image: url('../images/arrow-simple.svg');
    background-size: contain;
    position: absolute;
    top: 0;
    width: 15px;
    height: 15px;
    background-repeat: no-repeat;
    background-position: center;
    filter: invert(1);
    bottom: 0;
    margin: auto;
    left: 20px;
    -webkit-filter: invert(1);
    transition: all 200ms linear;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
}

.btn-download:hover {
    background-color: var(--darkgrey);
    color: #fff !important;
}

.btn-search {
    position: relative;
    padding-left: 50px;
    display: flex;
    font-weight: 300;
    letter-spacing: 0.01em;
    color: #fff;
    display: flex;
    height: 40px;
    align-items: center;
}

.btn-search.grey {
    color: var(--textcolor_dark);
}

.btn-search.grey:before {
    background-color: var(--grey);
}

.btn-search:before {
    content: "";
    background-image: url('../images/icona_search.svg');
    background-size: 22px;
    position: absolute;
    top: 0;
    background-repeat: no-repeat;
    background-position: center;
    bottom: 0;
    margin: auto;
    left: 0px;
    background-color: var(--red);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    font-weight: 500;
    font-size: 22px;
    transition: all 200ms linear;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
}

.btn-video {
    position: relative;
    padding-left: 50px;
    display: flex;
    font-weight: 300;
    letter-spacing: 0.01em;
    color: var(--textcolor_dark);
    display: flex;
    height: 40px;
    align-items: center;
}

.btn-video:before {
    content: "";
    background-image: url('../images/icona_video.svg');
    background-size: 15px;
    position: absolute;
    top: 0;
    background-repeat: no-repeat;
    background-position: 13px center;
    bottom: 0;
    margin: auto;
    left: 0px;
    background-color: var(--darkgrey);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    font-weight: 500;
    font-size: 22px;
    transition: all 200ms linear;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
}

/* .btn-search:hover {
    color: inherit !important;
}

.btn-search:hover:before {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transition: all 200ms linear;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
} */

@media(max-width:1024px){
    .btn-plus,
    .btn-search,
    .btn-video {
        height: 28px;
        padding-left: 37px;
    }

    .btn-plus:before {
        width: 28px;
        height: 28px;
        line-height: 28px;
        font-size: 18px;
    }

    .btn-search:before {
        width: 28px;
        height: 28px;
        line-height: 28px;
        background-size: 16px;
    }

    .btn-search:before, .btn-video:before {
        width: 28px;
        height: 28px;
        line-height: 28px;
        background-size: 13px;
        background-position: 10px center;
    }

}

@media(max-width:576px){
    .btn-download {
        font-size: 14px;
        padding: 10px 15px 10px 45px;
    }
}

/* ----------------------------------------------------------------------------- */
/* ------------------                CLASSI FORM              ------------------ */
/* ----------------------------------------------------------------------------- */

.wpcf7-form {
    -ms-flex-wrap: wrap!important;
    flex-wrap: wrap!important;
    display: -ms-flexbox!important;
    display: flex!important;
}

header .dropdownLeft .listaNav .information-form form {
    transform: translate(-15px, 0px);
    -webkit-transform: translate(-15px, 0px);
    -moz-transform: translate(-15px, 0px);
    -ms-transform: translate(-15px, 0px);
    -o-transform: translate(-15px, 0px);
}

.wpcf7-form label {
    margin-top: 20px;
    margin-bottom: 5px;
    text-align: left;
    display: inline-block;
    width: 100%;
    color: var(--grey);
    font-size: 14px;
}

.wpcf7-form input {
    box-shadow: none;
    border-radius: 0;
    background: none !important;
    border-radius: 0px;
    /* padding: 10px !important; */
    color: var(--grey);
    height: 50px;
    margin-bottom: 15px;
    width: 100%;
    border-bottom: 1px solid var(--grey);
    font-weight: normal;
    font-size: 14px;
}

.wpcf7-form input[type="file"] {
    border: 0px solid var(--grey);
    padding: 0px 0px;
    margin: 5px 0px;
}

.wpcf7-form textarea {
    width: 100%;
    background-color: transparent;
    border: 1px solid var(--grey);
    height: 120px;
    /*color: #14233a;*/
    padding: 10px;
    margin: 5px 0px;
    border-radius: 0 !important;
    resize: none;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--grey);
}

.wpcf7-form select {
    width: 100%;
    background-color: transparent;
    border: 1px solid var(--grey);
    height: 50px;
    /*color: #14233a;*/
    padding: 0px 10px;
    /*background: rgba(0,0,0,1);*/
    -webkit-appearance:none;
    font-size: 14px;
    color: var(--grey);

}

.wpcf7-form .col-check {
    margin-top: 30px;
}

.wpcf7-form .col-check .wpcf7-list-item label {
    margin-top: 0px;
    margin-bottom: 0px;
}

::-webkit-input-placeholder { /* Edge */
  color: var(--grey);
  font-family: var(--font);
}


::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: var(--grey);
    font-family: var(--font);
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: var(--grey);
    font-family: var(--font);
    opacity: 1;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: var(--grey);
    font-family: var(--font);
    opacity: 1;
}

.codedropz-upload-handler {
    border: 2px dashed var(--grey);
    border-radius: 5px;
    margin-bottom: 10px;
    position: relative;
    color: var(--grey);
}

.dragdrop label {
    text-transform: uppercase;
    margin: 5px 0 5px;
    font-size: 14px;
    color: var(--grey);
}

.codedropz-upload-inner h3 {
    margin: 7px 0;
    font-size: 24px;
    line-height: 24px;
    word-break: break-word;
}

.wpcf7-form .check {
    margin: 10px 0px;
    text-align: left;
}

.wpcf7-list-item {
    display: inline-block;
    margin: 0px !important;
}

.wpcf7-form .check label {
    margin-top: 5px;
    margin-bottom: 5px;
}

.wpcf7-form input[type="checkbox"], .woocommerce-form input[type="checkbox"] {
    width: 15px;
    height: 15px;
    margin: 0px 10px 0px 0px;
    /* flex: 0 0 13px; */
    /* -webkit-appearance: none; */
    border: 1px solid;
    padding: 0;
}

.wpcf7-acceptance .wpcf7-list-item-label {
    font-size: 12px;
    font-weight: 400;
    text-transform: none;
}

.wpcf7-acceptance .wpcf7-list-item-label a {
    font-size: 12px;
    font-weight: 400;
    text-decoration: underline;
}

.wpcf7-form input[type="submit"] {
    text-align: center;
    padding: 10px 30px;
    font-size: 18px;
    text-transform: uppercase;
    position: relative;
    display: block;
    z-index: 10;
    transition: all 100ms linear;
    max-width: 100%;
    border:0px;
    border-radius: 0px !important;
    color: #fff;
    background-color: var(--red) !important;
    margin: 40px auto 0px;
    height: auto;
}

.wpcf7-form input[type="submit"]:hover {
    color: #fff;
    background-color: #a0bcc0;
    text-decoration: none;
}

.wpcf7-form .wpcf7-not-valid-tip {
    font-size: 12px;
    display: grid;
    position: absolute;
    width: 100%;
    right: 0;
    text-align: right;
}

.wpcf7 form .wpcf7-response-output {
    margin: 0px 0px 35px;
    padding: 0.2em 1em;
    border: 0;
    text-align: center;
    width: 100%;
}

.wpcf7 form.sent .wpcf7-response-output {
    color: #237ae4;
    font-weight: 500;
}

.wpcf7-form .btn-group-submit {
    border: 1px solid #222222;
        width: 200px;
    margin: auto;
}

#success_nl {
    font-size: 20px;
    text-align: center;
}

@media(max-width: 567px){
    .wpcf7-form label {
        font-size: 13px;
    }
}


/* ----------------------------------------------------------------------------- */
/* ------------------             CLASSI VARIABILI            ------------------ */
/* ----------------------------------------------------------------------------- */

body > * {
	
}

.font-text--primary, p, a, li {
	font-size: 16px;	
    /* font-weight: 300; */
}

.fz14 {
	font-size: 14px;	
}

.fz20, .fz20 > p {
    font-size: 20px;
}

.fz24 {
    font-size: 24px;
}

.fz18, .fz18 > p, .fz18 > a {
    font-size: 18px;
}

.h2 {
	font-size: 32px;
}

.fz30 {
	font-size: 26px;
}

.fz40 {
	font-size: 40px;
}

.fz14 {
    font-size: 14px !important;
}

button, .whatsapp_btn {
	cursor: pointer;
}

@media(max-width: 1024px){
    .h2 {
        font-size: 42px;
    }
}

@media(max-width: 567px){
    .fz20, .fz20 > p {
        font-size: 18px;
    }
    
	.fz18, .fz18 > p {
    	font-size: 16px;
	}
	
	.font-text--primary, p, a, li {
    	font-size: 14px;
	}

	.fz40 {
    	font-size: 26px;
	}

    .h2 {
        font-size: 30px;
    }
}

@media(max-width: 420px){
    .fz40 {
        font-size: 24px;
    }

    .h2 {
        font-size: 23px;
    }
}

.overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0,0,0,.5);
}

.overlay-before:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0,0,0,.5);
    z-index: 10;
}

.zIndex10 {
    position: relative;
    z-index: 100;
}

@media(max-width: 767px){
	.fz24 {
    	font-size: 20px;
	}
}

@media(max-width: 567px){
	.fz24 {
    	font-size: 18px;
	}
}

.container-custom {
    position: relative;
    width: 92%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
}

@media(max-width:680px){
    .container-custom {
        width: 100%;
    }
}

/* header.positionStart {
    background: var(--darkgrey);
} */

header {
    color: #fff;
    position: fixed;
    width: 100%;
    top: 0px;
    z-index: 9999;
}

header a.navbar-brand {
    position: absolute;
    z-index: 99999;
    left: 4%;
    top: 5px;
}

header.positionStart a.navbar-brand img {
    margin-left: 15px;
    width: 140px;
    transition: all 100ms linear;
    -webkit-transition: all 100ms linear;
    -moz-transition: all 100ms linear;
    -ms-transition: all 100ms linear;
    -o-transition: all 100ms linear;
}

header a.navbar-brand img {
    width: 90px;
    transition: all 100ms linear;
    -webkit-transition: all 100ms linear;
    -moz-transition: all 100ms linear;
    -ms-transition: all 100ms linear;
    -o-transition: all 100ms linear;
}

header .navbar {
    padding: 0px;
}

header .subNav {
    background-color: #000000;
    width: 100%;
    /* height: 50px; */
}

header .content {
    width: 92%;
    margin: auto;
}

header .subNav .boxitem {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 0px 50px;
}

header .subNav  .searchstore_btn {
    display: -ms-flexbox!important;
    display: flex!important;
    -ms-flex-align: center!important;
    align-items: center!important;
    cursor: pointer;
}

header .subNav  .searchstore_btn button {
    color: #fff;
}

header .subNav .boxitem a {
    font-size: 13px;
    padding-left: 5px;
    padding-right: 5px;
    font-weight: 500;
}

header .subNav  .searchstore_btn {
    padding-left: 5px;
    padding-right: 60px;
}

header .subNav .boxitem p {
    font-size: 13px;
    padding-left: 15px;
    padding-right: 15px;
    font-weight: 500;
}

header .subNav .boxitem p:hover {
    color: var(--red);
}

#inputcerca_nav {
    display: none;
    width: 100%;
    background-color: rgba(47,61,74,1);
    position: fixed;
    left: 0;
    z-index: 9999;
    margin: 0 !important;
    top: 0px;
    height: 100%;
    background-image: url('../images/slideHome--dec.svg');
    background-position: left center;
    background-size: contain;
    background-repeat: no-repeat;
}

#inputcerca_nav #inputcerca_nav_form {
    width: 60%;
    margin: 20px auto;
}

#inputcerca_nav .search-nav {
    width: 100%;
    display: block;
    height: 90px;
    padding: 15px 15px 15px 60px;
    max-width: 100%;
    border: 0px solid #ccc;
    border-radius: 0px !important;
    color: var(--textcolor_dark);
    font-size: 20px;
}

#inputcerca_nav .close_cerca_nav {
    position: absolute;
    top: 40px;
    right: 40px;
    filter: invert(1);
}

header .subNav > .d-flex {
    height: 40px;
}

header #navOpen {
    width: 100%;
    height: 60px;
}

header:not(.positionStart) #navOpen {
    background-color: var(--darkgrey);
} 

header .navbarcontent .nav-item a,
header .navbarcontent .nav-item button {
    /* color: #fff; */
    padding-left: 30px !important;
    padding-right: 30px !important;
    font-weight: 500;
    display: -ms-flexbox!important;
    display: flex!important;
    -ms-flex-align: center!important;
    align-items: center!important;
    height: 100%;
    white-space: nowrap;
    justify-content: center;
}


header .navbarcontent .nav-item a:hover {
    background-color: var(--red);
    color: #fff;
}

header .navbarcontent .nav-item.background-red a:hover {
    background-color: #fff;
    color: var(--red) !important;
}

/* header:not(.positionStart) .navbarcontent .nav-item a {
    color: var(--textcolor_dark);
} */

header .navbarcontent .nav-item a.white {
    color: #fff !important;
}

header .navbarcontent .nav-item a.active {
    background-color: #c3c3c3;
    text-decoration: underline;
}

header .dropdownLeft {
    background-color: #c3c3c3;
    position: absolute;
    top: 100%;
    right: -50%;
    width: 50%;
    height: calc(100vh - 100px);
    transition: all 500ms ease-in-out;
    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    -ms-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
}

header .dropdownLeft.open {
    right: 0%;
    transition: all 500ms ease-in-out;
    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    -ms-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
}

header .dropdownLeft .dropdownLeft--content {
    position: relative;
    height: 100%;
    overflow: hidden;
}

header .dropdownLeft .listaNav {
    padding: 60px 40px 40px;
    height: 100%;
    min-height: 100%;
    overflow-y: scroll;
}

header .dropdownLeft ul {
    max-width: 80%;
    padding-bottom: 20px;
    padding-top: 20px;
    z-index: 100;
}

header .dropdownLeft .listaNav:not([data-id="edilizia"]) ul:first-of-type {
    border-bottom: 2px solid rgba(88,88,90,0.4);
}

header .dropdownLeft .menu-item a,
header .dropdownLeft  .menu-item--text {
    font-size: 30px;
    text-transform: uppercase;
    color: var(--textcolor_dark);
    font-weight: 300;
    display: block;
    padding: 10px 30px 10px 0px;
    line-height: 32px;
}

header .dropdownLeft .menu-item a:hover {
    color: var(--red);
}

header .dropdownLeft .menu-item.show-all a {
    font-size: 18px;
    text-transform: none;
    text-decoration: underline;
    padding-bottom: 20px;
    font-weight: 400;
}

header .dropdownLeft .listaNav .imageNav {
    position: absolute;
    right: 0px;
    max-width: 40%;
    bottom: 0;
}

header .dropdownLeft .listaNav[data-id="infrastrutture"] .imageNav {
    max-width: 60%;
}

header .dropdownLeft .dropdownLeft--close {
    position: absolute;
    background-color: #c3c3c3;
    padding: 5px;
    left: 35px;
    top: 20px;
    display: flex;
    align-items: center
}

header .dropdownLeft .listaNav {
    display: none;

    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
  
header .dropdownLeft .listaNav::-webkit-scrollbar {
    display: none;
}
  
header .dropdownLeft .listaNav::-webkit-scrollbar-track {
    display: none;
}
  
header .dropdownLeft .listaNav::-webkit-scrollbar-thumb {
    display: none;
}

header .dropdownLeft .listaNav .small {
    position: relative;
    max-width: 60%;
}

header .dropdownLeft .listaNav .small .menu-item a {
    font-size: 18px !important;
    padding: 6px 30px 6px 0px;
    text-transform: none;
    font-weight: 400;
    line-height: 22px;
}

header .dropdownLeft .listaNav .information-form {
    width: 60%;
    height: 100%;
    color: var(--textcolor_dark);
}

header .dropdownLeft .listaNav .information-form h3 {
    font-size: 26px;
    margin-top: 10px;
}

header .dropdownLeft .listaNav .information-form h4 {
    font-size: 24px;
}

header .dropdownLeft .listaNav .information-contact {
    width: 40%;
    height: 100%;
    color: var(--textcolor_dark);
    padding-left: 60px;
    margin-top: 15px;
}

header .dropdownLeft .listaNav .information-contact h4 {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
}

.navbar-toggler {
    background-color: var(--red);
    border: 0px;
    border-radius: 0px;
    color: #fff;
    font-size: 14px;
    padding: 10px 30px;
    font-weight: bold;
    width: 110px;
    -ms-flex-item-align: end!important;
    align-self: flex-end!important;
    z-index: 999;
}

.navbar-toggler[aria-expanded="false"] span:after {
    content: "Menu";
    transition: all 200ms linear;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
}

.navbar-toggler[aria-expanded="true"] span[data-lang="it"]:after {
    content: "Chiudi";
    transition: all 200ms linear;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
}

.navbar-toggler[aria-expanded="true"] span[data-lang="en"]:after {
    content: "Close";
    transition: all 200ms linear;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
}

header .subNav .boxitem.lang {
    padding-left: 60px !important;
    padding-right: 60px !important;
}

.social a {
    display: flex;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid;
    padding: 2px;
    margin-right: 5px;
}

.social-white img {
    filter: invert(1);
    -webkit-filter: invert(1);
}

.paddNav {
    padding-top: 150px;
}

.single .paddNav {
    padding-top: 100px;
}

.dropdown-menu {
    /* min-width: 10rem; */
    /* padding: .5rem 0; */
    /* margin: .125rem 0 0; */
    font-size: 14px;
    color: #fff;
    text-align: center;
    background-color: var(--darkgrey);
    border: 0px;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    width: 100%;
}

@media(max-width:1200px) and (max-height: 900px){
    header.positionStart a.navbar-brand img {
        width: 100px;
    }

    .paddNav {
        padding-top: 100px;
    }

    /* .single .paddNav {
        padding-top: 60px;
    } */
}

/* dk nav */
@media(min-width:992px){
    header .subNav .boxitem.lang {
        padding-left: 60px !important;
        padding-right: 60px !important;
    }

    header .navbarcontent {
        min-width: 50%;
        /* margin-left: 50%; */
        display: -ms-flexbox!important;
        display: flex!important;
        -ms-flex-align: normal!important;
        align-items: normal!important;
        -ms-flex-pack: end!important;
        justify-content: flex-end!important;
        height: 100%;
        margin-left: auto;
    }

    /* header .navbarcontent .nav-item--fibrenet {
        border-left: 2px solid rgba(88,88,90,0.4);
    } */
    
    header .navbarcontent .nav-item {
        /* border-bottom: 2px solid rgba(88,88,90,0.4); */
        width: 100%;
    }
    
    header .navbarcontent .nav-item--fibrenet {
        border-left: 1px solid #fff;
    }
    
    header .navbarcontent .nav-item {
        border-bottom: 1px solid #fff;
    }

    header .dropdownLeft .listaNav .small:after {
        content:"";
        position: absolute;
        width: 50px;
        height: 2px;
        background-color: #58585a66;
        left: 0;
        bottom: 0;
    } 

    .listaNav--mb,
    .nav_hideDK {
        display: none !important;
    }

    header .navbar-nav {
        width: 100%;
        /* width: 100%;
        -ms-flex-pack: justify!important;
        justify-content: space-between!important; */
    }
}

@media(max-width:1200px){
    header .subNav .boxitem {
        padding: 0px 15px;
    }

    header .navbarcontent .nav-item a {
        padding-left: 25px !important;
        padding-right: 25px !important;
    }

    header .dropdownLeft {
        width: 65%;
        right: -65%;
    }

    header .dropdownLeft .listaNav .information-contact h4 {
        font-size: 16px;
    }

    header .dropdownLeft ul {
        max-width: 70%;
    }

    header .dropdownLeft .listaNav .imageNav {
        max-width: 30%;
    }

    header .dropdownLeft .menu-item a,
    header .dropdownLeft  .menu-item--text {
        font-size: 24px;
        line-height: 24px;
    }
}

@media(max-width:1024px){
    header.positionStart a.navbar-brand img {
        width: 100px;
    }
}

/* mobile nav */
@media(max-width:991px){
    .paddNav {
        padding-top: 110px;
    }

    .single .paddNav {
        padding-top: 70px;
    }

    header.positionStart .navbar-collapse {
        background-color: var(--darkgrey);
    } 

    header .navbarcontent .nav-item a.active {
        background-color: var(--grey);
    }

    .listaNav--mb {
        display: none;
        background-color: var(--grey);
        padding-bottom: 10px;
        padding-top: 10px;
    }

    .nav_hideMB,
    .dropdownLeft {
        display: none !important;
    }

    header a.navbar-brand {
        width: 100px;
        left: 15px;
    }

    header a.navbar-brand img {
        width: 50px;
    }

    /* header .subNav .boxitem {
        padding: 0px;
    } */

    header .subNav .boxitem.lang {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }

    header .subNav #inputcerca_nav {
        top: 40px;
    }

    header .subNav #inputcerca_nav .search-nav {
        width: 60%;
        font-size: 14px;
        margin-left: calc(40% - 15px);
    }

    header #navOpen {
        /* height: auto; */
        padding-top: 70px;
        padding-bottom: 70px;
        position: absolute;
        top: 40px;
        left: 0px;
        width: 100%;
        overflow-y: auto;
        overflow-x: hidden;
        height: 100vh;
        -ms-overflow-style: none;  /* IE and Edge */
        scrollbar-width: none;  /* Firefox */
    }
      
    header #navOpen::-webkit-scrollbar {
        display: none;
    }
    
    header #navOpen::-webkit-scrollbar-track {
        display: none;
    }
    
    header #navOpen::-webkit-scrollbar-thumb {
        display: none;
        }
      
    header .navbarcontent .nav-item a {
        font-size: 16px;
        padding: 10px 15px;
        color: var(--lightgrey);
        justify-content: start;
        height: auto;
        white-space: normal;
        font-weight: 600;
    }

    header .navbarcontent .listaNav--mb li a {
        font-size: 16px;
        padding: 5px 15px;
        font-weight: 400;
    }

    header .navbarcontent .nav-link.dropdown-toggle-custom:after {
        content: "+";
        position: absolute;
        right: 15px;
        transition: all 200ms linear;
        -webkit-transition: all 200ms linear;
        -moz-transition: all 200ms linear;
        -ms-transition: all 200ms linear;
        -o-transition: all 200ms linear;
    }
    
    header .navbarcontent .nav-link.dropdown-toggle-custom.active:after {
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transition: all 200ms linear;
        -webkit-transition: all 200ms linear;
        -moz-transition: all 200ms linear;
        -ms-transition: all 200ms linear;
        -o-transition: all 200ms linear;
    }

    header .navbarcontent .listaNav--mb .small {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    
    header .navbarcontent .listaNav--mb .small li a {
        font-size: 14px !important;
    }
}

footer .colFoot {
    margin-top: 40px;
    margin-bottom: 0px;
}

footer .colFoot .tit {
    font-size: 22px;
    margin-bottom: 15px;
    color: #fff;
}

footer .colFoot ul li a {
    font-size: 14px;
    font-weight: light;
}

.prefooter .logo_prefoot img {
       max-height: 140px;
       width: auto;
       max-width: 100%;
       height: auto;
}

.prefooter .logo_prefoot:not(.small) {
    display: flex;
    align-items: center;
    /* border-right: 1px solid rgba(0,0,0,.3); */
    padding-right: 15px;
    width: 33.33333%;
    flex: 0 0 33.3333%;
}

.prefooter .logo_prefoot.small img {
    margin-right: 30px;
    height: 120px;
}

/* .prefooter .logo_prefoot.small img {
    height: 100px;
} */

.prefooter .colText {
    width: 100%;
} 

.prefooter .colLoghi {
     max-width: 100%;
    width: 100%;
    flex: 0 0 auto; 

    /* display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px; */
}

@media(max-width:1024px){
    .prefooter .colText {
        max-width: 100%;
        width: 100%;
        flex: 0 0 100%;
    }

    .prefooter .colLoghi {
        max-width: 100%;
        width: 100%;
        flex: 0 0 auto;
    }
}

@media(max-width:767px){
    footer .colFoot .tit {
        font-size: 18px;
    }

    .prefooter .colText {
        padding-bottom: 10px;
        /* padding-top: 25px; */
    }
}

@media(max-width:657px){
    footer .colFoot {
        min-width: 50%;
    }
}

/* */
.slideHome {
    background-color: var(--darkgrey);
    width: 100%;
    height: calc(100vh - 40px);
    background-image: url('../images/slideHome--dec.svg');
    background-position: 30px bottom;
    background-repeat: no-repeat;
    background-size: auto 100%;
}

.slideHome .colText {
    max-width: 50%;
    width: 50%;
    flex: 0 0 50%;
    padding-left: 4%;
    padding-right: 50px;
    color: var(--textcolor_light);
}

.slideHome .colText h2 {
    font-size: 64px;
    line-height: 62px;
    font-weight: 300;
}

.slideHome .colText hr {
    border-top: 2px solid rgba(255,255,255,0.3);
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}

.slideHome .colImage {
    max-width: 45%;
    width: 45%;
    flex: 0 0 45%;
    margin-left: 5%;
}

.slideHome .colImage img {
    width: auto;
    max-height: 90vh;
}

.swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: calc(50% - 50px);
    width: 35px;
    height: 35px;
    z-index: 10;
    cursor: pointer;
    background-size: 23px 23px;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #cccccc24;
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}

@media(max-width:767px){
    .swiper-button-next, .swiper-button-prev {
        top: auto;
        bottom: 30px;
    }
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    opacity: 0;
}

@media(max-width:1200px){
    .slideHome {
        /* height: calc(100vh - 80px); */
        height: calc(100vh - 0px);
    }

    .slideHome .colText {
        max-width: 65%;
        width: 65%;
        flex: 0 0 65%;
        padding-right: 20px;
    }

    .slideHome .colImage {
        max-width: 35%;
        width: 35%;
        flex: 0 0 35%;
        margin-left: 0%;
    }

    .slideHome .colText h2 {
        font-size: 52px;
        line-height: 52px;
    }

    .slideHome .colText hr {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }
}

@media(max-width:1200px) and (max-height: 900px){
    .slideHome .colText h2 {
        font-size: 42px;
        line-height: 42px;
    }

    .slideHome .colText .fz18 {
        font-size: 16px;
    }
}

@media(max-width:1024px){
    .slideHome .colText h2 {
        font-size: 48px;
        line-height: 48px;
    }

    .slideHome .colText .fz18 {
        font-size: 16px;
    }
}

.searchoverlay-wrapper {
    z-index: 1;
    width: 60%;
    margin: auto;
}

.search-products-wrapper {
    position: relative;
    z-index: 10;
}

.search-wrapper--small {
    width: 60%;
    margin: auto;
    transform: translate(0%, -50%);
    -webkit-transform: translate(0%, -50%);
    -moz-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    -o-transform: translate(0%, -50%);
}

.search-wrapper--small a  {
    background-color: #fff;
    text-align: center;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: bold;
    padding: 20px;
}

#inputcerca_nav .logo_overlay {
    position: absolute;
    top: 10px;
    left: 4%;
}

.searchoverlay-wrapper h4 {
    color: var(--lightgrey);
    font-size: 22px;
    text-align: center;
}

.searchoverlay-wrapper p.text {
    color: var(--lightgrey);
    /* font-size: 22px; */
    text-align: center;
    margin-bottom: 30px;
}

.search-products-result {
    position: absolute;
    background: #fff;
    max-height: 200px;
    overflow-y: auto;
    width: 100%;
    z-index: 1;
}

.search-products-wrapper .search-products {
    background-color: #fff;
    /* border: 1px solid #fff; */
    padding: 15px 15px 15px 60px;
    width: 100%;
    height: 80px;
    border-radius: 0px;
    box-shadow: 0px 0px 50px -10px #000;
    font-size: 20px;
}

.search-products-result .search-products-element a {
	padding: 0;
	border-bottom: none;
    font-size: 14px;
    display: block;
}

.search-products-result .search-products-element {
	padding: 5px 15px;
	border-bottom: 1px solid #ececec;
	font-weight: bold;
}

/* .search-products-result .search-products-element:last-of-type {
    padding-top: 50px;
} */

.search-products-wrapper .tit_searchprod {
    padding: 15px;
    font-size: 16px;
    display: block;
    font-weight: bold;
}

.search-products-wrapper img, #inputcerca_nav_form img {
    position: absolute;
    left: 15px;
    filter: invert(1);
    top: 45px;
    transform: translate(0px, -50%);
    -webkit-transform: translate(0px, -50%);
    -moz-transform: translate(0px, -50%);
    -ms-transform: translate(0px, -50%);
    -o-transform: translate(0px, -50%);
    -webkit-filter: invert(1);
}

.btn_search_inpage {
    /* display: none; */
    /* position: absolute;
    top: 0; */
    background-color: var(--red);
    color: var(--lightgrey);
    width: 100%;
    padding: 8px;
    text-transform: uppercase;
    font-weight: bold;
    position: relative;
}

.btn_search_inpage img.arrow {
    width: 12px;
    position: inherit;
    transform: translate(0px, 0%);
    -webkit-transform: translate(0px, 0%);
    -moz-transform: translate(0px, 0%);
    -ms-transform: translate(0px, 0%);
    -o-transform: translate(0px, 0%);
}


.btn_search_inpage:hover {
    opacity: 0.7;
}

@media(max-width:1024px){
    .searchoverlay-wrapper,
    .search-wrapper--small {
        width: 80%;
    }

    #inputcerca_nav .logo_overlay {
        width: 100px;
    }
}

@media(max-width:767px){
    .slideHome .colText {
        max-width: 100%;
        width: 100%;
        flex: 0 0 100%;
        padding-right: 30px;
        padding-left: 30px;
    }

    .slideHome .colImage {
        max-width: 40%;
        width: 40%;
        flex: 0 0 40%;
        margin-left: 0%;
        position: absolute;
        bottom: 40px;
        right: 0;
    }

    .slideHome .colText h2 {
        font-size: 44px;
        line-height: 44px;
    }

    .slideHome .swiper-slide {
        -ms-flex-align: start!important;
        align-items: start!important;
        padding-top: 80px;
    }

    .search-products-wrapper #search-products {
        height: 60px;
        font-size: 16px;
    }

    .prefooter .logo_prefoot.small img {
        margin-right: 25px;
        height: 80px;
    }

    .mb_small_img {
        width: 100px;
    }
}

@media(max-width:767px) and (max-height:700px){
    .slideHome .colImage {
        max-width: 60%;
        width: auto;
        flex: 0 0 50%;
        margin-left: 0%;
        position: absolute;
        bottom: 40px;
        right: 0;
    }

    .slideHome .colText h2 {
        font-size: 38px;
        line-height: 38px;
    }

    .slideHome .colText .fz18 {
        font-size: 14px;
    }
}

@media(max-width:576px){
    .search-products-result .search-products-element a {
        font-size: 12px;
    }

    .search-products-wrapper .search-products,
    #inputcerca_nav .search-nav {
        height: 60px;
        font-size: 16px;
    }

    .navigation.nav-product {
        padding: 0px 15px;
    }

    .slideHome .swiper-slide {
        padding-top: 50px;
    }

    .slideHome .colText h2 {
        font-size: 30px;
        line-height: 30px;
    }

    .slideHome .colText hr {
        margin-top: 20px !important;
        margin-bottom: 20px !important;
    }
    
}

.colBoxRight {
    margin-left: 25%;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
}

.colSidebar {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}

.colBoxRightSidebar {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
}

@media(max-width:1200px){
    .colBoxRight {
        margin-left: 35%;
        -ms-flex: 0 0 65%;
        flex: 0 0 65%;
        max-width: 65%;
    }
    
    .colSidebar {
        -ms-flex: 0 0 35%;
        flex: 0 0 35%;
        max-width: 35%;
    }
    
    .colBoxRightSidebar {
        -ms-flex: 0 0 65%;
        flex: 0 0 65%;
        max-width: 65%;
    }
}

@media(max-width:1024px){

    .colBoxRight {
        margin-left: 0%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }

    .no-lg-px {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    
    .colSidebar {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .colBoxRightSidebar {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

.box-product {
    display: -ms-flexbox!important;
    display: flex!important;
    -ms-flex-align: center!important;
    align-items: center!important;
    color: var(--grey);
    -ms-flex-wrap: wrap!important;
    flex-wrap: wrap!important;
}

.box-product.prod:not(.swiper-slide) {
    margin: 15px 0px;
}

.box-product.prod .colImage {
    background-color: #fff;
}

.box-sistemi {
    display: -ms-flexbox!important;
    display: flex!important;
    color: var(--grey);
    -ms-flex-wrap: wrap!important;
    flex-wrap: wrap!important;
}

.box-sistemi .tag p {
    font-weight: bold;
    /* font-size: 14px; */
    color: var(--textcolor_dark) !important;
    padding-right: 15px;
}

.box-sistemi .tag .col {
    max-width: 25%;
    flex: 0 0 25%;
    margin-bottom: 10px;
    margin-top: 10px;
}

.box-product.prod .tit {
    color: var(--darkgrey) !important;
}

.box-product .content,
.section-cat--page.big .content {
    font-size: 15px;
    margin-top: 15px;
    /* margin-bottom: 30px; */
}

/* .box-product.prod .content {
    margin-top: 15px;
    margin-bottom: 15px;
} */

.box-product .content.small {
    font-size: 14px;
}

.box-product .content.cat span {
    font-size: 14px;
    margin-right: 5px;
}

.box-product .content.cat span:not(:last-of-type):after {
    content: "|";
    padding-left: 5px;
}

.cat_articoli:not(:last-of-type):after {
    content: "|";
    padding-left: 5px;
    padding-right: 5px;
}

.box-product.box-category h4 {
    font-size: 26px;
    line-height: 28px;
}

.box-product .tit.big {
    font-size: 18px;
    line-height: 20px;
}

.box-product .colImage,
.box-product .colInfo {
    width: 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.box-sistemi .colImage {
    width: 35%;
    flex: 0 0 35%;
    max-width: 35%;
}

.box-sistemi .colInfo {
    width: 65%;
    flex: 0 0 65%;
    max-width: 65%;
}

.box-product .colImage, 
.box-sistemi .colImage {
    display: -ms-flexbox!important;
    display: flex!important;
    -ms-flex-align: center!important;
    align-items: center!important;
    position: relative;
    overflow: hidden;
}

.box-product.box-category .colInfo {
    width: 55%;
    flex: 0 0 55%;
    max-width: 55%;
}

.box-product.box-category .colImage {
    width: 40%;
    flex: 0 0 40%;
    max-width: 40%;
}

.box-product.prod .colImage {
    width: 35%;
    flex: 0 0 35%;
    max-width: 35%;
}

.box-product .colImage img {
    padding: 0px 10px;
}

.box-product.prod .colInfo {
    width: 60%;
    flex: 0 0 60%;
    max-width: 60%;
}

#carouselProdottiHighlights .box-product.prod .colInfo {
    width: 55%;
    flex: 0 0 55%;
    max-width: 55%;
}

.box-product .colImage.small img {
    max-width: 80%;
}

.box-product .colImage {
    border-right: 1px solid rgba(0,0,0,.3);
    height: 100%;
}

.box-product:not(.prod) .colImage {
    padding-right: 30px;
    cursor: pointer;
}

.box-product .colImage img {
    margin-right: 0px;
    margin-left: auto;
}

.box-product.prod .colImage:hover img {
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
}

.box-product .colImage .video {
    width: 100%;
    height: 0px;
    position: relative;
    padding-top: 56.25%;
}

.box-product .colImage .video iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
}

.section-cat--page.big .colImage {
    border-left: 1px solid rgba(0,0,0,.3);
    height: 100%;
    padding-left: 30px;
}

/* .box-product.general .colInfo {
    height: 100%;

    display: -ms-flexbox!important;
    display: flex!important;
    flex-direction: column !important;
    -ms-flex-pack: center!important;
    justify-content: center!important;
} */

.box-sistemi .colImage {
    border-right: 1px solid rgba(0,0,0,.3);
    padding-right: 30px;
    padding-top: 30px;
    padding-bottom: 30px;
    -ms-flex-direction: column!important;
    flex-direction: column!important;
}

.box-sistemi .colImage img.logo_cat {
    height: 26px;
    width: auto;
    max-width: 100%;
    margin-left: auto;
    margin-right: 0;
    margin-bottom: 20px;
    filter: brightness(0) opacity(0.5);
    -webkit-filter: brightness(0) opacity(0.5);
}

.page-template-template-single_edilizia .logo {
    filter: brightness(0) opacity(0.5);
    -webkit-filter: brightness(0) opacity(0.5);
}

.box-sistemi .colImage .img_cat {
    width: 100%;
    height: 0;
    padding-bottom: 65%;
    overflow: hidden;
    position: relative;
}

.box-sistemi .colImage .img_cat img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    object-fit: cover;
}

.box-product .colInfo .padd {
    padding: 30px;
    border-bottom: 1px solid rgba(0,0,0,.3);
}

.box-sistemi .colInfo .padd {
    padding: 30px;
}

.box-product .colInfo .padd-btn,
.box-sistemi .colInfo .padd-btn {
    padding: 30px;
    margin-bottom: 0px;
    margin-top: auto;
}

.section-cat--page.big .padd {
    padding: 30px 30px 30px 0px;
    border-bottom: 1px solid rgba(0,0,0,.3);
}

.section-cat--page.big .padd-btn {
    padding: 30px 30px 30px 0px;
}

.box-product.prod .colInfo .padd,
.box-product.prod .colInfo .padd-btn {
    padding: 15px !important;
}

.navigation.nav-product .navBtn {
    text-decoration: underline;
    color: var(--textcolor_dark);
    font-weight: bold;
    font-size: 13px;
    cursor: pointer;
}

.navigation.nav-product .swiper-custom-prev img {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.navigation.nav-product .swiper-button-disabled {
    opacity: 0;
    /* display: none; */
}

.navigation.nav-product {
    padding: 5px 30px;
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
}

.slider_gallery .navigation.nav-product {
    width: 92%;
    max-width: 92%;
    padding-left: 15px;
    padding-right: 15px;
    margin: auto;
}

.slider_gallery .navigation.nav-product img {
    width: 20px;
}

.colProd {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

@media(max-width:1200px){
    .colProd {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .colProd .box-product.prod .colInfo {
        width: 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media(max-width:1400px){
    .box-product .colInfo .padd,
    .box-product .colInfo .padd-btn,
    .box-sistemi .colInfo .padd {
        padding: 15px;
    }

    .box-sistemi .colImage {
        padding-right: 15px;
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .box-product:not(.prod) .colImage {
        padding-right: 15px;
    }

    .box-product:not(.prod) .colInfo .padd .tit {
        font-size: 24px;
    }
}

@media(max-width:1200px){
    .box-product:not(.box-video) .colImage {
        width: 45%;
        flex: 0 0 45%;
        max-width: 45%;
    }

    .box-product:not(.box-video) .colInfo {
        width: 55%;
        flex: 0 0 55%;
        max-width: 55%;
    }

    .box-posts .colInfo .padd .tit {
        font-size: 18px !important;
        line-height: 20px !important;
    }

    .box-product .colImage.small img {
        max-width: 100%;
    }

    .box-product .content.cat span {
        font-size: 12px;
        margin-right: 5px;
    }

    .box-sistemi .tag .col {
        max-width: 33.33%;
        flex: 0 0 33.33%;
    }
}

@media(max-width:1100px){
    .section-cat--page .box-product {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .box-product .colImage {
        width: 35% !important;
        flex: 0 0 35% !important;
        max-width: 35% !important;
    }

    .box-product .colInfo {
        width: 65% !important;
        flex: 0 0 65% !important;
        max-width: 65% !important;
    }

    .box-product.box-posts .colImage,
    .box-product.box-posts .colInfo  {
        width: 92% !important;
        flex: 0 0 92% !important;
        max-width: 92% !important;
        padding-right: 0px;
        border-right: 0px;
        height: auto;
    }

    .box-product.box-posts .colImage img {
        margin-right: auto;
        margin-left: 0;
        max-width: 100%;
        width: auto;
    }

    .box-product.box-posts {
        -ms-flex-align: flex-start!important;
        align-items: flex-start !important;
    }

    .box-product.box-posts .colInfo .padd, .box-product.box-posts .colInfo .padd-btn {
        padding: 15px 0px;
    }

    .box-product.box-posts .colInfo .padd .tit {
        font-size: 22px;
    }

    .box-sistemi .colInfo .padd-btn {
        padding: 30px 15px;
    }
}

@media(max-width:991px){
    .box-sistemi .colImage img.logo_cat {
        height: 18px;
    }

    .box-sistemi .colImage {
        width: 30%;
        flex: 0 0 30%;
        max-width: 30%;
    }

    .box-sistemi .colInfo {
        width: 70%;
        flex: 0 0 70%;
        max-width: 70%;
    }

    .box-sistemi .colInfo .content {
        font-size: 16px;
    }

    .box-sistemi .tag p {
        font-size: 14px;
    }

    
    .section-cat--page.big .colImage {
        border-left:0px;
        height: auto;
        padding-left: 15px;
    }
}

@media(max-width:767px){
    .box-sistemi .tag .col {
        max-width: 50%;
        flex: 0 0 50%;
    }

    .box-product .colInfo,
    .box-sistemi .colInfo {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .box-sistemi .colInfo .padd {
        padding: 15px 0px;
    }

    .box-sistemi .colInfo .padd-btn {
        padding: 30px 0px;
    }

    .box-product.box-posts .colImage,
    .box-sistemi .colImage {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .box-sistemi .colImage {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
        border-right: 0px;
        padding-right: 0px;
    }

    .box-product .colImage {
        width: 60% !important;
        flex: 0 0 60% !important;
        max-width: 60% !important;
        padding-right: 0px !important;
        height: auto;
        border-right: 0px;
        margin: auto;
    }

    .colProd.box-product .colInfo {
        width: 92% !important;
        flex: 0 0 92% !important;
        max-width: 92% !important;
        margin: auto;
    }

    .box-product .colImage img {
        margin-right: auto;
        margin-left: auto;
        padding: 0;
    }

    .box-product.tabProject .colImage {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .box-product.prod .colImage {
        margin: 0px;
    }

    .box-sistemi .tag .col {
        margin-bottom: 5px;
        margin-top: 5px;
    }

    #carouselProdottiHighlights .swiper-wrapper {
        height: auto;
    }

    /* .box-product .colInfo,
    .box-sistemi .colInfo {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    } */

    .box-product .colInfo .padd, .box-product .colInfo .padd-btn,
    .colProd.box-product .colInfo .padd,
    .colProd.box-product .colInfo .padd-btn {
        padding: 20px 0px !important;
    }

    .navigation.nav-product .navBtn {
        font-size: 14px;
    }

    .box-sistemi .colImage img.logo_cat {
        margin-left: 0;
        margin-right: auto;
        height: 25px;
    }

    .box-sistemi .colImage .img_cat {
        width: 50%;
        padding-bottom: 50%;
        margin-left: 0px;
        margin-right: auto;
    }
}

@media(max-width:567px){
    .box-sistemi .colImage .img_cat {
        width: 100%;
        padding-bottom: 60%;
    }

    .box-sistemi .tag .col {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .colProd {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .colProd.box-product .colImage {
        margin: 0px auto;
    }
}

.standard-accordion .card {
    background-color: transparent;
    border: 0px;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    border-bottom: 1px solid rgba(0,0,0,.3) !important;
}

.standard-accordion .card-header {
    /* padding: 30px 55px 30px 0px; */
    padding: 30px 0px;
    margin-bottom: 0;
    background-color: transparent;
    /* border-bottom: 1px solid rgba(0,0,0,.125); */
    border-bottom: 0px;
    /* position: relative; */
}

/* #accordionCat  .paddRight {
    padding-right: 50px;
} */

.standard-accordion .card-header button {
    position: relative;
}

.standard-accordion .card-header button:before,
.accordion_excerpt .card_accordion .btn_accordion:before {
    content: "+";
    position: absolute;
    background-color: var(--grey);
    color: #fff;
    width: 38px;
    height: 38px;
    line-height: 38px;
    border-radius: 50%;
    text-align: center;
    font-weight: 500;
    font-size: 22px;
    top:50%;
    transform: translate(0px, -50%);
    margin: auto;
    right: 0;
    transition: all 200ms linear;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    z-index: 1000;
    cursor: pointer;
    -webkit-transform: translate(0px, -50%);
    -moz-transform: translate(0px, -50%);
    -ms-transform: translate(0px, -50%);
    -o-transform: translate(0px, -50%);
    transform-origin: top;
}

.standard-accordion .card-header button[aria-expanded="true"]:before,
.accordion_excerpt .card_accordion.show .btn_accordion:before {
    transform-origin: top;
    transform: rotate(45deg) translate(0px, -50%);
    -webkit-transform: rotate(45deg) translate(0px, -50%);
    -moz-transform: rotate(45deg) translate(0px, -50%);
    -ms-transform: rotate(45deg) translate(0px, -50%);
    -o-transform: rotate(45deg) translate(0px, -50%);
    transition: all 200ms linear;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
}

.standard-accordion .card-body {
    padding: 0px 50px 30px 0px;
}

.standard-accordion .card-body table td {
    padding:5px 0px
}

.accordion_excerpt {
    padding: 0px 30px;
}

/* .page-template-template-single_edilizia .accordion_excerpt {
    padding: 0px 0px;
} */

.page-template-template-single_edilizia .accordion_excerpt .card_accordion {
    padding: 25px 0px;
}

.accordion_excerpt .card_accordion {
    display: -ms-flexbox!important;
    display: flex!important;
    -ms-flex-align: start!important;
    align-items: start!important;
    position: relative;
    padding: 40px 0px;
    border-bottom: 1px solid #ccc;
    -ms-flex-wrap: wrap!important;
    flex-wrap: wrap!important;
}

.accordion_excerpt .card_accordion:last-of-type {
    border-bottom: 0px;
}

.accordion_excerpt .card_accordion .btn_accordion {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
    text-align: left;
    cursor: pointer;
    padding-right: 30px;
}

.accordion_excerpt .card_accordion .btn_accordion:hover {
    text-decoration: underline;
}

.accordion_excerpt .card_accordion .content_accordion {
    -ms-flex: 0 0 65%;
    flex: 0 0 65%;
    max-width: 65%;
    padding-right: 50px;
    color: var(--grey);
}

.accordion_excerpt .card_accordion.show .colContent-full {
    display: block
}

.accordion_excerpt .card_accordion.show .colContent-full ul {
    list-style: disc;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
}

.accordion_excerpt .card_accordion.show .colContent-excerpt,
.accordion_excerpt .card_accordion .colContent-full {
    display: none;
}

.btn_group.sistemi a {
    margin-right: 35px;
}

#accordionSistemi .card_accordion .btn_accordion:before,
#accordionSoluzioni .card_accordion .btn_accordion:before {
    top: 38px !important;
}

@media(max-width:991px){
    .accordion_excerpt .card_accordion .content_accordion {
        -ms-flex: 0 0 67%;
        flex: 0 0 67%;
        max-width: 67%;
    }

    .accordion_excerpt .card_accordion .btn_accordion {
        -ms-flex: 0 0 33%;
        flex: 0 0 33%;
        max-width: 33%;
        padding-right: 25px;
    }

    .accordion_excerpt .card_accordion .btn_accordion p {
        font-size: 16px;
    }
}

@media(max-width:767px){
    #accordionCat .d-md-hide {
        display: none !important;
    }

    #accordionCat .card-header button,
    .standard-accordion .card-header button {
        display: -ms-flexbox!important;
        display: flex!important;
        /* -ms-flex-align: start!important;
        align-items: flex-start!important; */
        -ms-flex-wrap: wrap!important;
        flex-wrap: wrap!important;
    }

    #accordionCat .card-header button:before,
    .standard-accordion .card-header button:before {
        color: #fff;
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 16px;
        /* top: 30px; */
    }

    #accordionCat .card-body,
    .standard-accordion .card-body {
        font-size: 14px;
    }

    .accordion_excerpt .card_accordion .colContent-full p {
        font-size: 14px;
    }
    
    .accordion_excerpt .card_accordion .btn_accordion {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        padding-bottom: 15px;
    }

    .accordion_excerpt .card_accordion .content_accordion {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        font-size: 14px;
        padding-right: 0px;
    }
    
}

.borderBottom {
    border-bottom: 1px solid rgba(0,0,0,.3);
    padding-bottom: 15px;
}

.borderTopBottom {
    border-top: 1px solid rgba(0,0,0,.3);
    border-bottom: 1px solid rgba(0,0,0,.3);
    padding-top: 15px;
    padding-bottom: 15px;
}

#carouselProdottiHighlights {
    padding-top: 25px;
    padding-bottom: 25px;
    background-color: #fff;
    border-top: 2px solid rgba(0,0,0,.2);
    border-bottom: 2px solid rgba(0,0,0,.2);
}

.box_download.customCol {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
}

.box_download .box_download--icon {
    background-color: #c3c3c3;
    width: 80px;
    height: 80px;
    flex: 0 0 80px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box_download .box_download--icon img {
    width: 65%;
}

.box_download a:hover {
    text-decoration: underline;
}

.box_download .tit_icon {
    width: 80%;
}

.nav-pills {
    color: var(--textcolor_dark);
}

.nav-pills li a {
    font-size: 28px;
    font-weight: 300;
    display: block;
    border-bottom: 2px solid rgba(0,0,0,.2);
    padding: 15px 15px 15px 0px;
}

.nav-pills li a.active {
    font-weight: 700;
    border-bottom: 3px solid var(--red) !important;
}

.tabImage {
    border-right: 1px solid rgba(0,0,0,.3);
    padding-right: 30px !important;
}

.tabProgetto  {
    padding: 30px;
}

@media(max-width:1024px){
    .box_download.customCol {
        -ms-flex: 0 0 33.3333%;
        flex: 0 0 33.3333%;
        max-width: 33.3333%;
    }

    .box_download .tit_icon {
        width: 90%;
    }
}

@media(max-width:767px){
    .nav-pills {
        -ms-flex-wrap: wrap!important;
        flex-wrap: wrap!important;
    }

    /* .nav-pills li.col {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    } */

    .nav-pills li a {
        font-size: 20px;
        padding: 10px 0px 10px 0px;
    }

    .col_related--home .tab-content {
        background-color: #fff;
    }
}

.video-section {
    /* background-image: url('../images/videoimage.jpg'); */
    background-size: cover;
    background-position: center;
    width: 100%;
    /* height: 100vh; */
    height: 90vh;
    position: relative;
}

.video-section .play_video {
    width: 100px;
    height: 100px;
    background-color: var(--red);
    border-radius: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    cursor: pointer;
}

.video-section .play_video:hover {
    opacity: 0.5;
}

.colContact:not(.white) {
    background-color: var(--darkgrey);
    padding: 15px;
    color: var(--lightgrey);
    max-width: 33.333%;
}

.home .colContact {
    background-color: var(--darkgrey);
    padding: 40px;
    color: var(--lightgrey);
    width: 25%;
    flex: 0 0 25%;
    max-width: 25%;
    /* width: 400px; */
}

.home .colContact {
    margin-right: 20px;
}

.colContact.white  {
    max-width: 100%;
    padding: 0px;
}

@media(max-width:1024px){
    .colContact:not(.white) {
        max-width: 50%;
    }

    .video-section {
        height: auto;
        min-height: 500px;
    }

    .video-section .play_video {
        left: 50%;
    }

    .home .colContact {
        padding: 20px;
        width: 30%;
        flex: 0 0 30%;
        max-width: 30%;
        /* width: 400px; */
    }
}

@media(max-width:767px){
    .video-section {
        height: auto;
        min-height: 300px;
        padding: 50px 0px;
    }

    .home .colContact {
        padding: 20px;
        width: 50%;
        flex: 0 0 50%;
        max-width: 50%;
        margin: 10px 10px 10px 0px;
        /* width: 400px; */
    }

    .video-section .play_video {
        position: relative;
        margin: 50px auto 0px;
        left: 0px;
    }

    .colContact {
        max-width: 100%;
        width: 100%;
        margin: auto;
        margin-bottom: 20px;
    }

    .colContact:not(.white) {
        max-width: 100%;
    }
}

@media(max-width:567px){
    .home .colContact {
        padding: 20px;
        width: 94%;
        flex: 0 0 94%;
        max-width: 94%;
        margin: 10px auto;
        /* width: 400px; */
    }
}

hr.light {
    border-top: 1px solid rgba(255,255,255,.3);
}

/* .home .sidebarInfo {
    max-width: 25%;
    flex: 0 0 25%;
} */

.borderLeft {
    border-left: 1px solid rgba(0,0,0,.3);
}

.borderRight {
    border-right: 1px solid rgba(0,0,0,.3);
}

.paddBox {
    padding: 0px 30px;
}

.sectionBanner {
    min-height: 500px;
    overflow: hidden;
}

.sectionBanner.background-cover-center {
    min-height: 300px;
}

.sectionBanner .sectionBanner--img {
    position: absolute;
    left: 0px;
    /* max-height: 100%; */
    max-width: 40%;
    top:0px;
    bottom: 0px;
    margin: auto;
}

.sectionBanner.toLeft .sectionBanner--img {
    right: 0px;
    left: auto;
}

.sectionBanner.toRight .colOff {
    margin-left: 50%;
}

@media(max-width:991px){
    .sectionBanner .sectionBanner--img {
        max-width: 35%;
    }

    .sectionBanner.toRight .colOff {
        margin-left: 33.333333%;
    }
    
}

@media(max-width:767px){
    .borderLeft {
        border-left: 0px
    }

    .tabSettori .tab-content .borderLeft,
    .tabSettori .tab-content .general-content {
        padding: 0 !important;
        font-size: 14px;
    }

    .paddBox {
        padding: 0px 0;
    }

    .box_download .box_download--icon {
        width: 80px;
        height: 80px;
    }

    #carouselProdottiHighlights {
        padding-bottom: 40px;
    }

    .sectionBanner .sectionBanner--img {
        position: relative;
        max-width: 60%;
    }

    .sectionBanner.toRight .colOff {
        margin-left: 0%;
    }
}

@media(max-width:567px){
    .box_download .box_download--icon {
        width: 60px;
        height: 60px;
        flex: 0 0 60px;
    }

    .box_download a.fz20 {
        font-size: 16px;
        line-height: 16px;
    }
}

body:not(.single) .content-share a img {
    filter: invert(1);
    -webkit-filter: invert(1);
}

/* FILTRI ARCHIVIO */

.filter .columnFilter {
    display: -ms-flexbox!important;
    display: flex!important;
    -ms-flex-wrap: wrap!important;
    flex-wrap: wrap!important;
    -ms-flex-align: center!important;
    align-items: center!important;
}

.columnFilter .colFilter {
    margin-left: 15px;
    margin-right: 15px;
}

.columnFilter .colFilter .btn-check {
    background-color: #fff;
    padding: 8px 18px;
    font-size: 16px;
    margin-right: 5px;
}

.columnFilter .colFilter.toright {
    margin-right: 15px;
    margin-left: auto;
}

.columnFilter .colFilter .tit_filter {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bolder;
    color: var(--darkgrey);
}

.columnFilter .colFilter select {
    /* min-width: 200px; */
    max-width: 70%;
    background-color: transparent;
    font-size: 14px;
    color: var(--grey);
    padding: 0px 17px 0px 8px;
    cursor: pointer;
    transition: all 100ms linear;
    -webkit-transition: all 100ms linear;
    -moz-transition: all 100ms linear;
    -ms-transition: all 100ms linear;
    -o-transition: all 100ms linear;
}

.btn_filter {
    background-color: #ccc;
    color: var(--darkgrey);
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    padding: 10px 15px;
    margin-right: 5px;
    cursor: pointer;
}

.btn_filter.active {
    background-color: #fff;
}

.posts_pagination {
    background-color:#f2f2f2;
    padding: 15px;
}

.posts_pagination span, .posts_pagination p,
.back_top {
    font-size: 12px;
    font-weight: bold;
}

.posts_pagination .pag_link {
    width: 15px;
}

.posts_pagination .posts_pagination_prev img {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
}

.posts_pagination .posts_pagination_next img {
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
}

.general-content p {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 16px;
}

.general-content a:not(.btn-plus) {
    text-decoration: underline;
}

.general-content h3, .general-content h4, .general-content h2 {
    /* color: var(--darkgrey); */
    margin-top: 35px;
}

.general-content h3:first-of-type, .general-content h4:first-of-type, .general-content h2:first-of-type {
    /* color: var(--darkgrey); */
    margin-top: 0px;
}

.general-content h2 {
    font-size: 34px;
}

.general-content h3 {
    font-size: 28px;
}

.general-content:not(.list-special) ul {
    list-style: disc;
    padding-left: 20px;
}

.headSingle .tit {
    font-size: 40px;
    line-height: 44px;
}

.headSingle h4 {
    font-size: 28px;
}

.breadcrump, .breadcrump a {
    font-size: 14px;
    /* text-align: right; */
    display: -ms-flexbox!important;
    display: flex!important;
    -ms-flex-align: center!important;
    align-items: center!important;
    justify-content: space-between !important
}

.breadcrump #btn_back {
    cursor: pointer;
    color: inherit;
    font-size: 14px;
}

.breadcrump #btn_back img {
    filter: invert(1);
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -webkit-filter: invert(1);
}

.headSingle #btn_back img,
.headProdotto #btn_back img {
    filter: invert(0);
    -webkit-filter: invert(0);
}

.breadcrump #btn_back:hover {
    color: var(--red);
}

.single .prod-corr .corr {
    padding: 15px 0px;
    border-bottom: 1px solid rgb(0 0 0 / 23%);
}

.single .prod-corr .corr .cat {
    color: var(--grey);
    flex: 0 0 300px;
    max-width: 300px;
}

.single .prod-corr .corr .name {
    font-weight: bold;
    flex: 0 0 60%;
    max-width: 60%;
}

.carouselSingleReferenze {
    padding-top: 20px;
    padding-bottom: 50px;
}

/* .carouselSingleReferenze .swiper-slide {
    background-color: #fff;
} */

@media(min-width:992px){
    .headSingle .content-share {
        -ms-flex-pack: center!important;
        justify-content: center!important;
    }
}

@media(max-width:991px){
    /* .headSingle .intro-img {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column-reverse!important;
        flex-direction: column-reverse!important;
    } */

    .headSingle .tit {
        margin-top: 30px;
        margin-bottom: 30px !important;
    }

    .columnFilter .colFilter.toright,
    .columnFilter .colFilter {
        margin-right: 15px;
        margin-left: 15px;
        display: flex;
        max-width: 100%;
        flex: 0 0 50%;
        padding: 8px 0px;
    }

    .single .prod-corr .corr .cat {
        flex: 0 0 auto;
        max-width: initial;
        padding-right: 30px;
        font-size: 14px;
    }
}

@media(max-width:767px){
    /* .columnFilter .colFilter select {
        width: 200px;
    } */

    .columnFilter .colFilter.toright,
    .columnFilter .colFilter {
        flex: 0 0 100%;
        margin-left: 0px;
        margin-right: 0px;
    }

    .colFilterBtn {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    .headSingle .tit {
        font-size: 28px;
        line-height: 30px;
    }

    .headSingle h4 {
        font-size: 20px;
        line-height: 22px;
    }

    .sectionBanner.background-cover-center {
        min-height: 240px;
    }
}

.section-page-group .box-page--col {
    width: 33.33333%;
    max-width: 50%;
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
    height: 0;
    padding-bottom: 25%;
}

.section-page-group .box-page--col.col3 {
    width: 33.33333%;
    max-width: 33.33333%;
    flex: 0 0 33.33333%;
    padding-bottom: 25%;
}

.section-page-group .box-page--col.col6 {
    width: 50%;
    max-width: 50%;
    flex: 0 0 50%;
    padding-bottom: 30%;
}

.section-page-group.child-infrastrutture .box-page--col.col6 {
    width: 50%;
    max-width: 50%;
    flex: 0 0 50%;
    padding-bottom: 0px;
    height: auto;
}

.section-page-group .box-page--col.col12 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    padding-bottom: 25%;
}

.section-page-group.child-infrastrutture .box-page--col.col12 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    padding-bottom: 0px;
    height: auto;
}

.child-infrastrutture .box-page--col .content {
    color: #fff;
    /* position: absolute;
    left: 0;
    right: 0; */
    margin: auto;
    padding: 40px;
    z-index: 50;

    height: 100%;
    display: -ms-flexbox!important;
    display: flex!important;
    -ms-flex-direction: column!important;
    flex-direction: column!important;
}

.section-page-group:not(.child-infrastrutture) .box-page--col .backgrodund-cover-center {
    height: 100%;
    width: 100%;
    position: absolute;
    top:0px;
    left: 0px;
    background-position: center;
    background-size: cover;
    transition: all 200ms linear;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    background-blend-mode: multiply;
}

.section-page-group.child-infrastrutture .box-page--col .backgrodund-cover-center {
    height: 100%;
    width: 100%;
    background-position: center;
    background-size: cover;
    transition: all 200ms linear;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    background-blend-mode: multiply;
}

/* .section-page-group .box-page--col .backgrodund-cover-center:before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.5);
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 90%);
    position: absolute;
    top: 0;
    left: 0;
} */

.section-page-group .box-page--col a:hover .backgrodund-cover-center {
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
    transition: all 200ms linear;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
}

.section-page-group:not(.child-infrastrutture) .box-page--col .tit{
    position: absolute;
    left: 0;
    color: #fff;
    font-size: 38px;
    padding: 40px;
    font-weight: lighter;
    top: 40px;
    z-index: 50;
    text-shadow: 0px 0px 20px #000;
}

.section-page-group.child-infrastrutture .box-page--col .tit{
    font-size: 38px;
    font-weight: lighter;
    text-shadow: 0px 0px 20px #000;
}

.section-page-group.child-infrastrutture .box-page--col .text{
    font-size: 14px;
    width: 90%;
    font-weight: lighter;
    text-shadow: 0px 0px 20px #000;
    padding-top: 20px;
    padding-bottom: 30px;
}


.head-simple .btngroup-head .btn-plus {
    margin-right: 30px;
}

.head .img_head {
    position: absolute;
    right: 10%;
    bottom: 0;
    max-height: 90%;
}

/* .parent-pageid-770 .head h1,
.page-id-1407 .head h1 {
    font-size: 48px;
    line-height: 50px;
} */

.parent-pageid-770 .head .h3,
.page-id-1407 .head .h3 {
    font-size: 36px;
}

.head .img_head.single_cat.dk {
    position: absolute;
    right: 0%;
    left: auto;
    bottom: 0;
    transform: translate(0%, 0px);
    -webkit-transform: translate(0%, 0px);
    -moz-transform: translate(0%, 0px);
    -ms-transform: translate(0%, 0px);
    -o-transform: translate(0%, 0px);
    max-width: 30%;
    width: auto;
    height: auto;
    max-height: 65%;
}

.head .img_head.single_cat.mb {
    display: none !important;
}

.head.head_infra .square_img {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 0;
    padding-bottom: 56%;
}

.head.head_infra .square_img img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* .head .loghi_cert img {
    box-shadow: 0px 0px 20px 0px #000;
} */

.slider_gallery, .carouselHeight {
    height: 415px;
    padding-bottom: 60px;
    padding-left: 15px;
    margin-left: 0px;
}

#sliderAcademy {
    padding-left: 0px !important;
}

.slider_gallery .swiper-slide,
.carouselHeight .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    -ms-flex-direction: column!important;
    flex-direction: column!important;
    max-width: 90%;
    width: auto;
}

#sliderRicercaSviluppo .swiper-slide a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.slider_gallery .swiper-slide img,
.carouselHeight .swiper-slide img {
    height: 100%;
    width: auto;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--darkgrey);
}


#sliderRicercaSviluppo .desc,
.carouselSistema .desc {
    font-size: 12px;
    text-transform: uppercase;
    position: absolute;
    bottom: 5px;
    font-weight: bold;
    background-color: rgba(255,255,255,0.6);
    padding: 5px 15px;
    width: 80%;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}

.head .content-text ul {
    list-style: disc;
    padding-left: 20px;
    padding-top: 10px;
}

@media(max-width:1024px){
    .section-page-group .box-page--col.col6 {
        padding-bottom: 40%;
    }

    .section-page-group .box-page--col {
        padding-bottom: 25%;
    }

    .section-page-group .box-page--col.col3 {
        padding-bottom: 33.333%;
    }

    .section-page-group.child-infrastrutture .box-page--col .tit {
        font-size: 28px;
        padding: 0;
    }

    .child-infrastrutture .box-page--col .content {
        padding: 20px;
    }

    .section-page-group .box-page--col .tit {
        font-size: 30px !important;
        padding: 20px 0px !important;
        top: 25px !important;
    }

    .head .img_head {
        right: 0%;
        max-height: 70%;
    }
}

@media(max-width:991px){
    .head.head_sistemi .content-text p {
        font-size: 16px;
    }

    .head .img_head.single_cat.dk {
        display: none !important;
    }

    .head .img_head.single_cat.mb {
        display: block !important;
        width: 33.3333%;
        transform: translate(calc(8% + 15px), 0px);
        margin-top: 40px;
        position: static;
    }
}

@media(max-width:767px){
    #sliderRicercaSviluppo .desc, .carouselSistema .desc {
        font-size: 12px;
        line-height: 12px;
        width: 100%;
    }

    .head.head_sistemi .loghi_cert img {
        height: 50px;
    }

    .gallery_Cert img {
        height: 30px;
    }

    .head .img_head {
        left: auto;
        transform: translate(0%, 0px);
        -webkit-transform: translate(0%, 0px);
        -moz-transform: translate(0%, 0px);
        -ms-transform: translate(0%, 0px);
        -o-transform: translate(0%, 0px);
        right: 0%;
        width: 220px;
    }
    
    .head .content-text p {
        font-size: 16px !important;
    }

    .breadcrump, .breadcrump a {
        font-size: 12px;
        padding-bottom: 10px;
        /* text-align: left; */
    }

    .breadcrump #btn_back {
        font-size: 12px;
    }

    .breadcrump #btn_back img {
        width: 9px;
    }

    /* .section-page-group .box-page--col {
        width: 50%;
        max-width: 50%;
        flex: 0 0 50%;
        padding-bottom: 30%;
    } */

    .section-page-group .box-page--col.col3,
    .section-page-group .box-page--col {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        padding-bottom: 40%;
    }

    .section-page-group .box-page--col.col6 {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        padding-bottom: 80%;
    }

    .section-page-group.child-infrastrutture .box-page--col .text {
        font-size: 14px;
        width: 100%;
    }

    .section-page-group:not(.child-infrastrutture) .box-page--col .tit {
        font-size: 28px !important;
        padding: 20px !important;
        top: 20px !important;
    }

    #tabInfrastrutture .box-left {
        padding: 10px 30px 10px 20px;
        margin-left: 15px;
        margin-bottom: 15px;
    }

    #tabInfrastrutture .box-left:last-of-type {
        margin-bottom: 0px;
    }

    .section-page-group .box-page--col .tit {
        font-size: 22px;
        padding: 20px;
        top: 0px;
    }

    .columnFilter .colFilter {
        margin-left: 0px;
        margin-right: 0px;
        width: 100%;
    }

    .slider_gallery, .carouselHeight {
        height: 280px;
        padding-bottom: 60px;
    }

    .slider_gallery .swiper-slide img,
    .carouselHeight .swiper-slide img {
        height: auto;
    }

    #accordionCat .card-header button:before, .standard-accordion .card-header button:before, .accordion_excerpt .card_accordion .btn_accordion:before {
        width: 25px;
        height: 25px;
        line-height: 25px;
        font-size: 16px;
        top: 30px;
    }

    .archive-schedetecniche .standard-accordion .card-header button:before {
        top: 12px;
    }
}

@media(max-width:576px){

    .head.head_sistemi .loghi_cert img {
        height: 40px;
    }

    .head .img_head.single_cat.mb {
        width: 100%;
        transform: translate(0px, 0px);
        margin-top: 0px;
        -webkit-transform: translate(0px, 0px);
        -moz-transform: translate(0px, 0px);
        -ms-transform: translate(0px, 0px);
        -o-transform: translate(0px, 0px);
}

    .head .img_head {
        width: 180px;
    }

    .section-page-group .box-page--col .tit {
        font-size: 18px;
    }

    .head .content-text p {
        font-size: 14px !important;
    }
}

.list-special:not(.full) ul {
    -ms-flex-wrap: wrap!important;
    flex-wrap: wrap!important;
    display: -ms-flexbox!important;
    display: flex!important;
    padding-top: 10px;
    padding-bottom: 10px;
}

.list-special.full ul {
    padding-top: 10px;
    padding-bottom: 10px;
}

.list-special li {
    width: 50%;
    position: relative;
    padding: 5px 10px 5px 23px;
}

.list-special.col3 ul li {
    width: 33.333%;
}

.list-special.full li {
    width: 100%;
    position: relative;
    padding: 5px 10px 5px 23px;
}

.list-special li::before {
    content: "";
    background-image:url('../images/check.svg');
    background-size: contain;
    background-repeat: no-repeat;
    width: 16px;
    height: 16px;
    left: 0px;
    position: absolute;
    top:10px;
    margin: auto;
}

.list-special.green li::before {
    background-image:url('../images/check-green.svg');
}

.tabSettori .nav-pills li a {
    font-size: 26px;
}

.tabSettori.white .nav-pills li a {
    color: #fff;
}

.tabSettori .nav-pills.small-li li a {
    font-size: 18px !important;
}

#tabInfrastrutture .box-left {
    padding: 15px 30px 15px 15px;
    border-left: 1px solid rgba(0,0,0,.3);
}

.tabSettori.white .tabStandard h4 {
    color: #fff;
    font-weight: bold;
}

.tabSettori.white .tabStandard p,
.tabSettori.white .card-header button {
    color: var(--lightgrey);
}

.tabSettori .tab-content {
    background-color: #fff;
    border-bottom: 2px solid rgba(0,0,0,.2);
    border-top: 2px solid rgba(0,0,0,.2);
    padding-left: 30px;
    padding-right: 30px;
}

.tabSettori.white .tab-content {
    background-color: #44515c;
    border-bottom: 2px solid rgb(255 255 255 / 44%);
    border-top: 2px solid rgb(255 255 255 / 44%);
}

.tabSettori .nav-pills li a {
    border-bottom: 0px;
}

.tabSettori .col {
    max-width: 60%;
}

.tab-pane.card {
    background-color: transparent;
    border: 0px;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
}

card-body.tabStandard {
    padding-top: 0px;
    padding-bottom: 0px;
}

.tabs-responsive .card-header {
    display: none !important;
    padding: 10px 15px;
} 

.tabs-responsive .card-header button {
    font-weight: bold;
    font-size: 20px;
}

.tabSettori .abs_tabSettori_edilizia {
    position: absolute;
    bottom: 0;
    top: 0;
    margin: auto;
    left: 0;
    right: 0;
    max-width: 100%;
}

/*filtri prodotti*/
.tabFiltriProdotti .product_tipologia {
    padding: 15px 30px;
    font-size: 22px;
    font-weight: bold;
    width: 50%;
    max-width: 50%;
    flex: 0 0 50%;
    cursor: pointer;
    z-index: 100;
}

.tab-soluzioni .nav-pills a {
    padding: 15px 20px;
    font-size:18px;
    font-weight: bold;
}

.tabFiltriProdotti .product_tipologia.active,
.tab-soluzioni .nav-pills a.active {
    border-top: 3px solid var(--red) !important;
    background-color: #fff;
    color: var(--red);
    border-bottom: 0px !important;
}


.tabFiltriProdotti .content_FiltriProdotti {
    border-bottom: 2px solid rgba(0,0,0,.2);
    border-top: 2px solid rgba(0,0,0,.2);
    padding: 30px 15px;
    background-color: #fff;
    margin-top: -2px;
    position: relative;
    z-index: 10;
}

.box_check-filter {
    -ms-flex-wrap: wrap!important;
    flex-wrap: wrap!important;
    display: -ms-flexbox!important;
    display: flex!important;
}

.tabFiltriProdotti .product_filter_lvl2 .box_check-filter {
    /* border-top: 2px solid rgba(0,0,0,.2); */
    padding-top: 40px;
    padding-bottom: 10px;
    /* margin-top: 40px; */
}

.tabFiltriProdotti .input_check-filter,
.product_filter_lvl2 .product_filter_lvl2_el.input_check-filter {
    max-width: 25%;
    flex: 0 0 25%;
    position: relative;
    padding-left: 15px;
    padding-right: 15px;
    /* display: -ms-flexbox!important;
    display: flex!important; */
}

.tabFiltriProdotti .product_filter_lvl2 .borderTop {
    border-top: 2px solid rgba(0,0,0,.2);
    width: calc(100% - 30px);
    margin: auto;
    padding-bottom: 40px;
}

.tabFiltriProdotti .label {
    display: block;
    position: relative;
    padding-left: 31px;
    margin-bottom: 15px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-weight: bold;
}
  
.tabFiltriProdotti .label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    /* width: 20px; */
    width: 100%;
    height: 20px;
    z-index: 1000;
    top: 0;
    left: 0;
}
  
.tabFiltriProdotti .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: transparent;
    border: 1px solid;
}
  
.tabFiltriProdotti .label:hover input ~ .checkmark {
    background-color: #ccc;
}
  
/* .tabFiltriProdotti .label input:checked ~ .checkmark {
    background-color: var(--red);
} */
  
.tabFiltriProdotti .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
  
.tabFiltriProdotti .label input:checked ~ .checkmark:after {
    display: block;
}
  
.tabFiltriProdotti .label .checkmark:after {
    left: 5px;
    top: 0px;
    width: 8px;
    height: 14px;
    border: solid var(--red);
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* .product_filter_lvl2_el.input_check-filter {
    display: -ms-flexbox!important;
    display: flex!important;
    -ms-flex-direction: column!important;
    flex-direction: column!important;
} */

.product_filter_lvl2_title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 15px;
}

.input_check-filter select {
    width: 100%;
    height: 50px;
    font-size: 14px;
    font-weight: light;
    cursor: pointer;
    border-radius: 0;
    border: none;
    border-bottom: 0;
    color: var(--grey);
    padding: 10px;
    border: 1px solid #b3b3b3;
    /* appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none; */
    transition: 0;
}

.input_check-filter select::-ms-expand {
    display: none; 
}

.input_check-filter select option {
    white-space: normal;
    outline-color: var(--red);
    font-size: 14px;
    color: var(--textcolor_dark);
    display: block;
    white-space: nowrap;
    font-weight: normal;
}

/* .input_check-filter select:hover,
.input_check-filter select:focus {
    color: #c0392b;
    background-color: white;
    border-bottom-color: #DCDCDC;
} */

.filtri .box_check-filter {
    padding: 30px 15px;
}

@media(max-width:1024px){
    .tabSettori .nav-pills li a {
        font-size: 22px;
    }

    .list-special li.fz20 {
        font-size: 16px !important;
    }
}

@media(max-width:991px){
    .tabSettori .abs_tabSettori_edilizia {
        position: static;
        max-width: 50%;
        margin: 30px auto 0px;
        display: block;
    }

    .list-special.col3 ul li {
        width: 50%;
    }

    .tabFiltriProdotti .input_check-filter,
    .product_filter_lvl2 .product_filter_lvl2_el.input_check-filter {
        max-width: 50%;
        flex: 0 0 50%;
    }

    .tabSettori .tab-content {
        padding-left: 15px;
        padding-right: 15px;
    }

    #accordionSoluzioni .content_accordion .colContent-full .box_link p,
    #accordionSoluzioni .content_accordion .colContent-full .box_link a {
        font-size: 14px;
    }
}

@media(max-width:767px){
    .tabFiltriProdotti .product_tipologia {
        font-size: 18px;
    }

    .input_check-filter select {
        font-size: 14px;
    }
    
    /* trasforma in accoriond */
    .tabs-responsive .nav-pills {
        display: none !important;
    }

    .tabs-responsive .card-header {
        display: block !important;
    }

    .tabs-responsive .card-header button {
        font-weight: bold;
        font-size: 16px;
        text-align: left;
    }

    .tabs-responsive .card-header button[aria-expanded="true"] {
        color: var(--red);
    }
    
    .tabs-responsive .tab-content>.tab-pane {
        display: block;
        opacity: 1;
    }

    .tabs-responsive .tit_hide_accordion {
        display: none;
    }

    .tabs-responsive .collapse {
        padding-bottom: 30px;
        padding-top: 30px;
    }

    .tabs-responsive .card-body {
        padding: 0px;
    }

    /* trasforma in accoriond */

    .tabSettori .col {
        max-width: 100%;
        flex: 0 0 100%;
        margin: 0px 0px;
    }

    .tabSettori:not(.special) .tab-content {
        padding: 0 !important;
    }

    #accordionSoluzioni .btn_accordion {
        padding-bottom: 0px;
    }
}

@media(max-width:567px){

    .general-content p {
        font-size: 14px;
    }

    .list-special li, .list-special.col3 ul li {
        width: 100%;
    }

    .tabSettori .nav-pills li a {
        font-size: 16px;
    }
}

@media(max-width:480px){

    .input_check-filter select {
        width: 100%;
        height: 40px;
    }
}

.row_fotovoltaico {
    width: 40%;
    max-width: 100%;
    flex: 0 0 40%;
}

.row_fotovoltaico_text {
    width: 60%;
    max-width: 100%;
    flex: 0 0 60%;
    padding-right: 30px;
}

.row_fotovoltaico .box_fotovoltaico {
    padding: 20px 20px;
    margin: 25px 0px;
    border-left: 1px solid rgba(0,0,0,.3);
}

.row_fotovoltaico .box_fotovoltaico .value {
    font-weight: bolder;
    color: var(--grey);
    font-size: 40px;
    white-space: nowrap;
}

#tabServizi .col-servizio {
    border-left: 1px solid rgba(0,0,0,.3);
    padding: 10px 30px !important;
}

.map iframe {
    width: 100%;
    height: 500px;
}

.col-academy {
    display: -ms-flexbox!important;
    display: flex!important;
    -ms-flex-align: center!important;
    align-items: center!important;
    -ms-flex-wrap: wrap!important;
    flex-wrap: wrap!important;
}

.col-academy .textInfo {
    width: 70%;
    flex: 0 0 70%;
    max-width: 70%;
    height: 100%;
}

.col-academy .metaInfo {
    width: 30%;
    flex: 0 0 0;
    max-width: 30%;
    border-right: 1px solid rgba(0,0,0,.3);
    height: 100%;
    padding: 0px 30px;
    display: flex;
    flex-direction: column;
    align-items: end;
}

.col-academy .textInfo .padd {
    padding: 0px 30px 30px;
    border-bottom: 1px solid rgba(0,0,0,.3);
}

.col-academy .textInfo .padd-btn {
    padding: 30px;
    margin-bottom: 0px;
    margin-top: auto;
}

.col-academy .metaInfo .data {
    background-color: var(--darkgrey);
    padding: 20px;
    text-align: center;
    color: var(--lightgrey);
}

.eventi.col-academy .metaInfo .data, .fiere.col-academy .metaInfo .data,
.exhibitions.col-academy .metaInfo .data, .events.col-academy .metaInfo .data,
.salons.col-academy .metaInfo .data, .evenements.col-academy .metaInfo .data {
    background-color: #910a0d;
}

.col-academy .metaInfo .data .gg {
    font-size: 2.8vw;
    line-height: 2.8vw;
}

.col-academy .metaInfo .data .m {
    font-size: 1.5vw;
    line-height: 1.5vw;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.col-academy .metaInfo .data .y {
    letter-spacing: 0.05em;
    /* font-size: 18px; */
}

.row-past .academy-past {
    border-bottom: 1px solid rgba(0,0,0,.3);
}

.box-singledate {
    border-left: 1px solid rgba(0,0,0,.3);
    padding: 15px;
}

@media(max-width:991px){
    .row_fotovoltaico .box_fotovoltaico .value {
        font-size: 30px;
    }
    
    .row_fotovoltaico_text {
        padding-right: 15px;
    }

    .row_fotovoltaico .box_fotovoltaico {
        padding: 15px 15px;
        margin: 15px 0px;
    }

    #tabServizi .card .collapse {
        padding: 30px 15px;
    }
}

@media(max-width:767px){
    .row_fotovoltaico {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }
    
    .row_fotovoltaico_text {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }

    .map iframe {
        height: 300px;
    }

    .col-academy .metaInfo {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
        border-right: 0;
        height: auto;
        padding: 0px 0px;
        flex-direction: column;
        align-items: start;
        flex-wrap: wrap;
        margin-bottom: 15px;
    }

    .col-academy .textInfo .padd {
        padding: 0px 0px 15px;
    }

    .col-academy .metaInfo .data .gg {
        font-size: 36px;
        line-height: 36px;
    }

    .col-academy .metaInfo .data .m {
        font-size: 26px;
        line-height: 26px;
    }

    .col-academy .metaInfo .data .y {
        font-size: 18px !important;
    }

    .col-academy .textInfo .padd-btn {
        padding: 15px 0px;
    }

    .col-academy .textInfo {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
        height: auto;
    }

    .col-academy .metaInfo .data {
        width: auto;
    }
}

.post-loading {
    max-width: 40px;
    margin-top: 30px;
}

/*single-product*/

.single-product .codici .table_cod {
    padding: 20px 0px;
    border-top: 1px solid rgba(0,0,0,.3);
    /* border-bottom: 1px solid rgba(0,0,0,.3); */
    display: -ms-flexbox!important;
    display: flex!important;
    /* -ms-flex-align: center!important; */
    /* align-items: center!important; */
}

.single-product .codici .table_cod:last-of-type {
    border-bottom: 1px solid rgba(0,0,0,.3);
}

.single-product .codici .table_cod span:after {
    content: " | ";
    padding-right: 10px;
    padding-left: 10px;
}

.single-product .codici .table_cod span:last-of-type:after {
    content: "";
    padding-right: 0px;
    padding-left: 10px;
}

.single-product .codici .table_cod .tit {
    color: var(--grey);
    font-weight: light;
    max-width: 200px;
    flex: 0 0 200px;
    padding-right: 10px;
    font-size: 18px;
}

.single-product .codici .table_cod .text {
    font-weight: bold;
}

.single-product .btn_group a {
    margin-right: 15px;
    margin-bottom: 15px;
}

/* .single-product .tr_table {
    min-width: 20%;
    max-width: 20%;
    overflow: hidden;
    border-left: 1px solid rgba(0,0,0,.3);
}

.single-product .tr_table:last-of-type {
    border-right: 1px solid rgba(0,0,0,.3);
}

.single-product .tr_table .thead {
    padding: 10px 15px;
    border-bottom: 1px solid rgba(0,0,0,.3);
    color: var(--grey);
    font-weight: light;
}

.single-product .tr_table .tbody {
    padding: 10px 15px;
    font-weight: bold;
}

.single-product .box_table {
    overflow-y: auto;
    border-top: 1px solid rgba(0,0,0,.3);
    border-bottom: 1px solid rgba(0,0,0,.3);
} */

/**/
.table {
    /* border: 1px solid red; */
    overflow: auto;
    display: flex;
    flex-direction: column;
    /* background-color: #fff; */
}

.table .thead-tr, .table .tbody-tr {
    display: flex;
}

.table .thead-tr .td {
    border-top: 1px solid rgba(0,0,0,.3);
    border-bottom: 1px solid rgba(0,0,0,.3);
}

.table .tbody-tr .td {
    border-bottom: 1px solid rgba(0,0,0,.3);
    font-weight: bold;
}

.table .thead-tr .td, .table .tbody-tr .td {
    width: calc(20% - 1px);
    max-width: calc(20% - 1px);
    flex: 0 0 calc(20% - 1px);
    border-left: 1px solid rgba(0,0,0,.3);
    padding: 15px;
}

.table .thead-tr .td:last-of-type, .table .tbody-tr .td:last-of-type {
    border-right: 1px solid rgba(0,0,0,.3);
}

/**/

.single-product .box_table::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

.single-product .box_table::-webkit-scrollbar-button {
    width: 0px;
    height: 0px;
}

.single-product .box_table::-webkit-scrollbar-thumb {
    background: var(--grey);
    border: 0px none #ffffff;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
}

.single-product .box_table::-webkit-scrollbar-track {
    background-color: var(--lightgrey);
}

.single-product .box_table::-webkit-scrollbar-thumb:hover,
.single-product .box_table::-webkit-scrollbar-thumb:active {
    background: var(--darkgrey);
}

.single-product .box_table::-webkit-scrollbar-track:hover,
.single-product .box_table::-webkit-scrollbar-track:active {
    background: var(--lightgrey);
}

.single-product .box_table::-webkit-scrollbar-corner {
    background: transparent;
}

.single-product .tit-product {
    font-size: 48px;
    line-height: 50px;
}

.product_container,
.product_reticola {
    position: relative;
    border-bottom: 2px solid rgba(0,0,0,.2);
    border-top: 2px solid rgba(0,0,0,.2);
    background-color: #fff;
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 0px 15px;
}

#products-loading {
    display: block;
    margin: auto;
    width: 70px;
    position: absolute;
    left: 0;
    right: 0;
    top: 20px;
}

.row_search_prod {
    margin-top: 30px;
    padding-left: 45px
}

.row_search_prod button {
    font-weight: bold;
    font-size: 18px;
    position: relative;
    padding-left: 35px;
}

.row_search_prod button:hover {
    opacity: 0.5;
}

.row_search_prod button img {
    position: absolute;
    left: 0px;
    filter: invert(1);
    top: 50%;
    transform: translate(0px, -50%);
    -webkit-transform: translate(0px, -50%);
    -moz-transform: translate(0px, -50%);
    -ms-transform: translate(0px, -50%);
    -o-transform: translate(0px, -50%);
    -webkit-filter: invert(1);
}

.btn_reset {
    color: var(--red);
    font-weight: bold;
    font-size: 14px;
    position: absolute;
    top: 50px;
    right: 30px;
}

.btn_reset_select {
    color: var(--red);
    font-weight: bold;
    font-size: 14px;
    position: absolute;
    top: 13px;
    right: 15px;
    width: 20px;
    height: 20px;
}

.btn_reset_select:after {
    content: "+";
    font-size: 24px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    position: absolute;
    position: absolute;
    top: -5px;
    right: 2px
}

.btn_reset:hover,
.btn_reset_select:hover {
    opacity: 0.5;
}

#galleryProduct .big_gallery .square_img_prod {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    overflow: hidden;
    position: relative;
    /* margin-left: 10%; */
    background-color: #fff;
    margin-bottom: 20px;
    border: 2px solid #ccc;
}

#galleryProduct .galleryProductThumb .square_img_prod {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    overflow: hidden;
    position: relative;
    background-color: #fff;
}

#galleryProduct .galleryProductThumb .swiper-slide {
    cursor: pointer;
}

#galleryProduct .galleryProductThumb .swiper-slide:hover,
#galleryProduct .galleryProductThumb .swiper-slide-thumb-active {
    opacity: 0.5;
}

.square_img_prod img {
    position: absolute;
    top: 0px;
    left: 0px;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.col_variante .box_codice_prod {
    padding: 4px 20px;
    border-left: 1px solid rgba(0,0,0,.3) !important;
    margin: 4px 0px;
}

.col_variante .box_codice_prod:last-of-type {
    border-right: 1px solid rgba(0,0,0,.3) !important;
}

/* .col_variante .table tr:first-of-type td {
    padding-left: 0px;
} 

.col_variante .table tr:last-of-type td {
    border-right: 0px solid rgba(0,0,0,.3) !important;
} */

.col_variante .card {
    background-color: transparent;
    border: 0px solid;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
}

.col_variante .card .card-header {
    padding: 10px 0px;
    margin-bottom: 0;
    background-color: transparent;
    border-bottom: 0px;
}

.col_variante .card-body {
    padding: 10px 0px;
}

.col_variante  .btn_accordion:after {
    content: "+";
    color: var(--textcolor_dark);
    font-weight: 500;
    font-size: 22px;
    transition: all 200ms linear;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    z-index: 1000;
    cursor: pointer;
    position: absolute;
    top: -3px;
    right: -30px;
}

.col_variante  .btn_accordion[aria-expanded="true"]:after {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transition: all 200ms linear;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
}

#tabSoluzioni .soluzioni_box_anchor {
    width: 30%;
    max-width: 30%;
    flex: 0 0 30%;
    padding: 0px 50px 0px 0px
}

#tabSoluzioni .img_render {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    margin: auto;
    margin-left: -30px;
}

#tabSoluzioni .img_render img {
    margin: auto;
    display: block;
    max-width: 100%;
}

#tabSoluzioni .soluzioni_box_anchor .box_anchor {
    border-bottom: 1px solid rgba(0,0,0,.3);
}

/* #tabSoluzioni .soluzioni_box_anchor .box_anchor:first-of-type {
    border-top: 1px solid rgba(0,0,0,.3);
} */

#tabSoluzioni .soluzioni_box_anchor .box_anchor a:hover {
    background-color: var(--darkgrey);
    color: #fff;
}

#tabSoluzioni .soluzioni_box_anchor .box_anchor a {
    font-size: 18px;
    font-weight: bold;
    padding: 20px 15px;
    display: block;
}

#tabSoluzioni .accordion_excerpt {
    padding: 0px;
}

#tabSoluzioni {
    padding: 20px 30px 0px;
}

#tabSoluzioni .accordion_excerpt .card_accordion {
    padding: 25px 0px;
}

#tabSoluzioni .accordion_excerpt .card_accordion:first-of-type {
    border-top: 1px solid #ccc;
}

#tabSoluzioni .accordion_excerpt .card_accordion:last-of-type {
    border-bottom: 1px solid #ccc;
}

#tabSoluzioni .arrow-right {
    border: solid var(--red);
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(-45deg) translate(2px, 0px);
    -webkit-transform: rotate(-45deg) translate(2px, 0px);
    -moz-transform: rotate(-45deg) translate(2px, 0px);
    -ms-transform: rotate(-45deg) translate(2px, 0px);
    -o-transform: rotate(-45deg) translate(2px, 0px);
}

.archive-schedetecniche .card {
    padding-left: 15px;
    padding-right: 15px;
}

.archive-schedetecniche .standard-accordion .card-header button:before {
    right: 15px;
}

.archive-schedetecniche .img_abs {
    position: absolute;
    right: 0px;
    width: 30%;
}

.scroll_table_img {
    display: none;
}

@media(max-width:1200px){
    .tabFiltriProdotti .input_check-filter {
        max-width: 33.3333%;
        flex: 0 0 33.3333%;
    }

    .single-product .tit-product {
        font-size: 40px;
        line-height: 44px;
    }

    .single-product .loghi_cert img {
        width: 60px;
    }
}

@media(max-width:991px){
    .tabFiltriProdotti .input_check-filter {
        max-width: 50%;
        flex: 0 0 50%;
    }

    .table .thead-tr .td, .table .tbody-tr .td {
        width: calc(25% - 1px);
        max-width: calc(25% - 1px);
        flex: 0 0 calc(25% - 1px);
    }

    .scroll_table_img {
        display: block;
        position: absolute;
        width: 40px;
        background-color: var(--darkgrey);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        padding: 8px;
        left: 0;
        right: 0;
        margin: auto;
        bottom: 0px;
        animation: toScroll 1000ms ease-in-out infinite 1s alternate;
        -webkit-animation: toScroll 1000ms ease-in-out infinite 1s alternate;
    }

    @keyframes toScroll {
        0% {
            transform: rotate(0deg);
            -webkit-transform: rotate(0deg);
            -moz-transform: rotate(0deg);
            -ms-transform: rotate(0deg);
            -o-transform: rotate(0deg);
        }
        100% {
            transform: rotate(5deg);
            -webkit-transform: rotate(5deg);
            -moz-transform: rotate(5deg);
            -ms-transform: rotate(5deg);
            -o-transform: rotate(5deg);
        }
    }
}

@media(max-width:767px){
    #tabSoluzioni .img_render {
        margin-left: 0px;
    }

    #tabSoluzioni {
        padding: 0px !important;
    }

    .btn_reset {
        top: 70px;
        right: 30px;
    }

    .tabFiltriProdotti .content_FiltriProdotti {
        padding: 30px 0px;
    }

    .row_search_prod {
        padding-left: 15px;
    }

    .row_search_prod button {
        font-size: 16px;
    }
}

@media(max-width:567px){
    .tabSettori .tab-content {
        padding-left: 15px;
        padding-right: 15px;
    }

    .single-product .codici .table_cod .tit {
        max-width: 100px;
        flex: 0 0 100px;
        font-size: 12px;
    }

    .single-product .tit-product {
        font-size: 30px;
        line-height: 34px;
    }

    .tabFiltriProdotti .product_tipologia {
        font-size: 16px;
        padding: 15px 15px;
    }

    .btn_reset {
        position: static;
        padding-left: 15px;
        padding-bottom: 20px;
        padding-top: 0px;
    }

    .tabFiltriProdotti .input_check-filter, .product_filter_lvl2 .product_filter_lvl2_el.input_check-filter {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .table .thead-tr .td, .table .tbody-tr .td {
        width: calc(50% - 1px);
        max-width: calc(50% - 1px);
        flex: 0 0 calc(50% - 1px);
        font-size: 12px;
    }
}

.modal-video {
    position: fixed;
    min-width: 100%; 
    min-height: 100%;
    top: 0px;
    left: 0px;
    background-color: rgb(0 0 0 / 80%);
    z-index: 99999;
    display: none;
}

.modal-video .content-video {
    width: auto;
    height: 80%;
    margin: auto;
    border: 2px solid red;
    overflow: hidden;
    /* display: flex;
    justify-content: center;
    align-items: center;
    position: relative; */
    /* box-shadow: 0px 0px 10px 10px #000; */
}

.modal-video .videoWrapper {
    position: relative;
    height: 100vh;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal {
    position: absolute;
    color: #FFF;
    top: 0;
    right: 0;
    text-transform: uppercase;
    font-weight: bold;
    background-color: #000;
    padding: 10px;
    z-index: 99999;
}

.videoWrapper video {
    object-fit: cover;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
}

@media(max-width:767px){
    .videoWrapper video {
        width: 90vw;
        height: auto;
        bottom: 0;
        margin: auto;
        right: 0;
    }
}

.row_grid_gallery {
    column-count: 3; 
    column-gap: 15px;
}

.row_grid_gallery .col_img {
    display: grid;
    grid-template-rows: 1fr auto;
    margin-bottom:15px;
    break-inside: avoid;
}

.row_grid_gallery .col_img  img {
    grid-row: 1 / -1;
    grid-column: 1; max-width: 100%;
    display: block;
}

.row_grid_gallery .col_img--video {
    display: grid;
    grid-template-rows: 1fr auto;
    grid-template-columns: 2fr auto;
    margin-bottom:15px;
    break-inside: avoid;
}

.row_grid_gallery .col_img--video .box-video {
    display: grid;
    grid-template-rows: 1fr auto;
    margin-bottom:15px;
    break-inside: avoid;
}

#swiperCitazioni .navigation.nav-product {
    padding: 0px;
    position: relative;
}

/*svg*/

.svgAnimation .svgImage {
	z-index: 10;
}

.svgAnimation .svgPoint {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 100;
}

.svgPoint .svgScroll:hover {
	opacity: 0.5;
}

.svgAnimation .svgPoint text {
	font-size: 15px;
    white-space: nowrap;
}

.nocopy {
    /* cursor: none !important; */
    /* cursor: none !important; */

    -youbkit-touch-callout: none; /* Safari iOS */
    -youbkit-user-select: none;   /* Chrome 6.0+, Safari 3.1+, Edge e Opera 15+ */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;        /* IE 10+ e Edge */
    user-select: none; 
}

.search .name_page {
    margin-bottom: 15px;
    border-bottom: 2px solid #0000001f;
    padding-bottom: 15px
}

.mail_filter {
    filter: brightness(0.1);
    -webkit-filter: brightness(0.1);
}

.mailto_img:hover img.mail_filter {
    filter: brightness(1);
    -webkit-filter: brightness(1);
}

.mailto_img.towhite img {
    filter: grayscale(1) invert(1) contrast(6);
    -webkit-filter: grayscale(1) invert(1) contrast(6);
}

.mailto_img.towhite:hover img {
    filter: grayscale(0) invert(0) contrast(1);
    -webkit-filter: grayscale(0) invert(0) contrast(1);
}

.lang-item {
    list-style: none;
}

/* */
@media(min-width:768px){
.pum-theme-5278 .pum-container, .pum-theme-tema-predefinito .pum-container {
    width: auto !important;
}
}

i {
    font-style: italic;
}