:root {
    /* --font : "garamond-premier-pro-display", serif; */
    --font : "garamond-premier-pro-subhead";
    --primary-color: #aa9883;
    --second-color : #c6075c;
    --darkback-color : #002a3a;
    --light_background : #eae5e0;
    --gd_primary : #b8a8f3;
    --gd_blu : #00d0c9;
}

@font-face {
    font-family: 'Aquawax';
    src: url('../fonts/Aquawax-Medium.eot');
    src: url('../fonts/Aquawax-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Aquawax-Medium.woff2') format('woff2'),
        url('../fonts/Aquawax-Medium.woff') format('woff'),
        url('../fonts/Aquawax-Medium.ttf') format('truetype'),
        url('../fonts/Aquawax-Medium.svg#Aquawax-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aquawax';
    src: url('../fonts/Aquawax-Light.eot');
    src: url('../fonts/Aquawax-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Aquawax-Light.woff2') format('woff2'),
        url('../fonts/Aquawax-Light.woff') format('woff'),
        url('../fonts/Aquawax-Light.ttf') format('truetype'),
        url('../fonts/Aquawax-Light.svg#Aquawax-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aquawax';
    src: url('../fonts/Aquawax-Black.eot');
    src: url('../fonts/Aquawax-Black.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Aquawax-Black.woff2') format('woff2'),
        url('../fonts/Aquawax-Black.woff') format('woff'),
        url('../fonts/Aquawax-Black.ttf') format('truetype'),
        url('../fonts/Aquawax-Black.svg#Aquawax-Black') format('svg');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}


/* font-family: "garamond-premier-pro-display"; */
/* font-family: "garamond-premier-pro"; */
/* font-family: "garamond-premier-pro-caption"; */
/* font-family: "garamond-premier-pro-subhead";*/

/* @import url("https://use.typekit.net/tyi0itm.css"); */

* {
	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);
    /* overflow-x: hidden; */
}

.wrapper {
    padding-left: 75px;
    width: 100%;
}

@media(max-width:768px){
    .wrapper {
        padding-left: 0;
        width: 100%;
        padding-top: 60px;
    }
}

/* .special-font {font-family: 'Bebas Neue';} */

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, .current-menu-item a {
	color: var(--second-color) !important;
    text-decoration: none;
}

h1, .h1 {
    font-size: 64px;
    line-height: 64px;
}

h2, .h2 {
	font-size: 60px;
    line-height: 58px;
}

h3 {
	font-size: 52px;
    line-height: 42px;
}

h4 {
	font-size: 30px;
    line-height: 30px;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0px;
}

@media(max-width:1024px){

    h1 {
        font-size: 48px;
        line-height: 44px;
    }
}

@media(max-width:768px){

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

    h3 {
        font-size: 34px;
        line-height: 34px;
    }
}

@media(max-width:576px){

}

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

.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: #43b0e5;
    text-decoration: none;
}

.relative {
	position: relative;
}

