@charset "utf-8";

/* ***********************
WS START  CSS
+++++++++++++++++++++++++ */



/*
========================================
RESET STILI PER ANCORE, PARAGRAFI, TITOLI
========================================
*/


/* SCELTA DEL FONT USATO */

/*  regular */
@font-face {
    font-family: regular;
    src: url(fonts/Montserrat-Regular.ttf);
}

/*  medium */
@font-face {
    font-family: medium;
    src: url(fonts/Montserrat-Medium.otf);
}

/*  bold */
@font-face {
    font-family: bold;
    src: url(fonts/Montserrat-Bold.ttf);
}

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

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

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

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

@-ms-viewport {
    width: device-width
}



html {
    background-color: white;
    scroll-behavior: smooth;
    box-sizing: border-box;
}

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

@media screen and (max-width:990px) {
    html {
        overflow-x: hidden;
    }
}

body {
    margin: 0;
    padding: 0;
    color: black;
    background-color: white;
    font-family: regular;
    -webkit-font-smoothing: antialiased !important;
    -moz-font-smoothing: antialiased !important;
    -ms-font-smoothing: antialiased !important;
    text-rendering: optimizelegibility !important;
    font-size: 17px;
    box-sizing: border-box;
}



.sfondo-grigio {
    background-color: var(--secondcolor);
}

.sfondo-grigio-2 {
    background-color: #F4F4F4;
}

strong {
    font-weight: normal;
}

main.main_container {
    width: 100%;
}

.overflow_hidden {
    width: 100%;
    overflow-x: hidden;
}


main.main_container.main_container--white {
    background-color: white;
}

.body-fixed {
    height: 100%;
    width: 100%;
    overflow: hidden;
}


/* colori fissi */

.padding-top--vh {
    padding-top: 10vh;
}

.padding-top-small--vh {
    padding-top: 50px;
}

.padding--vh {
    padding: 10vh 0;
}

.padding-small--vh {
    padding: 7vh 0;
}


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

li {
    list-style: none;
    margin: 0;
    padding: 0;
}

section {
    position: relative;
    z-index: 5;
}

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

h1,
h2,
h3,
h4 {
    margin: 0;
    padding: 0;
    font-weight: normal;
    font-family: bold;
    color: #535353;
}

h1 {
    font-size: 64px;
}

.scroll__down {
    position: fixed;
    right: 5%;
    bottom: 80px;
    color: #aaa;
    font-size: 18px;
    writing-mode: vertical-rl;
    transform-origin: center;
    transform: rotate(180deg);
    animation: scroll__down 2s ease infinite;
    -webkit-transition: opacity 0.55s ease;
    transition: opacity 0.55s ease;
    z-index: 100;
}

.scroll__down--fade {
    opacity: 0;
    visibility: hidden;
}

.animazionepagina {
    animation: animazionepagina 1s ease;
}

.animazionepagina2 {
    animation: animazionepagina2 1.5s ease;
}

.form_pagina {
    background-color: white;
    padding: 30px;
    border-radius: 20px;
    -webkit-box-shadow: 0px 0px 15px 10px rgba(122, 122, 122, 0.075);
    box-shadow: 0px 0px 15px 10px rgba(122, 122, 122, 0.075);
}