.background-black { background-color: #000 !important; }
.background-grey { background-color: #dcddde !important; }
.background-white { background-color: #fff !important; }
.background-primary { background-color:var(--primary-color) }

.color-white { color: #fff !important; }
.color-primary {
    color: var(--primary-color);
}

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

.underline { text-decoration: underline !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-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: 900 !important;
}

.light {
	font-weight: 300;
}

.medium {
	font-weight: 500;
}

.semibold {
    font-weight: 600;
}

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

.overflow {
    overflow: hidden;
}

.overflow-x {
    overflow-x: 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%;
}

video {
    max-width: 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             ------------------ */
/* ----------------------------------------------------------------------------- */

.modal {
    z-index: 99999;
}

/*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;
}


@media(max-width:1024px){
    .modal {
        bottom: auto;
        top: 20px;
        max-height: 80%;
    }

}

/* ----------------------------------------------------------------------------- */
/* ------------------        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-border {
    border: 2px solid var(--second-color);
    color: var(--second-color);
    padding: 8px 15px;
    font-weight: 700;
    display: inline-block;
    font-size: 16px;
}

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

.btn-full {
    background-color: var(--second-color);
    border: 2px solid var(--second-color);
    color: #fff;
    padding: 8px 15px;
    font-weight: 700;
    display: inline-block;
    font-size: 16px;
}

.btn-full:hover {
    border: 2px solid var(--second-color);
    color: var(--second-color);
    background-color: #fff;
}

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

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


@media(max-width:757px){
    .btn-border, .btn-full {
        padding: 6px 10px;
        font-size: 16px;
    }
}

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

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

.wpcf7-form label {
    margin-top: 20px;
    margin-bottom: 5px;
    text-align: left;
    display: inline-block;
    width: 100%;
    color: #fff;
    font-size: 18px;
}

.wpcf7-form input {
    width: 100%;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 0px 10px;
    margin: 5px 0px;
    /*-webkit-appearance: none;*/
    border-radius: 0 !important;
    font-size: 18px;
    color: #000;
}

.wpcf7-form input[type="file"] {
    padding: 0px 0px;
    margin: 5px 0px;
    background-color: transparent;
}

.wpcf7-form textarea {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    height: 120px;
    /*color: #14233a;*/
    padding: 10px;
    margin: 5px 0px;
    border-radius: 0 !important;
    resize: none;
    margin-bottom: 15px;
    font-size: 18px;
    color: #000;
}

.wpcf7-form select {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    height: 40px;
    /*color: #14233a;*/
    padding: 0px 10px;
    /*background: rgba(0,0,0,1);*/
    /* -webkit-appearance:none; */
    font-size: 16px;
    color: #000;
    margin: 5px 0px;

}

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

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

::-webkit-input-placeholder { /* Edge */
  color: var(--black-color);
}


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

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

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

.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: 16px;
    font-weight: 400;
    text-transform: none;
}

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

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

.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: 20px;	
}

.fz24 {
    font-size: 24px;
}

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

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

button, .whatsapp_btn {
	cursor: pointer;
}

@media(max-width: 1024px){
	.font-text--primary, p, a, li {
    	font-size: 18px;
	}
}

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

.container-custom {
    /* width: 100%; */
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    width: 90%;
}

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

/* header */
.menu_side_wrap {
    position: fixed;
    z-index: 99999;
    left: 0px;
    top: 0;
    bottom: 0;
    width: 75px;
    padding: 0;
}

.navbar-toggler {
    width: 35px;
    margin: 15px auto;
    padding: 0px;
    display: block;
}

header .navbar-toggler span {
    height: 2px;
    width: auto;
    display: block;
    margin: 5px 0px;
    background-color: #fff;
    transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
}

header .navbar-toggler.nav_open span.first {
    transform: rotate(45deg) translate(0px, 5px);
    -webkit-transform: rotate(45deg) translate(0px, 5px);
    -moz-transform: rotate(45deg) translate(0px, 5px);
    -ms-transform: rotate(45deg) translate(0px, 5px);
    -o-transform: rotate(45deg) translate(0px, 5px);
}

header .navbar-toggler.nav_open span.second {
    display: none;
}

header .navbar-toggler.nav_open span.third {
    transform: rotate(-45deg) translate(0px, -5px);
    -webkit-transform: rotate(-45deg) translate(0px, -5px);
    -moz-transform: rotate(-45deg) translate(0px, -5px);
    -ms-transform: rotate(-45deg) translate(0px, -5px);
    -o-transform: rotate(-45deg) translate(0px, -5px);
}

.navbar-brand {
    height: 190px;
    margin: 0;
}

@media(max-width:1200px){
    .navbar-brand .logo img {
        width: 120px;
    }
}

@media(max-width: 576px){
    .navbar--social.navbar-nav .nav-item {
        padding-right: 10px !important;
        padding-left: 10px !important;
    }

    .navbar-nav .dropdown-menu {
        border: 0px !important;
        margin: 0px;
        padding: 0px;
    }
}

/* General styles for all menus */
.boo-menu {
    position: fixed;
    width: 350px;
    min-width: 250px;
    max-width: 80%;
    height: 100%;
    top: 0;
    z-index: 1000;
    left: 75px;
    z-index: 1000;
    padding: 30px 35px;
    visibility: hidden;
    background-color: var(--primary-color);

    display: -ms-flexbox!important;
    display: flex!important;
    -ms-flex-direction: column!important;
    flex-direction: column!important;
    transform: translate(-150%, 0%);
    -webkit-transform: translate(-150%, 0%);
    -moz-transform: translate(-150%, 0%);
    -ms-transform: translate(-150%, 0%);
    -o-transform: translate(-150%, 0%);
    transition: all 600ms ease-in-out;
    -webkit-transition: all 600ms ease-in-out;
    -moz-transition: all 600ms ease-in-out;
    -ms-transition: all 600ms ease-in-out;
    -o-transition: all 600ms ease-in-out;
}

.boo-menu {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
  
.boo-menu::-webkit-scrollbar,
.boo-menu::-webkit-scrollbar {
    display: none;
}
  
.boo-menu::-webkit-scrollbar-track,
.boo-menu::-webkit-scrollbar-track {
    display: none;
}
  
.boo-menu::-webkit-scrollbar-thumb,
.boo-menu::-webkit-scrollbar-thumb  {
    display: none;
}

.boo-menu .navbar-nav a {
    display: block;
    color: #000;
    font-size: 20px;
}

.menu-item {
    position: relative;
}

.boo-menu .navbar-nav a:after {
    content: "";
    background-image: url('../images/right_icon.svg');
    background-repeat: no-repeat;
    background-size: 20px;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 0px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.boo-menu .navbar-nav .dropdown-toggle {
    color: #fff;
    cursor: text;
}

.dropdown-toggle:hover {
    color: #fff !important;
}

.boo-menu ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
}

.navbar-nav > li {
    padding-top: 12px;
    padding-bottom: 12px;
}

.dropdown-menu {
    padding: 0px 0;
    margin: 0;
    font-size: 20px;
    background-color: transparent;
    border: 0px;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    display: block !important;
}

.dropdown-menu li {
    border-bottom: 0px !important;
}

.navbar-content {
    position: relative;
    z-index: 9999;
    height: 100%;
    margin: auto;
    width: 75px;
    background-color: var(--darkback-color);
}

.navbar-content .logo {
    position: absolute;
    transform-origin: center;
    opacity: 0;
    width: 75px;
    left: 0;
    top: 100px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    transform: translate(0px, 100%) rotate(-90deg);
    -webkit-transform: translate(0px, 100%) rotate(-90deg);
    -moz-transform: translate(0px, 100%) rotate(-90deg);
    -ms-transform: translate(0px, 100%) rotate(-90deg);
    -o-transform: translate(0px, 100%) rotate(-90deg);
}

.navbar-content .logo.activate {
    animation: showLogo 500ms linear 0s forwards;
    -webkit-animation: showLogo 500ms linear 0s forwards;
}

@keyframes showLogo {
    50% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        transform: translate(0px, 0%) rotate(-90deg);
        -webkit-transform: translate(0px, 0%) rotate(-90deg);
        -moz-transform: translate(0px, 0%) rotate(-90deg);
        -ms-transform: translate(0px, 0%) rotate(-90deg);
        -o-transform: translate(0px, 0%) rotate(-90deg);
    }
}

.boo-menu.boo-menu-open {
    overflow-y: auto;
    overflow-x: hidden;
    transition: all 600ms ease-in-out;
    -webkit-transition: all 600ms ease-in-out;
    -moz-transition: all 600ms ease-in-out;
    -ms-transition: all 600ms ease-in-out;
    -o-transition: all 600ms ease-in-out;
    visibility: visible;
    transform: translate(0%, 0%);
    -webkit-transform: translate(0%, 0%);
    -moz-transform: translate(0%, 0%);
    -ms-transform: translate(0%, 0%);
    -o-transform: translate(0%, 0%);
}

.dropdown-toggle::after {
    display: none;
}

.dropdown-toggle[aria-expanded="true"] {
    opacity: 0.5;
}

.navbar-nav {
    padding-top: 30px;
    padding-bottom: 30px;
}

.lang-item.current-lang {
    display: none !important;
}

@media(max-width: 768px){
    .menu_side_wrap {
        background-color: transparent;
        position: fixed;
        top: 0px;
        right: 0px;
        width: 100%;
        bottom: inherit;
        height: 60px;
    }

    .navbar-toggler {
        margin: 0;
    }

    .boo-menu {
        min-width: auto;
        width: 100%;
        right: 0;
        max-width: 100%;
        left: 0;
        top: 60px;
        padding: 15px 25px 80px 25px;
        transform: translate(0%, -200%);
        -webkit-transform: translate(0%, -200%);
        -moz-transform: translate(0%, -200%);
        -ms-transform: translate(0%, -200%);
        -o-transform: translate(0%, -200%);
    }

    .boo-menu .logo {
        display: none !important;
    }

    .navbar-nav {
        padding-top: 0px;
        padding-bottom: 20px;
    }

    .navbar-content {
        padding: 10px 20px;
        width: 100%;
        height: 5px;
        flex-direction: row-reverse !important;
        justify-content: space-between !important;
    }

    .navbar-content .logo {
        position:static;
        transform: translate(0px, 0%) rotate(0deg);
        -webkit-transform: translate(0px, 0%) rotate(0deg);
        -moz-transform: translate(0px, 0%) rotate(0deg);
        -ms-transform: translate(0px, 0%) rotate(0deg);
        -o-transform: translate(0px, 0%) rotate(0deg);
        display: flex;
        align-items: center;
        opacity: 1;
}

    .boo-menu .navbar-nav a {
        font-size: 18px;
    }
}

footer {
    background-color: var(--darkback-color);
    padding-top: 50px;
    padding-bottom: 50px;
    color: #fff;
}

footer ul li {
    color: var(--primary-color);
}

footer ul li a {
    color: #fff;
}

@media(max-width:767px){
    footer .logo img {
        display: block;
        margin: auto;
    }

    footer .col.foot {
        flex: 0 0 50%;
        padding-bottom: 20px;
    }
}

@media(max-width:567px){

    footer .col.foot {
        flex: 0 0 100%;
    }
}

/* */
.head-home {
    position: relative;
    width: 100%;
    height: 100vh;
    color: #fff;
}

section.head-home:not(.gea-digital):before {
    content: "";
    position: absolute;
    width: 100%;
    height: 40%;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    z-index: 1;
}

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

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

.head-home .moreIndex {
    height: 100%;
    max-width: 94%;
    margin: auto;
}

.head-home .moreIndex h1 {
    font-size: 80px;
    line-height: 70px;
}

.head-home .moreIndex h3 {
    font-size: 32px;
    padding-top: 20px;
}

.head-home .logo_head {
    max-width: 100%;
    width: 560px;
    margin-right: 15px;
}

.head-home .btn-scroll {
    position: absolute;
    bottom: 10px;
    /* width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #000;
    display: flex;
    align-items: center;
    justify-content: center; */
    visibility: hidden;
}

.to_white {
    filter: contrast(0) brightness(2);
    -webkit-filter: contrast(0) brightness(2);
}

@media(max-width:1450px){
    .head-home .moreIndex h1 {
        font-size: 5vw;
        line-height: 4vw;
    }

    .head-home .logo_head {
        width: 400px;
    }
}

@media(max-width:1024px){
    .head-home .logo_head {
        width: 360px;
    }
}

@media(max-width:991px){

    .head-home .logo_head {
        width: 360px;
        max-width: 80%;
        margin-bottom: 30px;
    }

    .head-home .moreIndex h3 {
        font-size: 26px;
    }

    .head-home .moreIndex h1 {
        font-size: 56px;
        line-height: 50px;
    }

    .head-home .flexcustom-wrap {
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .head-home .moreIndex {
        text-align: center;
    }

    .head-home .btn-scroll {
        width: 40px;
        height: 40px;
        padding: 12px;
    }
}

@media(max-width:768px){
    .head-home {
        height: calc(100vh - 60px);
    }

    section.head-home:before {
        height: 100;
        background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    }
}

@media(max-width:567px){
    .head-home .moreIndex h3 {
        font-size: 22px;
    }

    .head-home .moreIndex h1 {
        font-size: 40px;
        line-height: 30px;
    }
}

.general-content p {
    padding-top: 5px;
    padding-bottom: 5px;
}

.general-content p:first-of-type {
    padding-top: 0px;
}

.general-content p:last-of-type {
    padding-bottom: 0px;
}

.general-content ul {
    list-style: disc;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
}

.section-alternate, .pTop {
    padding-top: 60px;
    padding-bottom: 60px;
}

.colText .content {
    padding-right: 10%;
}

.section-alternate.row-reverse {
    flex-direction: row-reverse;
}

.section-alternate.row-reverse .colText .content {
    padding-left: 10%;
}

.swiper-custom-next {
    width: 40px;
    height: 40px;
    background-image: url('../images/right_icon.svg');
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
}

.swiper-custom-prev {
    width: 40px;
    height: 40px;
    background-image: url('../images/right_icon.svg');
    background-repeat: no-repeat;
    background-size: contain;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    cursor: pointer;
}

.navigation_swiper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 100;
    bottom: 0;
}

.navigation_swiper.no_abs {
    /* justify-content: center; */
    z-index: 200;
    bottom: 5px;
    top: auto;
    left: 0;
    /* right: 0; */
    justify-content: left;
}

.swiper-button-disabled {
    opacity: 0;
    height: 0 !important;
    /* display: none; */
}

.colGallery .swiper-slide img {
    width: 93% !important;
    margin: auto;
    display: block;
}

#testimonialGallery .swiper-slide,
#newsGallery .swiper-slide {
    padding-bottom: 60px;
}

.swiper-slide img {
    margin: auto;
    display: block;
}

.testimonial, .section-news {
    background-color: #d5cbc1;
}

.section-news {
    background-image: url('../images/img_section-news.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
}

.testimonial .colText,
#newsGallery .colText {
    padding-right: 5%;
}

.testimonial .colText .text,
#newsGallery .colText .text {
    font-size: 34px;
    padding-bottom: 30px;
    position: relative;
    z-index: 100;
}

.testimonial .colText .autore {
    font-weight: 900;
    position: relative;
    z-index: 100;
}

.btn-continua {
    color: var(--second-color);
    text-decoration: underline;
}

.testimonial .colText:before {
    content: "";
    background-image: url('../images/quote.svg');
    position: absolute;
    top: 0px;
    left: 0px;
    background-size: contain;
    background-repeat: no-repeat;
    width: 80px;
    height: 80px;
    transform: rotate(180deg) translate(0px, 30px);
    -webkit-transform: rotate(180deg) translate(0px, 30px);
    -moz-transform: rotate(180deg) translate(0px, 30px);
    -ms-transform: rotate(180deg) translate(0px, 30px);
    -o-transform: rotate(180deg) translate(0px, 30px);
}

.testimonial .colText:after {
    content: "";
    background-image: url('../images/quote.svg');
    position: absolute;
    bottom: 0px;
    right: 0px;
    background-size: contain;
    background-repeat: no-repeat;
    width: 80px;
    height: 80px;
    transform: translate(-30px, 60px);
    -webkit-transform: translate(-30px, 60px);
    -moz-transform: translate(-30px, 60px);
    -ms-transform: translate(-30px, 60px);
    -o-transform: translate(-30px, 60px);
}

.modal-dialog {
    max-width: 90%;
    width: 900px;
    margin: auto;
    display: flex;
    align-items: center;
    height: 100%;
}