@keyframes animazionepagina {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes animazionepagina2 {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }

    20% {
        transform: translateY(30px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}


p {
    color: dimgray;
    font-size: 17px;
    line-height: 125%;
    margin: 0;
    margin-bottom: 15px;
    font-family: regular;
}

p strong {
    color: black;
    font-family: medium;
}

.show--desktop {
    display: block;
}

.show--mobile {
    display: none;
}

.contenuto_testo {
    max-width: 1000px;
}

.contenuto_testo p strong {
    color: black;
    font-family: bold;
}

.contenuto_testo a {
    color: black;
    text-decoration: underline;
}

.contenuto_testo a.btn {
    color: var(--maincolor);
    text-decoration: none;
}

.contenuto_testo ul {
    margin-left: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.contenuto_testo li {
    margin-left: 7px;
    margin-bottom: 7px;
    list-style: disc;
    color: dimgray;
}

.contenuto_testo h2,
.contenuto_testo h3,
.contenuto_testo h4 {
    font-size: 21px;
    color: black;
    margin-bottom: 30px;
}

.contenuto_testo h2,
.contenuto_testo h3,
.contenuto_testo h4,
.contenuto_testo p {
    max-width: 990px;
}

@media(max-width:768px) {
    .show--desktop {
        display: none;
    }

    .show--mobile {
        display: block;
    }

    .contenuto_testo h2,
    .contenuto_testo h3,
    .contenuto_testo h4 {
        font-size: 19px;
        margin-bottom: 25px;
    }

}

/* label sezione */

.label_sezione {
    font-size: 18px;
    color: white;
    padding: 20px 30px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.13);
    margin-bottom: 50px;
    text-transform: uppercase;
}

.label_sezione--flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.label_sezione--big {
    font-size: 64px;
}

.label_sezione--white {
    color: white;
}

.label_sezione strong {
    font-weight: normal;
    color: white;
}

/*
========================================
CLASSI PERSONALIZZATE SPAZIATURE, COLORE
========================================
*/

.mt-nav {
    margin-top: 90px;
}

.sfondo-colore {
    background-color: var(--maincolor);
}

.container-50 {
    width: 50%;
    margin: 0 auto;
    position: relative;
    max-width: 1100px;
}

.container-90 {
    width: 90%;
    margin: 0 auto;
    position: relative;
    max-width: 1600px;
}

.container-80 {
    width: 80%;
    margin: 0 auto;
    position: relative;
    max-width: 1600px;
}

.container-gallery {
    width: 80%;
    max-width: 750px;
}

.container-70 {
    width: 70%;
    margin: 0 auto;
    position: relative;
}

.container-100 {
    width: calc(100% - 100px);
    margin: 0 auto;
}


.container-legals {
    max-width: 990px;
}

.container-custom {
    width: calc(100% - 60px);
    margin: 0 auto;
    position: relative;
}

.container-mappa {
    margin-top: 50px;
}

@media (max-width:1350px) {
    .container-80 {
        width: 90%;
    }

    .container-70 {
        width: 80%;
        margin: 0 auto;
        position: relative;
    }
}

@media (max-width:1500px) {
    .container-100 {
        width: calc(100% - 80px);
        margin: 0 auto;
    }
}

@media (max-width:1250px) {
    .container-50 {
        width: 90%;
    }

    .container-80.container-80-mobile-full {
        width: calc(100% - 50px);
    }

}

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

    .container-100 {
        width: calc(100% - 50px);
        margin: 0 auto;
    }

    .container-80 {
        width: calc(100% - 50px);
        margin: 0 auto;
        position: relative;
    }

    .container-90 {
        width: calc(100% - 50px);
    }

    .container-80.container-80-mobile-full {
        width: 100%;
    }

    .container-70 {
        width: calc(100% - 50px);
    }

    .container-100--mobile {
        width: 100%;
    }

}


@media (max-width:768px) {

    .padding-top--vh {
        padding-top: 50px;
    }

    .padding-top-small--vh {
        padding-top: 30px;
    }

    .padding--vh {
        padding: 50px 0;
    }

    .padding-small--vh {
        padding: 30px 0;
    }

    .label_sezione {
        font-size: 16px;
        color: white;
        padding: 15px 25px;
        border-radius: 15px;
        margin-bottom: 30px;
    }

    .container-100 {
        width: 100%;
        margin: 0 auto;
    }

    .container-50 {
        width: calc(100% - 50px);
    }

    .container-70 {
        width: calc(100% - 50px);
    }

    .container-80 {
        width: calc(100% - 50px);
    }

    .container-90 {
        width: calc(100% - 50px);
    }

    p {
        font-size: 15px;
    }

    .hero__text__intro {
        font-size: 13px !important;
        margin-bottom: 25px !important;
    }
}

.sfondo-bianco {
    background-color: white;
}

.show--mobile {
    display: none;
}

@media(max-width:768px) {
    .show--desktop {
        display: none;
    }

    .show--mobile {
        display: inline-block;
        margin-top: 30px;
    }
}


/* === pulsanti === */

.btn {
    font-size: 16px;
    color: var(--maincolor);
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
    font-family: medium;
    position: relative;
    padding-bottom: 5px;
    text-transform: uppercase;
}

.btn--mt {
    margin-top: 30px;
}

.btn:after {
    content: "";
    background-color: var(--maincolor);
    height: 2px;
    display: block;
    position: absolute;
    width: 100%;
    right: 0;
    bottom: 0;
    -webkit-transition: all 0.45s ease;
    transition: all 0.45s ease;
}

.btn:before {
    content: "";
    background-color: var(--maincolor);
    height: 2px;
    display: block;
    position: absolute;
    width: 0;
    left: 0;
    bottom: 0;
    -webkit-transition: all 0.45s ease;
    transition: all 0.45s ease;
    transition-delay: 0.15s;
}


.btn:hover:after {
    width: 0;
}

.btn:hover:before {
    width: 100%;
}


/* ============ NAVIGAZIONE =========
header.php
@audit navigazione
=========================== */


.navigazione {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    height: 90px;
    transition: all 0.35s;
    width: 100%;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
    background-color: white;
}

.navigazione__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1600px;
    margin: 0 auto;
    height: 100%;
    width: 80%;
}

.navigazione--scroll {
    height: 60px;
    background-color: rgba(255, 255, 255, 1);
}

.navigazione a {
    margin: 0;
    padding: 0;
    font-size: 15px;
    font-family: medium;
    color: black;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.navigazione a:hover {
    color: var(--maincolor);
}

.navigazione__logo img {
    height: 60px;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.navigazione--scroll .navigazione__logo img {
    height: 45px;
}


.navigazione_menu ul {
    display: flex;
    gap: 25px;
    align-items: center;
    text-transform: uppercase;
}

.burger {
    width: 35px;
    display: none;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.burger:hover {
    cursor: pointer;
}

.burger__line {
    height: 2px;
    background-color: black;
    margin-bottom: 5px;
    width: 100%;
}

.burger.burger--open .burger__line:nth-child(3) {
    display: none;
}

.burger.burger--open .burger__line {
    margin-bottom: 0;
    width: 35px;
}

.burger.burger--open .burger__line:nth-child(2) {
    margin-top: -2px;
    transform-origin: center;
    transform: rotate(90deg);
}

.burger.burger--open {
    transform: rotate(45deg);
}


@media(max-width:1500px) {}

@media(max-width:1350px) {
    .navigazione__container {
        width: 90%;
    }

    .navigazione_menu ul {
        gap: 15px;
    }

    .navigazione_menu a {
        font-size: 15px;
    }

    .navigazione__logo img {
        height: 39px;
    }
}

@media(max-width:990px) {

    .navigazione__container {
        box-sizing: border-box;
    }

    .navigazione {
        height: 60px;
        border-bottom: 1px solid #ddd;
    }

    .mt-nav {
        margin-top: 60px;
    }

    .navigazione__logo img {
        height: 33px;
    }

    .navigazione--scroll .navigazione__logo img {
        height: 33px;
    }


    .navigazione_menu ul {
        visibility: hidden;
        opacity: 0;
        -webkit-transition: all 0.35s ease;
        transition: all 0.35s ease;
        position: fixed;
        top: 60px;
        z-index: 1000;
        left: 0;
        width: 100%;
        height: calc(100% - 60px);
        background-color: white;
        padding-left: 5%;
        padding-right: 5%;
    }

    .navigazione_menu ul.navigazione_mobile_show {
        display: flex;
        visibility: visible;
        opacity: 1;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    .burger {
        display: block;
    }

    .navigazione_menu a {
        font-size: 18px;
    }
}

@media(max-width:768px) {}

/* ============ HOME =========
front-page.php
@audit home
=========================== */

.hero {
    height: 50vh;
    min-height: 450px;
    background-color: #dedede;
    position: relative;
}

.hero__img:after {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.55);
}

.hero__text {
    position: absolute;
    bottom: 100px;
    z-index: 100;
    left: 10%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.hero__text__intro {
    font-size: 15px;
    margin-bottom: 10px;
    color: white;
    text-transform: uppercase;
}

.hero__text__sx {
    max-width: 60%;
}

.hero__text h1 {
    font-size: 40px;
    color: white;
    font-family: regular;
}

.hero__text h1 strong {
    color: var(--maincolor);
    font-family: bold;
}

.hero img {
    object-fit: cover;
    height: 50vh;
    width: 100%;
}

.loop_marchi__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.marchio {
    width: calc(14.2% - 10px);
    display: block;
}

.marchio__img {
    width: 100%;
    background-color: white;
    padding: 30px;
    border-radius: 20px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.marchio img {
    max-width: 80%;
    max-height: 80%;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.marchio:hover img {
    transform: scale(1.1);
}

.marchio__text {
    color: white;
    padding-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
    text-align: center;
}

.gallery_immagini .swiper-container {
    overflow: hidden;
}

.swiper-pagination-bullet {
    background-color: white;
    border: 1px solid #ccc;
    border-color: var(--maincolor);
}

.swiper-pagination-bullet-active {
    background-color: var(--maincolor);
}

.loop_news .swiper-container {
    padding-bottom: 50px;
}

.news h2 {
    color: black;
    margin-top: 15px;
    font-size: 20px;
}

.news.news--light h2 {
    color: white;
}

.news__img img {
    border-radius: 20px;
    -webkit-box-shadow: 0px 0px 15px 10px rgba(122, 122, 122, 0.075);
    box-shadow: 0px 0px 15px 10px rgba(122, 122, 122, 0.075);
}

@media(max-width:1500px) {
    .marchio {
        width: calc(16.6% - 10px);
        display: block;
    }

    .hero__text h1 {
        font-size: 36px;
    }
}

@media(max-width:1250px) {
    .marchio {
        width: calc(20% - 10px);
        display: block;
    }

    .marchio__text {
        margin-bottom: 20px;
    }

    .hero__text h1 {
        font-size: 30px;
    }

    .hero__text {
        left: 5%;
        padding-right: 5%;
    }
}

@media(max-width:990px) {
    .marchio {
        width: calc(25% - 10px);
        display: block;
    }

    .hero__text h1 {
        font-size: 26px;
    }
}

@media(max-width:768px) {
    .marchio {
        width: calc(33% - 10px);
        display: block;
    }

    .hero__text h1 {
        font-size: 21px;
        margin-bottom: 50px;
    }

    .hero__text {
        display: block;
    }

    .marchio__text {
        font-size: 14px;
    }

}

@media(max-width:600px) {
    .marchio {
        width: calc(50% - 10px);
        display: block;
    }

    .hero {
        height: calc(100vh - 60px);
    }

    .hero img {
        height: calc(100vh - 60px);
        width: 100%;
    }

    .hero__text__sx {
        max-width: 90%;
    }

}


/* ============ ARCHIVIO NEWS =========
archive.php / index.php
@audit news
=========================== */

.news__text {
    margin-bottom: 7px;
}

.news__date--light {
    color: #aaa;
}

.news:hover h2 {
    color: var(--maincolor);
}

.news__text h2,
.gallery__text h2 {
    font-size: 18px;
}

.news_grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 50px 20px;
    padding-left: 30px;
}

.paginazione_post {
    display: none;
}

.border {
    border-top: 1px solid #dedede;
}


.container_flex {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-top: 50px;
}

.container_flex__sidebar {
    width: 250px;
}

.container_flex__content {
    width: calc(100% - 270px);
}

.container_flex__sidebar .elenco_categorie {
    position: sticky;
    -webkit-position: sticky;
    top: 130px;
}

.container_flex .news {
    animation: news 1s ease;
}

@keyframes news {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.elenco_categorie {
    padding: 30px;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 15px;
    -webkit-box-shadow: 0px 0px 15px 10px rgba(122, 122, 122, 0.05);
    box-shadow: 0px 0px 15px 10px rgba(122, 122, 122, 0.05);
}


.elenco_categorie a {
    display: block;
    padding-bottom: 7px;
    border-bottom: 1px solid #dedede;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
    margin-bottom: 12px;
    text-transform: uppercase;
    font-size: 14px;
    font-family: medium;
    color: dimgray;
}

.elenco_categorie li:last-child a {
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0;
}

.elenco_categorie a:hover {
    /* border-color: var(--maincolor); */
    color: var(--maincolor);
}

.current-cat a {
    color: var(--maincolor);
    font-family: bold;
    /* border-bottom: 1px solid var(--maincolor); */

}

.hero_pagina {
    background-color: white;
    padding: 50px 0;
}

.hero_pagina__flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.hero_pagina h1 {
    color: var(--maincolor);
    font-size: 39px;
    text-transform: uppercase;
    max-width: 60%;
    font-family: regular;
}

.hero_pagina h1 strong {
    font-family: bold;
}

@media(max-width:1500px) {
    .hero_pagina h1 {
        font-size: 36px;
        max-width: 65%;
    }
}

@media(max-width:1250px) {
    .hero_pagina h1 {
        font-size: 32px;
        max-width: 70%;
    }

    .news_grid {
        grid-template-columns: 1fr 1fr;
        grid-gap: 40px 20px;
        padding-left: 15px;
        padding-left: 0;
    }

}

@media(max-width:990px) {

    .news__text h2,
    .gallery__text h2 {
        font-size: 16px;
    }

    .hero_pagina h1 {
        font-size: 25px;
        max-width: 60%;
    }

    .container_flex {
        gap: 20px;
        padding-top: 40px;
    }

    .container_flex__sidebar {
        width: 230px;
    }
}

@media(max-width:768px) {
    .hero_pagina h1 {
        font-size: 20px;
        max-width: 100%;
    }

    .hero_pagina__flex {
        display: block;
    }

    .hero_pagina__flex h1 {
        margin-bottom: 30px;
    }

    .hero_pagina {
        background-color: white;
        padding: 30px 0;
    }

    .container_flex {
        padding-top: 30px;
        flex-wrap: wrap;
    }

    .container_flex__sidebar,
    .container_flex__content {
        width: 100%;
    }

    .elenco_categorie {
        padding: 15px;
        width: 100%;
        display: flex;
        overflow-x: scroll;
        gap: 15px;
        white-space: nowrap;
        margin-bottom: 20px;
    }

    .elenco_categorie a {
        margin-bottom: 0;
        padding-bottom: 0;
        border: none;
    }
}

@media(max-width:600px) {
    .news_grid {
        grid-template-columns: 1fr;
        grid-gap: 30px 20px;
        padding-left: 0;
    }

}

/* ============ GALLERY =========
single-gallery.php / 
@audit gallery
=========================== */

.gallery_immagini__item img {
    margin-bottom: 15px;
}


/* ============ TESTIMONIANZE =========
template-testimonianze.php / 
@audit testimonianze
=========================== */

.testimonianza {
    padding: 30px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 1);
    margin-bottom: 25px;
    -webkit-box-shadow: 0px 0px 15px 10px rgba(122, 122, 122, 0.075);
    box-shadow: 0px 0px 15px 10px rgba(122, 122, 122, 0.075);
}

.testimonianza:last-child {
    margin-bottom: 0;
}

.testimonianza__logo img {
    max-width: 140px;
    max-height: 80px;
}

.testimonianza__logo {
    margin-bottom: 30px;
}

.testimonianza__logo--multiply {
    mix-blend-mode: multiply;
}

.testimonianza__recensione {
    margin-bottom: 30px;
    max-width: 990px;
}

.testimonianza__persona strong {
    font-family: bold;
}

.testimonianza__azienda {
    margin-top: 10px;
    color: var(--maincolor);
}

@media(max-width:1500px) {}

@media(max-width:1250px) {}

@media(max-width:990px) {}

@media(max-width:768px) {
    .testimonianza {
        padding: 30px;
        border-radius: 15px;
        margin-bottom: 20px;
    }
}

/* ========================
@audit swiper
SWIPER CAROUSELS
========================= */

.swiper-pagination-progressbar {
    position: relative !important;
    width: 25% !important;
    min-width: 200px;
    max-width: 300px;
    height: 1px !important;
    left: auto !important;
    top: auto !important;
    bottom: 0 !important;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: black;
}

.body--invert .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: white;
}


.swiper_controls__arrow .slider_button {
    height: 60px;
    width: 60px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border: 1px solid #ccc;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.swiper_controls__arrow .slider_button img {
    filter: invert(100);
}


.swiper_controls__arrow .slider_button:hover {
    cursor: pointer;
}

.slider_button:hover {
    background-color: var(--maincolor);
    border-color: var(--maincolor);
}

.slider_button:hover img {
    filter: invert(0);
}


.swiper_controls__arrow {
    display: flex;
    align-items: center;
    gap: 7px;
}

.swiper_controls__progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 13px;
}

.works_home .swiper-container {
    padding: 0 15%;
    width: 100%;
    position: relative;
}

.swiper-container {
    position: relative;
}

.swiper_controls__wrapper {
    padding-top: 50px;
    margin: 0 auto;
    width: 25% !important;
    min-width: 200px;
    max-width: 300px;
}

.swiper_controls__arrow .slider_button {
    position: absolute;
    top: calc(50% - 50px);
    transform: translateY(-50%);
    z-index: 50;
}

.swiper_controls__arrow .slider_button.slider_button_prev {
    left: -30px;
}


.gallery_immagini .swiper_controls__arrow .slider_button.slider_button_next {
    right: 15px;
}

.gallery_immagini .swiper_controls__arrow .slider_button.slider_button_prev {
    left: 15px;
}


.swiper_controls__arrow .slider_button.slider_button_next {
    right: -30px;
}



@media(max-width:768px) {
    .swiper_controls__arrow {
        display: none;
    }
}

/* fondale annerente  */

.darker {
    position: fixed;
    z-index: 1000000;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.45);
    height: 100%;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.darker--show {
    opacity: 1;
    visibility: visible;
}



/* @audi form laterale */
/*  ======== form laterale ========  */

.form_laterale {
    position: fixed;
    right: 0;
    top: 0;
    height: 100%;
    width: 35vw;
    min-width: 550px;
    background-color: white;
    z-index: 100000000000;
    padding: 50px;
    color: dimgray;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    -webkit-transition: all 0.55s ease;
    transition: all 0.55s ease;
}

@media(min-width:768px) {
    .form_laterale {
        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px;
    }
}

.form_laterale--show {
    transform: translateX(0);
}

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

form {
    color: white;
}

form a {
    color: white;
}

form p {
    font-size: 15px;
}

.form_laterale p {
    font-size: 15px;
    color: #aaa;
}

.form_laterale .label_sezione {
    color: white;
    text-align: left;
    font-family: m-3;
    position: absolute;
    top: 50px;
    left: 50px;
}

.form_laterale__cover {
    z-index: 100000000;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.2);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.55s ease;
    transition: all 0.55s ease;
}

.form_laterale__cover--show {
    opacity: 1;
    visibility: visible;
}


.close_menu:hover {
    cursor: pointer;
}

.form_laterale__close {
    position: absolute;
    right: 30px;
    top: 40px;
    z-index: 100;
    background-color: #ddd;
    height: 55px;
    width: 55px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid white;
}

.form_laterale__close img {
    height: 19px;
}

.form_laterale__close:hover {
    cursor: pointer;
}

.form_laterale__close img {}

.form_laterale .label_sezione strong {
    color: black;
}

.form_laterale .label_sezione {
    text-align: left;
}

.form-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    gap: 20px;
}

.form-row .col-50 {
    width: calc(50% - 1px);
}

.form-row .col-33 {
    width: calc(33.33% - 10px);
}

.form_flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

form select {
    padding: 15px 20px 15px 0;
    border: none;
    border-bottom: 1px solid white;
    color: white;
    background-color: transparent;
    font-family: bold;
    font-size: 15px;
}

@media (max-width:1250px) {
    .form_laterale {}

    .form_laterale .label_sezione {
        font-size: 27px;
        margin-bottom: 50px;
    }
}

.whatsapp {
    display: none;
}


@media (max-width:768px) {

    .form_laterale__close {
        right: 20px;
        top: 20px;
        height: 45px;
        width: 45px;
    }

    .form_laterale {
        height: 100%;
        width: 100%;
        min-width: auto;
        top: 0;
        padding: 25px;
    }

    .form-row {
        flex-wrap: wrap;
    }

    .form-row .col-md-6 {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .form_laterale .label_sezione {
        display: none;
    }

    .form_laterale p.privacy-form {
        font-size: 13px;
    }

    .form_laterale__close .close_menu_ico {
        height: 45px;
        width: 45px;
    }

    .close_menu_ico:hover {
        cursor: pointer;
    }

    .form_laterale__close {
        right: 20px;
        top: 20px;
    }

    .form_laterale__content {
        overflow-y: scroll;
        padding-top: 60px;
        padding-bottom: 60px;
        height: 100%;
    }

    #richiedi_informazioni_btn {
        bottom: 25px;
        right: 25px;
        gap: 0;
        padding: 0;

    }

    .richiedi_informazioni_btn__text {
        display: none;
    }

    .form-row {
        margin-bottom: 18px;
    }

    .form_laterale__close img {
        height: 17px;
    }
}





/* Form laterale
====================
FORM LATERALE
@audit form laterale
footer.php
====================
*/

.apri_form:hover {
    cursor: pointer;
}

.attiva_form_laterale {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--maincolor);
    border-radius: 100px;
    height: 50px;
    width: 50px;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.attiva_form_laterale img {
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.attiva_form_laterale:hover {
    cursor: pointer;
    background-color: var(--maincolor);
}

.attiva_form_laterale:hover img {
    filter: invert(0);
}

@media(max-width:1500px) {}

@media(max-width:1250px) {}

@media(max-width:990px) {}

@media(max-width:768px) {
    .attiva_form_laterale {
        bottom: 25px;
        right: 25px;
        height: 40px;
        width: 40px;
    }
}

/* ==============
CONTATTI template-contatti.php
@audit contatti
================ */


.form_contatti {
    background-color: var(--maincolor);
}

.form_contatti .form_laterale__content {
    max-width: 700px;
    margin: 0 auto;
}

.call_to_action_fissa__contact,
.call_to_action_fissa__contact a {
    color: white;
}

.form_contatti__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 5%;
}

.form_contatti__dati,
.form_contatti__dati p,
.form_contatti__dati strong {
    margin-bottom: 50px;
    color: white;
}

.form_contatti__dati strong {
    font-family: bold;
}

@media(max-width:990px) {
    .form_contatti__grid {
        display: block;
    }

    .form_contatti__grid .form_laterale__content {
        padding-top: 0;
        padding-bottom: 0;
    }

}

@media(max-width:768px) {}



/* ================= FORM =================== */

.wpcf7-text {
    width: 100%;
    border: none;
    padding: 5px;
    color: dimgray;
    background-color: transparent;
    border-bottom: 1px solid dimgray;
    border-radius: 0 !important;
}

.wpcf7-textarea {
    width: 100%;
    border: none;
    background-color: transparent;
    border: 1px solid dimgray;
    padding: 8px;
    margin-top: 15px;
    color: dimgray;
    border-radius: 0 !important;
    font-size: 15px;
    font-family: regular;
    height: 120px;
}

.privacy-form {
    font-size: 14px;
}


.form-row {
    color: dimgray;
}

.form-row label {
    color: dimgray;
}

input.wpcf7-form-control.wpcf7dtx-dynamictext.wpcf7-dynamictext {
    width: 100%;
    border-color: #ddd;
    border: none;
    padding: 5px;
    color: dimgray;
    background-color: transparent;
    border-bottom: 1px solid dimgray;
    display: none;
    border-radius: 0 !important;
}

input.wpcf7-quiz {
    width: 100%;
    border: none;
    padding: 5px;
    color: black;
    background-color: transparent;
    border-bottom: 1px solid black;
    border-radius: 0 !important;
}

input.wpcf7-form-control.wpcf7dtx-dynamictext.wpcf7-dynamictext:hover,
.wpcf7-textarea:hover,
.wpcf7-text:hover {
    border-color: #aaa !important;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
}

input[type='radio'],
input[type='checkbox'] {
    clip: rect(1px, 1px, 1px, 1px);
    padding: 10px;
}

input[type='radio'],
input[type='checkbox'] {
    width: 10px;
    height: 10px;
    background-color: transparent;
    border-radius: 50% !important;
    vertical-align: middle;
    border: 1px solid #ddd;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
    font-size: 14px;
    border: 1px solid gray;
}

.wpcf7-list-item-label {
    font-size: 13px;
}

input[type='radio']:checked,
input[type='checkbox']:checked {
    background-color: white;
    border: 1px solid white;
}

.wpcf7-submit {
    background-color: var(--maincolor);
    color: white;
    border: none;
    font-size: 15px;
    display: inline-block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transition: all 0.35s;
    transition: all 0.35s;
    font-family: bold;
    padding: 10px 40px;
    border-radius: 100px;
}

.wpcf7-submit:hover {
    cursor: pointer;
}

.privacy-form {
    font-size: 13px;
}

.form-row {}

input.wpcf7-form-control.wpcf7dtx-dynamictext.wpcf7-dynamictext {
    width: 100%;
    border-color: #ddd;
    border: none;
    padding: 5px;
    color: white;
    background-color: transparent;
    border-bottom: 1px solid white;
    display: none;
    border-radius: 0 !important;
}

input.wpcf7-form-control.wpcf7dtx-dynamictext.wpcf7-dynamictext:hover,
.wpcf7-textarea:hover,
.wpcf7-text:hover {
    /*background-color: white;*/
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
}

.form-group {
    margin-bottom: 1rem
}

.form-text {
    display: block;
    margin-top: .25rem
}

.form-check {
    position: relative;
    display: block;
}

.form-check-input {
    position: absolute;
    margin-top: .3rem;
    margin-left: -1.25rem
}

.form-check-input:disabled~.form-check-label {
    color: #6c757d
}

.form-check-label {
    margin-bottom: 0
}

.form-check-inline {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 0;
    margin-right: .75rem
}

.form-check-inline .form-check-input {
    position: static;
    margin-top: 0;
    margin-right: .3125rem;
    margin-left: 0
}

/* errori contact form 7 */

.wpcf7-not-valid-tip {
    font-size: 15px;
    color: red;
    margin-top: 10px;
}

.wpcf7-not-valid-tip:before {
    content: "↑";
    margin-right: 5px;
}

.wpcf7-response-output {
    border-color: white;
    border: 1px !important;
    background-color: #eee !important;
    text-align: center;
    color: var(--maincolor) !important;
    font-family: bold !important;
    padding: 10px !important;
}

footer a:hover {
    color: var(--maincolor);
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

footer li {
    margin-bottom: 4px;
}

/* ===== COMPLIANZ CUSTOMIZATION ===== */

#cmplz-manage-consent .cmplz-manage-consent {
    display: none;
}

#gestione_cookies {}

#gestione_cookies:hover {
    cursor: pointer;
}