.modal-content {
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
}

.modal-body {
    padding: 30px;
}

.modal-body video {
    width: 100%;
}

.modal-content .close {
    font-size: 18px;
    opacity: 1;
    padding-top: 20px;
}

.modal-body .general-content p {
    font-size: 16px;
}

.btnArtchive_abs {
    position: absolute;
    right: 0;
    bottom: 0px;
    z-index: 1000;
}

@media(max-width:1024px){
    .section-alternate, .pTop {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .section-alternate.row-reverse .colText .content {
        padding-left: 0%;
    }

    .colText .content {
        padding-right: 0%;
    }

    .colGallery .swiper-slide img {
        width: 80% !important;
    }

    .colGallery .swiper-slide img {
        width: 100% !important;
    }

    .testimonial .colText .text, #newsGallery .colText .text {
        font-size: 24px;
    }

    .testimonial .colText .autore {
        padding-bottom: 30px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .testimonial .colText .btn-continua {
        padding-top: 30px;
    }

    .testimonial .colText:before {
        width: 60px;
        height: 60px;
    }

    .testimonial .colText:after {
        transform: translate(0px, 10px);
        -webkit-transform: translate(0px, 10px);
        -moz-transform: translate(0px, 10px);
        -ms-transform: translate(0px, 10px);
        -o-transform: translate(0px, 10px);
        width: 60px;
        height: 60px;
    }

    .navigation_swiper {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        margin-top: 15px;
    }

    .swiper-custom-prev, .swiper-custom-next {
        width: 30px;
        height: 30px;
    }

    
}

.head {
    background-position: center;
    background-size: cover;
    width: 100%;
    min-height: 500px;
    color: #fff;
}

.head h1 {
    font-size: 70px;
    line-height: 68px;
    word-wrap: normal;
}

.head p {
    font-size: 30px;
    padding-top: 1rem!important;
}

.row_coll {
    background-color: var(--light_background);
}

.row_coll .colColl {
    -ms-flex-align: center!important;
    align-items: center!important;
    display: -ms-flexbox!important;
    display: flex!important;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 15px;
}

.row_coll .colColl .img {
    flex: 0 0 auto;
    width: 150px;
}

.section-boxlink .col6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.section-boxlink .col6 .content {
    width: calc(74% - 15px);
    margin: auto;
    padding-top: 30px;
    padding-bottom: 30px;
    color: #fff;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

.section-boxlink .col6 .content .tit {
    padding-bottom: 30px;
    font-size: 60px;
    line-height: 60px;
}

.row_soci .colSocio {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 60px;
    position: relative;
    background-color: var( --light_background);
}

.row_soci .colSocio:before {
    content: "";
    width: 100%;
    height: 160px;
    background-color: #fff;
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
}

.row_soci .colSocio .foto,
.row_soci .colSocio .empty,
.panel_ad .foto, .panel_ad .empty {
    display: flex;
    align-items: center;
    width: 90%;
    height: 0;
    position: relative;
    padding-bottom: 120%;
}

.row_soci .colSocio .foto img,
.panel_ad .foto img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}

.row_soci .colSocio .name {
    padding-top: 25px;
    font-size: 36px;
    word-wrap: normal;
}

.row_soci .colSocio .ruolo {
    text-transform: uppercase;
    font-size: 18px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.row_valori .colValori {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    padding: 60px;
    position: relative;
    background-color: #d5cbc1;
}

.row_valori .colValori .tit {
    padding-top: 25px;
    padding-bottom: 10px;
    font-size: 36px;
    word-wrap: normal;
}

.row_valori .colValori img {
    max-width: 70%;
}

.row_valori .colValori .moreIndex {
    padding-right: 10%;
}

.row_valori .colValori:before {
    content: "";
    width: 100%;
    height: 160px;
    background-color: #fff;
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
}

.table {
    background-color: var(--light_background);
    margin-top: 50px;
}

.table td, .table th {
    padding: 15px 25px;
    vertical-align: top;
    border-top: 1px solid #fff;
    border-bottom: 2px solid #fff;
}

.table thead th {
    font-weight: 900;
    vertical-align: middle;
    border-bottom: 2px solid #fff;
    padding: 15px 25px;
}

/* */
.accordion_excerpt .card_accordion .btn_accordion:before {
    
}

.accordion_excerpt .card_accordion.show .btn_accordion:before {
}

.accordion_excerpt {
    padding: 0px 30px;
}

.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;
    -ms-flex-wrap: wrap!important;
    flex-wrap: wrap!important;
}

.accordion_excerpt .card_accordion .btn_accordion {
    color: var(--second-color);
    font-size: 18px;
    font-weight: 900;
    text-decoration: underline;
    padding-top: 20px;
}

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

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

.accordion_excerpt .card_accordion .content_accordion,
.accordion_excerpt .card_accordion .content_tit {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

/* .accordion_excerpt .card_accordion .content_accordion {
    padding-top: 20px;
} */

.accordion_excerpt .btnMb {
    display: none !important;
}

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

#accordionAree .card_accordion {
    border-top: 2px solid var(--primary-color);
}

#accordionAree .card_accordion:last-of-type {
    border-bottom: 2px solid var(--primary-color);
}