.footer__flex__col--legals p {
    margin-bottom: 0;
}


/* ==============
FOOTER footer.php
@audit footer
================ */

footer {
    padding: 10vh 0;
    color: dimgray;
}

.footer--1 {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #dedede;
}

footer a,
footer li {
    font-size: 17px;
    text-decoration: none;
    color: dimgray;
}

.footer--2,
.footer--2 a {
    font-size: 15px;
}

.footer__flex {
    display: flex;
    gap: 10%;
}

.footer__flex.footer--2 {
    justify-content: space-between;
    gap: 10px;
}

.footer__flex__col strong {
    font-family: bold;
    margin-bottom: 20px;
    display: block;
    color: black;
}

.logo_footer svg {
    height: 45px;
}

.footer__flex__col__first {
    display: flex;
    gap: 30px;
}

.footer_strong {
    color: black;
}

@media(max-width:1500px) {}

@media(max-width:1250px) {}

@media(max-width:990px) {}

@media(max-width:768px) {
    .footer__flex {
        display: block;
        gap: 25px;
    }

    .footer__flex.footer__flex--1 {
        display: grid;
        grid-template-columns: 1fr;
    }

    .footer__flex__col__first {
        display: block;
    }

    .footer__flex__col__first svg {
        display: none;
    }

    footer {
        padding: 30px 0;
    }

    footer :is(a, li) {
        font-size: 15px;
    }

    .footer_strong {
        margin-bottom: 15px;
        font-size: 14px;
    }

}