#accordionAree .card_accordion .tit {
    font-weight: 900;
}

#accordionAree .card_accordion .content_tit {
    max-width: 30%;
    flex: 0 0 30%;
    padding-right: 20px;
    z-index: 100;
}

#accordionAree .card_accordion .content_accordion {
    -ms-flex: 0 0 70%;
    flex: 0 0 70%;
    max-width: 70%;
    z-index: 100;
}

#accordionSettori .card_accordion .colContent {
    -ms-flex: 0 0 80%;
    flex: 0 0 80%;
    max-width: 80%;
    z-index: 100;
    padding-right: 30px;
    padding-left: 30px;
}

#accordionSettori .card_accordion .colImg {
    max-width: 20%;
    flex: 0 0 20%;
    z-index: 100;
}

#accordionSettori .card_accordion .colImg img {
    width: 100%;
}

#accordionSettori .card_accordion {
    /* -ms-flex-align: center!important;
    align-items: center!important; */
    -ms-flex-wrap: wrap!important;
    flex-wrap: wrap!important;
    display: -ms-flexbox!important;
    display: flex!important;
    margin-bottom: 40px;
    padding-bottom: 20px;
}

#accordionSettori .card_accordion:before {
    content: "";
    width: 90%;
    height: 100%;
    background-color: var(--light_background);
    position: absolute;
    top: 0;
    right: 0;
}

#accordionSettori .card_accordion .content_tit {
   padding-top: 15px;
}

#accordionSettori .card_accordion .content_tit .tit {
    font-size: 44px;
    line-height: 48px;
}

.galleryLoghi {
    width: 90%;
    flex: 0 0 90%;
    max-width: 90%;
    z-index: 10;
    margin-left: 10%;
    margin-top: 30px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 60px;
}

.galleryLoghi .navigation_swiper.no_abs {
    justify-content: center !important;
    bottom: 0;
}

.galleryLoghi .logo_clienti {
    background-color: #fff;
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 70%;
}

.galleryLoghi .logo_clienti img {
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    max-width: 60%;
    max-height: 100%;
    object-fit: contain;
}

.swipercarriera {
    padding-left: calc(5% + 15px);
    padding-right: calc(5% + 15px);
}

/* .swipercarriera .swiper-slide {
    width: 18%;
} */

.swipercarriera .swiper-slide .box {
    background-color: #d4cbc1;
    padding: 20px;
    text-align: center;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swipercarriera .swiper-slide .box p {
    font-weight: 900;
    font-size: 22px;
    line-height: 20px;
}

.swipercarriera .swiper-slide .arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 30px;
    right: -40px;
}

.swipercarriera .swiper-slide:last-of-type .arrow {
    display: none;
}

.map {
    height: 500px;
}

.map iframe {
    height: 100%;
}

.no_posizioni {
    border-top: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

@media(max-width:1200px){
    /* .head h1 {
        font-size: 60px;
        line-height: 56px;
    } */

    .head p {
        font-size: 24px;
    } 

    .row_coll .colColl .img {
        width: 120px;
    }

    .section-alternate.row-reverse .colText .content {
        padding-left: 0px;
    }

    .colText .content {
        padding-right: 0px;
    }

    .colText .content h3 {
        font-size: 48px;
        line-height: 48px;
    }

    .section-boxlink .col6 .content .tit {
        font-size: 42px;
        line-height: 40px;
    }

    .row_soci .colSocio .name {
        font-size: 32px;
        line-height: 32px;
    }

    .row_soci .colSocio .foto, .row_soci .colSocio .empty {
        display: flex;
        align-items: center;
        width: 100%;
        height: 0;
        position: relative;
        padding-bottom: 130%;
    }

    #accordionSettori .card_accordion .colImg {
        max-width: 25%;
        flex: 0 0 25%;
    }

    #accordionSettori .card_accordion .colContent {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }
}

@media(max-width:1024px){
    
    .head h1 {
        font-size: 54px;
        line-height: 50px;
    }

    .row_coll {
        margin-bottom: 30px;
    }

    .row_coll .colColl, .row_valori .colValori {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        padding: 60px 30px;
    }

    .row_coll .fz24 {
        font-size: 20px;
    }

    .row_coll .fz18 {
        font-size: 16px;
    }

    .modal-body {
        padding: 15px;
        overflow-x: auto;
        height: calc(100vh - 40px);
    }

    .row_soci .colSocio {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
        padding: 30px;
    }

    .section-boxlink .col6 .content .tit {
        font-size: 40px;
        line-height: 40px;
    }

    /*tab respondive*/
    .table td, .table th {
        border-top: 0px;
        border-bottom: 0px;
        display: block;
    }

    .table thead th {
        display: none;
    }

    .table tr {
        border-bottom: 10px solid #fff;
    }

    .table tr:last-of-type {
        border-bottom: 0px;
    }

    .table td:before {
        content: attr(data-label);
        font-weight: bold;
        display: block;
    }

    #accordionAree .card_accordion .content_tit {
        max-width: 100%;
        flex: 0 0 100%;
        padding-right: 0px;
    }

    #accordionAree .card_accordion .content_accordion {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        padding-top: 20px;
    }

    .accordion_excerpt .btnDk {
        display: none !important;
    }

    .accordion_excerpt .btnMb {
        display: block !important;
    }

    .accordion_excerpt {
        padding: 0px 0px;
    }

    .map {
        height: 350px;
    }

    .swipercarriera .swiper-slide {
        width: 18%;
    }
}

@media(max-width:767px){
    .head h1 {
        font-size: 44px;
        line-height: 40px;
    }

    .head p {
        font-size: 22px;
        line-height: 22px;
    }

    .head {
        min-height: auto;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .section-boxlink .col6 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .section-boxlink .col6 .content {
        width: 88%;
        padding-top: 10px;
        padding-bottom: 10px;
        min-height: 300px;
    }
    
    .row_soci .colSocio .name {
        padding-top: 20px;
        font-size: 30px;
    }

    .row_soci .colSocio .ruolo, .row_valori .colValori p {
        font-size: 16px;
    }

    #accordionSettori .card_accordion .colImg,
    #accordionSettori .card_accordion .colContent {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        padding-right: 15px;
        padding-left: 15px;
    }

    #accordionSettori .card_accordion:before {
        width: 100%;
        height: 80%;
        top: 20%;
        right: 0;
    }

    #accordionSettori .card_accordion {
        padding-top: 0px;
    }

    .galleryLoghi {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
        z-index: 10;
        margin-left: 0;
        margin-top: 30px;
        padding-left: 10px;
        padding-right: 10px;
        padding-bottom: 10px;
    }

    .swipercarriera .swiper-slide {
        width: 28%;
    }

    .swipercarriera {
        padding-left: calc(3% + 15px);
        padding-right: calc(3% + 15px);
    }

    .row_valori .colValori .tit {
        padding-top: 30px;
        padding-bottom: 15px;
        font-size: 32px;
    }

    #accordionSettori .card_accordion .content_tit .tit {
        font-size: 32px;
        line-height: 32px;
    }

}

@media(max-width:576px){
    .row_soci .colSocio, .row_valori .colValori {
        padding: 15px;
    }   
    
    .row_soci .colSocio:before, .row_valori .colValori:before {
        height: 100px;
    }

    .row_soci .colSocio .name {
        font-size: 22px;
    }

    .row_soci .colSocio .ruolo {
        font-size: 14px;
    }

    .head h1 {
        font-size: 34px;
        line-height: 34px;
    }

    .head p {
        font-size: 18px;
        line-height: 20px;
    }

    .map {
        height: 280px;
    }

    .swipercarriera .swiper-slide {
        width: 38%;
    }

    .colText .content h3 {
        font-size: 40px;
        line-height: 42px;
    }

    .testimonial .colText .text, #newsGallery .colText .text {
        font-size: 20px;
    }

    .row_coll .colColl, .row_valori .colValori {
        flex-wrap: wrap;
        padding: 30px 15px;
    }

    #accordionAree .card_accordion .tit {
        font-weight: 900;
        font-size: 24px;
        line-height: 24px;
    }

    #accordionSettori .card_accordion:before {
        top: 10%;
        height: 100%;
    }
}

/* storia */


/* --------------------------------------------- GEA DIGITAL ---------------------------------------------------- */

.geadigital-body  {
    font-family: 'Aquawax' !important;
    background-color: #16212b;
    color: #fff;
}

.poppins {
    font-family: 'Poppins', sans-serif !important;
}

.color-gd {
    color: var(--gd_primary);
}

.color-gd-blu {
    color: var(--gd_blu);
}

.head-home.gea-digital .logo_head {
    max-width: 80%;
    width: 500px;
    margin-right: 0px;
} 

.geadigital-body .tit {
    font-weight: 900;
    text-transform: uppercase;
    font-size: 50px;
}

.geadigital-body .general-content strong {
    color: var(--gd_primary);
}

.geadigital-body .general-content a {
    text-transform: uppercase;
    color: #ce4760;
    text-decoration: underline;
    font-weight: 900;
}

.geadigital-body .h3 {
    text-transform: uppercase;
    color: var(--gd_primary);
    font-size: 28px;
    font-weight: 900;
}

.geadigital-body .h2 {
    text-transform: uppercase;
    color: var(--gd_blu);
    font-size: 60px;
    font-weight: 900;
}

.pTopBig {
    padding-top: 180px;
    padding-bottom: 180px;
}

.animationSvg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 400px;
    /* height: 100%; */
}

.animationSvg.second {
    position: absolute;
    left: 0;
    height: auto;
    right: auto;
    top: 50%;
    transform: translate(0px, -50%);
    width: 400px;
    -webkit-transform: translate(0px, -50%);
    -moz-transform: translate(0px, -50%);
    -ms-transform: translate(0px, -50%);
    -o-transform: translate(0px, -50%);
}

.animationSvg.last {
    position: absolute;
    right: 0;
    height: auto;
    left: auto;
    top: auto;
    bottom: 0;
    width: 400px;
}

.col_svg_logo {
    height: 100vh;
}

.logo_gd {
    max-height: 70vh;
    width: auto;
    margin: auto;
    display: block;
}

.logo_gd.activate #payoff {
    stroke-dasharray: 860;
    stroke-dashoffset: 860;
    animation: animateDash 4s linear 4s forwards;
    -webkit-animation: animateDash 4s linear 4s forwards;
}

.logo_gd.activate #logo_2 {
    stroke-dasharray: 770;
    stroke-dashoffset: 770;
    animation: animateDash 4s linear 1s forwards;
    -webkit-animation: animateDash 4s linear 1s forwards;
}

.logo_gd.activate #logo {
    stroke-dasharray: 3160;
    stroke-dashoffset: 3160;
    animation: animateDash 5s linear 1s forwards;
    -webkit-animation: animateDash 5s linear 1s forwards;
}

.geadigital-body .logo_clienti {
    /* background-color: #fff; */
    position: relative;
    width: 200px;
    height: 0;
    padding-bottom: 100px;
    margin-bottom: 20px;
}

.geadigital-body .logo_clienti img {
    /* filter: grayscale(1);
    -webkit-filter: grayscale(1); */
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    /* right: 0; */
    margin: auto;
    max-width: 80%;
    max-height: 100%;
    object-fit: contain;
}

@keyframes animateDash {
    to {
      stroke-dashoffset: 0;
    }
}

.row_cosafacciamo .general-content strong {
    color: var(--gd_blu);
}

.section-horizontal .panel,
.section-horizontal_ad .panel_ad,
.section-horizontal_pg .panel_pg {
    width: 100%;
    height: 100%;
    flex: 0 0 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.section-horizontal .panel .content,
.section-horizontal_pg .panel_pg .content {
    width: 60%;
    margin: auto;
}

.row_horizontal h3 {
    font-size: 28px;
}

.tit_small {
    font-size: 40px;
    line-height: 40px;
}

.section-horizontal_ad,
.section-horizontal,
.section-horizontal_pg {
    height: 100vh;
}

.animationSvg_cono {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    /* bottom: 0; */
    margin: auto;
    max-height: 100%;
}

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

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

.geadigital-body .font-text--primary, .geadigital-body p, .geadigital-body a, .geadigital-body li {
    font-size: 16px;
}

@media(max-width:1024px){
    .pTopBig {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .geadigital-body .tit {
        font-size: 42px;
    }

    .geadigital-body .h2 {
        font-size: 48px;
    }

    .section-horizontal .panel, .section-horizontal_ad .panel_ad, .section-horizontal_pg .panel_pg {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .tit_small {
        font-size: 34px;
        line-height: 38px;
    }
}

@media(max-width:1100px){
    .geadigital-body .container {
        max-width: 92% !important;
    }

    .subtitle {
        font-size: 16px;
    }

    .geadigital-body .h2 {
        font-size: 50px;
    }
}

@media(max-width:1024px){

    .section-horizontal .panel .content, .section-horizontal_pg .panel_pg .content {
        width: 80%;
        margin: auto;
    }
}

@media(max-width:767px){
    .geadigital-body .h2 {
        font-size: 44px;
        line-height: 44px;
    }

    .animationSvg, .animationSvg.second, .animationSvg.last {
        width: 300px;
    }

    .section-horizontal .panel .content,
    .section-horizontal_pg .panel_pg .content {
        width: 90%;
        margin: auto;
    }
}

@media(max-width:567px){
    .geadigital-body .tit {
        font-size: 28px;
        line-height: 32px;
    }

    .geadigital-body .h3 {
        font-size: 24px;
    }

    .geadigital-body .h2 {
        font-size: 32px;
        line-height: 36px;
    }

    .tit_small {
        font-size: 26px;
        line-height: 32px;
    }
}

/*news eventi*/

.news_filter_btn {
	display: inline-block;
	border: 2px solid var(--second-color);
	color: var(--second-color);
    padding: 15px 18px;
    margin-right: 5px;
    cursor: pointer;
    font-size: 16px;
    line-height: 10px;
    margin-bottom: 5px
}

.news_filter_btn.news_filter_btn_active {
	background: var(--second-color);
	color: #fff;
}

.post-loading {
	width: 100%;
	margin: 2em;
}

.post-loading img {
	width: 35px;
}

/* #news_container {
    columns: 250px;
    column-gap: 20px;
}

#news_container .col-cpt {
    break-inside: avoid-column;
} */

#news_container .col-cpt {
    display: flex;
    flex-direction: column;
    margin-top: 25px;
    margin-bottom: 25px;
}

#news_container .col-cpt .box-img {
    border: 2px solid var(--light_background);
    width: 65%;
    height: 0px;
    padding-bottom: 43%;
    /* background-color: var(--light_background); */
}

#news_container .col-cpt .box-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
}

#news_container .col-cpt .cat-name {
    text-transform: uppercase;
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 800;
}

#news_container .col-cpt .tit {
    font-size: 24px;
    font-weight: 900;
    line-height: 24px;
    padding-top: 8px;
    padding-bottom: 5px;
}

#news_container .col-cpt .sub {
    font-size: 16px;
    font-weight: 900;
}

#news_container .col-cpt .btn-continua {
    display: block;
    font-size: 18px;
    font-weight: 900;
    margin-top: 12px;
    margin-right: 9px;
}

#news_container .col-cpt .borderBottom {
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 20px;
    margin-top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.posts_pagination {
    background-color: var(--light_background);
    padding: 20px;
}

.posts_pagination_prev img {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    margin-right: 10px;
}

.posts_pagination_next img {
    margin-left: 10px;
}

.posts_pagination span, .posts_pagination p {
    font-size: 16px;
    font-weight: 900;
}

.sidebar {
    position: sticky;
    top: 70px;
}

.sidebar .borderTop {
    border-left: 2px solid var(--primary-color);
    padding-left: 20px;
}

.sidebar ul li a {
    font-weight: 900;
    font-size: 16px;
}

@media(max-width:991px){
    .sidebar {
        position: relative;
        top: 0px;
    }

    .sidebar .borderTop {
        border-top: 2px solid var(--primary-color);
        padding-top: 25px;
        border-left: 0px;
    }
}

.general-content.standard h3 {
    font-size: 24px;
    margin-top: 20px;
    font-weight: bold;
}

.page-template-template-storiav2 {
    overflow-x: hidden;
    overflow-y: scroll;
}

.scrollContainer {
    /* height: 100vh; */
    position: relative;
    width: calc(100% - 200px);
    flex: 0 0 calc(100% - 200px);
}

.box_timeline {
    top: 0px;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
}

/* .box_timeline:not(:first-child) {
    position: absolute;
    top: 100vh;
    width: 100%;
} */

.timeline_box {
    display: flex;
    flex-wrap: wrap;
}

.navigation_fix {
    background-color: #fff;
    width: 200px;
    z-index: 1000;
    flex: 0 0 200px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 30px;
    justify-content: center;
    position: sticky;
    top: 0px;
}

.navigation_fix a {
    padding: 5px 0px;
    position: relative;
    font-size: 18px;
}

.navigation_fix a.active {
    color: var(--second-color);
}

.navigation_fix a.active:before {
    content: "";
    width: 10px;
    height: 1px;
    position: absolute;
    left: -12px;
    background-color: var(--second-color);
    top: 0;
    bottom: 0;
    margin: auto;
}

.row_timeline .box_timeline .content {
    background-color: var(--light_background);
    width: 90% !important;
    padding: 60px 0px;
    position: relative;
}

/* .row_timeline:before {
    content: "";
    width: 95%;
    position: absolute;
    height: 100%;
    background-color: var(--light_background); 
    top: 0;
    bottom: 0;
    left: 0;
} */

.row_timeline .box_timeline .colText {
    padding: 60px 0px 60px 60px;
    width: 50%;
    max-width: 50%;
    flex: 0 0 50%;
    margin-right: 0%;
}

.row_timeline .box_timeline .colImg {
    width: 50%;
    max-width: 50%;
    flex: 0 0 50%;
    transform: translate(10%, 0px);
}

.row_timeline .box_timeline .colText .tit_anno {
    padding-bottom: 30px;
    font-size: 46px;
}

.row_timeline .box_timeline .colText .general-content p {
    font-size: 16px;
}

@media(max-width:1024px){
    .row_timeline .box_timeline .colText {
        padding: 20px 30px;
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }

    .row_timeline .box_timeline .content {
        background-color: var(--light_background);
        width: 90% !important;
        padding: 30px 0px;
        flex-direction: column-reverse;
    }

    .row_timeline .box_timeline .colImg {
        width: 70%;
        max-width: 70%;
        flex: 0 0 70%;
        transform: translate(30%, 0px);
        -webkit-transform: translate(30%, 0px);
        -moz-transform: translate(30%, 0px);
        -ms-transform: translate(30%, 0px);
        -o-transform: translate(30%, 0px);
    }
}

@media(max-width:767px){
    .navigation_fix {
        width: 100%;
        z-index: 1000;
        flex: 0 0 100%;
        height: auto;
        flex-direction: row;
        position: sticky;
        top: 60px;
        flex-wrap: wrap;
    }

    .navigation_fix a {
        padding: 5px 15px;
        font-size: 14px;
    }

    .navigation_fix a.active:before {
        width: 15px;
        left: 10px;
    }

    .scrollContainer {
        width: 100%;
        flex: 0 0 100%;
    }

    .box_timeline {
        height: auto;
        margin: 100px 0px;
    }

    .navigation_fix {
        padding: 10px;
    }

    .row_timeline .box_timeline .content {
        width: 100% !important;
        padding: 0px 0px;
    }

    .row_timeline .box_timeline .colImg {
        transform: translate(0%, -50px);
        -webkit-transform: translate(0%, -50px);
        -moz-transform: translate(0%, -50px);
        -ms-transform: translate(0%, -50px);
        -o-transform: translate(0%, -50px);
        margin-left: 0px;
        margin-right: auto;
    }

    .row_timeline .box_timeline .colText {
        margin-top: -50px;
    }
}

.openPopup {
    color: #000 !important;
}

li.lang-item {
    list-style: none;
    font-weight: 900;
}