@charset "utf-8";

/* ***********************
MARKETING BACKERY CSS
+++++++++++++++++++++++++ */


/* colori fissi */

/* @audit colori fissi */
:root {
    --verde: #5BBDB5;
    --rosa: #EE78A8;
}



/*
========================================
RESET STILI PER ANCORE, PARAGRAFI, TITOLI
@audit fonts
========================================
*/


/* SCELTA DEL FONT USATO */

/* regular */
@font-face {
    font-family: 'n-1';
    src: url('fonts/PPNeueMontreal-Regular.ttf');
    font-weight: normal;
    font-style: normal;
}

/* medium */
@font-face {
    font-family: 'n-2';
    src: url('fonts/PPNeueMontreal-Bold.ttf');
    font-weight: normal;
    font-style: normal;
}


html {
    background-color: white;
    scroll-behavior: smooth;
    overflow-x: hidden !important;
}

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

/* impostazioni standard
@audit settings standard 
 */

body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-weight: 400;
    color: black;
    overflow-x: hidden !important;
    font-family: n-1;
    -webkit-font-smoothing: antialiased !important;
    -moz-font-smoothing: antialiased !important;
    -ms-font-smoothing: antialiased !important;
    text-rendering: optimizelegibility !important;
    -webkit-transition: all 0.45s ease;
    transition: all 0.45s ease;
    font-size: 17px;
    background-color: white;
}

img {
    display: block;
}

.body--invert {
    color: white;
    background-color: black;
    border-color: white !important;
}

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

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

strong {
    font-weight: normal;
}

body p bold {
    font-weight: 700;
}

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


.elenco_attivo li {
    list-style: disc;
    margin-bottom: 7px;
    margin-left: 10px;
}

.elenco_attivo ul {
    list-style: disc;
}

/* gsap anim */

.timeline_stagger_anim,
.opacity0 {
    opacity: 0;
}

h2,
h3,
h4 {
    font-family: n-1;
    font-weight: normal;
    margin: 0;
    padding: 0;
}

.main_container :is(h2, h3) {
    font-family: n-1;
    font-size: 22px;
    margin-bottom: 20px;
}

h1 {
    font-family: n-1;
    font-weight: normal;
}


a {
    text-decoration: inherit;
    color: inherit;
    margin: 0;
    padding: 0;
}

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

p {
    font-family: n-1;
    font-size: 18px;
    margin: 0;
    margin-bottom: 15px;
    line-height: 145%;
}

p strong {
    font-family: n-2;
    font-weight: normal;
}

.paragrafo_big p {
    font-size: 36px;
    line-height: 120%;
    font-family: n-1;
}

.titolo {
    font-size: 22px;
    font-family: n-1;
    text-transform: uppercase;
}

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

    .titolo {
        font-size: 16px;
        font-family: n-1;
        text-transform: uppercase;
    }
}

strong {
    font-weight: normal;
}

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

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


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

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

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

.line_divider {
    height: 30px;
    border-top: 1px solid #000;
}

.body--invert .line_divider {
    border-color: white;
}

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

.testo_bianco {
    color: white !important;
}

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

.sfondo-grigio {
    background-color: #f6f6f6;
}

.sfondo-nero {
    background-color: black;
}

.bianco {
    color: white;
}

.nero {
    color: black;
}

.grid__col {
    height: auto;
}


.margin-top--vh {
    margin-top: 18vh;
}

.padding--vh {
    padding-top: 18vh;
    padding-bottom: 18vh;
}

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

.padding-top-super--vh {
    padding-top: 20vh;
}


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

.padding-bottom--vh {
    padding-bottom: 18vh;
}

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

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

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

@media(max-width:768px) {
    .margin-top--vh {
        margin-top: 50px;
    }

    .padding--vh {
        padding-top: 40px;
        padding-bottom: 40px;
    }

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

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


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

    .padding-bottom--vh {
        padding-bottom: 40px;
    }
}

/* pulsanti  */

.btn {
    font-size: 16px;
    color: var(--grafite);
    padding: 12px 32px;
    background-color: var(--rosa);
    border-radius: 100px;
    text-transform: uppercase;
    display: inline-block;
    margin-top: 50px;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
    color: white;
}

.btn.btn--img {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.btn.btn--img img {
    height: 12px;
    width: auto;
}

.btn:hover {
    background-color: black !important;
    color: white !important;
}

.btn--color {
    background-color: var(--ciano);
}

.body--invert .btn {
    background-color: #5A636C;
    color: white;
}


@media(max-width:768px) {
    .btn {
        font-size: 15px;
        padding: 11px 25px;
        display: block;
        margin-top: 25px;
        text-align: center;
    }
}

/* container e grid  */

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

.grid {
    display: grid;
    width: 100%;
}

.grid--50-50 {
    grid-template-columns: 50% 50%;
}

.grid--25-25-50 {
    grid-template-columns: 25% 25% 50%;
}

.flex_between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

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

@media(max-width:1250px) {
    .container-70 {
        width: calc(100% - 100px);
    }
}

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

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

    .grid--45-55 {
        grid-template-columns: 100%;
    }

    .grid--50-50 {
        grid-template-columns: 100%;
    }

    .grid--25-25-50 {
        grid-template-columns: 100%;
    }

}

/*============================
MENU DI NAVIGAZIONE
@audit navigazione
============================= */

.nav-up {
    left: -150px !important;
    opacity: 0 !important;
}

.navigazione {
    height: auto;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9998;
    -webkit-transition: all 0.45s ease;
    transition: all 0.45s ease;
}


.navigazione__container {
    height: 130px;
    width: 100%;
    padding: 0 50px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-transition: height 0.45s ease;
    transition: height 0.45s ease;
}

@media(max-width:1250px) {
    .navigazione__container {
        padding: 0 25px;
    }
}

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

.navigazione__logo--small img {
    height: 70px;
    opacity: 0;
    visibility: hidden;
}

.lingue.hide {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease; 
}

.navigazione__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.navigazione__logo .navigazione__logo--2 {
    display: none;
}

.body--invert .navigazione__logo .navigazione__logo--2 {
    display: block;
}

.body--invert .navigazione__logo .navigazione__logo--1 {
    display: none;
}

/* menu dx */

.menu_dx {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* HAMBURGER */

.lingue ul {
    display: flex;
    align-items: center;
    gap: 7px;
    text-transform: uppercase;
    font-size: 15px;
}

.current-lang a {
    font-family: n-2;
}

.hamburger {}

.hamburger_text {
    font-size: 15px;
    color: black;
    font-family: n-2; 
    margin-left: 5px;
    text-transform: uppercase;
}

.hide_on_menu_open--active {
    opacity: 0;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}


.hamburger__icon__container {
    transform-origin: center;
    -webkit-transition: all 0.35s;
    transition: all 0.35s;
}

.menu_btn {
    overflow: hidden;
    width: 115px;
    height: 45px;
    background-color: var(--verde);
    border-radius: 100px;
    position: absolute;
    right: 50px;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    -webkit-transition: all 0.45s ease;
    transition: all 0.45s ease;
}

.menu_btn--open {
    width: calc(100vw - 100px);
    padding: 0 25px;
}

.menu__content {
    width: 100%;
}

.menu__content ul {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-right: 70px;
    text-transform: uppercase;
    font-size: 16px;
}

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

.menu__content--open ul {
    display: flex;
}

.menu__content--open ul a:hover {
    text-decoration: none;
}

.hamburger__container {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 45px;
}

.hamburger__container:hover {
    cursor: pointer;
}


.hamburger_open {
    display: flex;
    height: 100%;
    align-items: center;
    transform-origin: center;
    -webkit-transition: all 0.45s ease;
    transition: all 0.45s ease;
    padding-right: 10px;
}

.hamburger_text {
    padding-right: 10px;
}

.navigazione--light .hamburger__container {
    background-color: white;
}

.hamburger__container--close {
    height: 55px;
    width: 55px;
}

.hamburger__close__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    width: 35px;
    background-color: black;
    border-radius: 100px;
    position: absolute;
    right: 5px;
    top: 5px;
    z-index: 10;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
    opacity: 0;
    visibility: hidden;
}

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

.hamburger_open--hide {
    opacity: 0;
    visibility: hidden;
}

.hamburger__close__icon img {
    filter: invert(100);
}

.hamburger__close__icon img {
    height: 16px;
    width: auto;
}

.hamburger--active .hamburger__close__icon {
    visibility: visible;
    opacity: 1;
}

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

.hamburger--active .hamburger_standard {
    visibility: hidden;
    opacity: 0;
}

.hamburger_standard .hamburger__icon {}

.hamburger__icon__line {
    height: 1px;
    width: 25px;
    margin-bottom: 5px;
    background-color: black;
}

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

.hamburger__icon--close {
    transform: rotate(45deg);
}


.hamburger__text {
    font-family: n-1;
    font-size: 26px;
    position: relative;
    color: black;
    letter-spacing: 1px;
    line-height: inherit;
    text-transform: lowercase;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

.hamburger__text:hover {
    opacity: 0.5;
}

.hamburger:hover {
    cursor: pointer;
}

.hamburger__container>div:last-child {
    margin-bottom: 0;
}

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

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

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

@media(max-width:768px) {

    .navigazione__container {
        height: 70px;
    }

    .lingue {
        display: none;
    }

    .navigazione__logo {
        left: 20px;
        transform: translateX(0);
    }

    .navigazione__logo img {
        height: 50px;
    }

    .menu_btn {
        width: 115px;
        height: 40px;
        background-color: var(--verde);
        border-radius: 100px;
        right: 20px;
        top: 15px;
    }

    .hamburger_text {
        font-size: 14px;
    }

    .menu_btn--open {
        width: calc(100vw - 40px);
        padding: 0 25px;
        height: calc(70vh - 30px);
        border-radius: 15px;
    }

    .menu__content ul {
        padding-right: 0;
        font-size: 18px;
    }

    .menu__content ul a {
        margin-bottom: 15px;
        display: block;
    }

    .menu__content--open ul {
        display: block;
    }

    .menu_btn--open .hamburger__close__icon {
        height: 50px;
        width: 50px;
        right: 20px;
    }
}

/* ====== FINE IMPOSTAZIONI NAVIGAZIONE MOBILE ======== */


/* @audit form popup 
====================================
FORM header.php
====================================
*/

.attiva_form {
    position: fixed;
    z-index: 1000;
    bottom: 30px;
    right: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    width: auto;
    padding: 0 20px;
    gap: 10px;
    color: white;
    border-radius: 100px;
    background-color: var(--rosa);
    text-transform: uppercase;
    font-family: n-2;
}

.form_laterale {
    position: fixed;
    z-index: 10000000000;
    right: 0;
    top: 0;
    height: 100%;
    background-color: white;
    border-left: 1px solid #000;
    width: 33%;
    min-width: 600px; 
    max-width: 750px; 
    padding-top: 70px;
    -webkit-transition: all 0.55s ease;
    transition: all 0.55s ease;
    transform: translateX(101%);
            overflow-y: scroll; 
}

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

.form_laterale .form_contatto__container {
    padding-bottom: 0; 
}

/* .form_laterale__inner {
    height: calc(100% - 70px);
    overflow-y: hidden; 
} */

.form_laterale__close:hover,
.attiva_form:hover {
    cursor: pointer;
}

.form_laterale__close {
    position: fixed;
    z-index: 1000;
    top: 25px;
    right: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    border-radius: 100px;
    background-color: black;
}

.form_laterale__close img {
    filter: invert(100);
    height: 20px;
}

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

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

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

@media(max-width:768px) {
    .attiva_form {
        bottom: 15px;
        right: 15px;
    }

    .form_laterale {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
    }

    .attiva_form {
        height: 45px;
        width: 45px;
    }

    .attiva_form span {
        display: none;
    }

}

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


/* ================ hero home  ================*/

.hero {
    padding-top: 35vh;
}

.hero__title {
    padding-left: 15%;
    padding-bottom: 30px;
    border-bottom: 1px solid #000;
}

.hero__title__inner {
    position: relative;
    width: auto;
    height: auto;
}

.hero__title__img {
    position: absolute;
    left: 24%;
    top: 25%;
}

.hero__title {
    font-size: 180px;
    line-height: 90%;
}

.hero__title__row--2 {
    position: relative;
    z-index: 10;
}

.hero__ruoli {
    display: flex;
    justify-content: flex-end;
    border-bottom: 1px solid #000;
}

.hero__ruoli__esplora {
    padding: 0 35px;
    border-left: 1px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__ruoli__esplora__inner img {
    display: block;
    animation: scrolldown 1.5s ease infinite;
}

@keyframes scrolldown {
    from {
        transform: translateY(-10px);
        opacity: 0;
    }

    to {
        transform: translateY(30px);
        opacity: 1;
    }
}

.hero__ruoli__esplora__inner {
    writing-mode: vertical-rl;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 13px;
    text-transform: uppercase;
}

.hero__ruoli__text {
    padding: 30px 0;
    padding-right: 10%;
}

.hero__ruoli__text p {
    margin: 0;
    font-size: 56px;
    line-height: 99%;
    /* text-decoration: underline; */
}

.hero__presentazione__line {
    height: 150px;
    border-left: 1px solid #000;
    position: relative;
    left: calc(50% - 1px);
}

.hero__presentazione__text {
    margin: 0 auto;
    max-width: 800px;
    text-align: center;
    padding-top: 30px;
}

.hero__presentazione__text p {
    font-size: 48px;
    margin-bottom: 0;
    text-align: center;
    line-height: 105%;
}

@media(max-width:1500px) {
    .hero__title {
        font-size: 150px;
    }

    .hero__ruoli__text p {
        font-size: 48px;
    }

    .hero__title {
        padding-left: 10%;
    }

    .hero__presentazione__text p {
        font-size: 40px;
    }
}

@media(max-width:1250px) {
    .hero__title {
        font-size: 120px;
    }

    .hero__ruoli__text p {
        font-size: 38px;
    }

    .hero__title {
        padding-left: 5%;
    }

    .hero {
        padding-top: 30vh;
    }

    .hero__title__img img {
        width: 200px;
        height: auto;
    }

    .hero__presentazione__text p {
        font-size: 32px;
    }

}

@media(max-width:990px) {

    .hero__presentazione__line {
        height: 110px;
    }

    .hero__title {
        font-size: 96px;
    }

    .hero__ruoli__text p {
        font-size: 30px;
    }

    .hero {
        padding-top: 25vh;
    }

    .hero__title {
        padding-left: 25px;
    }

    .hero__ruoli__text {
        padding-right: 5%;
    }

    .hero__presentazione__text p {
        font-size: 28px;
    }

    .hero__title__img img {
        width: 170px;
        height: auto;
    }

    .hero__title__img {
        left: 20%;
    }

    .hero__presentazione__text {
        padding: 0 25px;
    }
}

@media(max-width:768px) {

    .hero__presentazione__line {
        height: 80px;
    }

    .hero__title__img {
        left: 12%;
    }

    .hero__ruoli__esplora {
        display: none;
    }

    .hero__title {
        font-size: 60px;
    }

    .hero__presentazione__text p {
        font-size: 20px;
    }

    .hero__ruoli__text p {
        font-size: 22px;
    }

    .hero__presentazione__text {
        padding-top: 15px;
    }

    .hero__title__img img {
        width: 120px;
        height: auto;
    }
}


/* ================ servizi home  ================*/

.servizi_home {
    /* border-top: 1px solid #000; */
    display: grid;
    grid-template-columns: 20% 80%;
}

.servizi_home__sx {
    padding-left: 50px;
}

.servizi_home__sx :is(h2, h3, h4) {
    font-size: 40px;
    line-height: 100%;
    margin-bottom: 50px;
}

.servizi_home__sx {
    text-transform: uppercase;
}

.servizi_home__dx {
    padding-left: 10%;
}

.servizi_home__dx .swiper-container {
    width: 100%;
    overflow: hidden;
    padding-right: 10%;
    padding-bottom: 30px;
}

.servizi_home__item {
    padding: 30px;
    border: 1px solid black;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    -webkit-transition: all 0.15s ease;
    transition: all 0.15s ease;
    background-color: white;
}

.body--invert .servizi_home__item {
    background-color: black;
}

.servizi_home__item:hover {
    filter: invert(100);
}

.servizi_home__item p {
    font-size: 14px;
    text-transform: uppercase;
}

.servizi_home__item__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    text-transform: uppercase;
}

.servizi_home__item__head__number {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.swiper-slide a {
    display: block;
}

.body--invert :is(.servizi_home__item__head__number, .servizi_home__item, .servizi_home) {
    border-color: white;
}

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

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

@media(max-width:990px) {
    .servizi_home {
        display: grid;
        grid-template-columns: 30% 70%;
    }

}

@media(max-width:768px) {

    .servizi_home__item {

        min-height: 250px;
    }

    .servizi_home {
        grid-template-columns: 100%;
    }

    .servizi_home__sx,
    .servizi_home__dx {
        padding-left: 25px;
    }

    .servizi_home__sx {
        margin-bottom: 30px;
    }

    .flex_between {
        display: block;
    }
}


/* scritta che scorre */

.marquee .inner {
    display: flex;
    width: 100%;
    font-size: 120px;
    font-family: n-1;
}

.marquee {
    width: 100%;
    overflow-x: hidden;
    padding-bottom: 8vh;
    position: relative;
    z-index: 100;
}

.marquee .inner>* {
    white-space: nowrap;
    padding: 0 1rem;
}

.marquee .inner p {
    margin: 0;
    padding: 0;
    font-size: 150px;
    font-family: n-1;
}

@media(max-width:1500px) {
    .marquee .inner p {
        font-size: 120px;
    }
}

@media(max-width:1250px) {
    .marquee .inner p {
        font-size: 100px;
    }
}

@media(max-width:990px) {
    .marquee .inner p {
        font-size: 72px;
    }
}

@media(max-width:768px) {
    .marquee .inner p {
        font-size: 56px;
    }

    .marquee {
        padding-bottom: 30px;
    }
}

.servizi_item_image_hover {
    position: fixed;
    height: 25vh;
    width: 25vh;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    overflow: hidden;
}

.servizi_item_image_hover__wrapper {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.55s ease;
    transition: all 0.55s ease;
}

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

.servizi_item_image_hover__inner {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.servizi_item_image_hover__wrapper--show .servizi_item_image_hover__inner {
    animation: hover_zoom 1s ease;
}

@keyframes hover_zoom {
    from {
        transform: scale(1.5);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 0.75;
    }
}

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

@media(max-width:1250px) {
    .servizi_home__sx :is(h2, h3, h4) {
        font-size: 30px;
        line-height: 100%;
        margin-bottom: 30px;
    }

}

@media(max-width:990px) {
    .servizi_home__sx :is(h2, h3, h4) {
        font-size: 24px;
    }
}

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


/* ========== works home ============ */

.servizi_home .swiper-container {
    position: relative;
}

.works_home .btn {
    margin-top: 0;
}

.works_home .swiper_controls {
    margin-bottom: 50px;
    padding-top: 10vh;
}

.works_home .swiper-container {
    position: relative;
}

.works_home .slider_button,
.servizi_home .slider_button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 15;
}

.works_home .slider_button_prev,
.servizi_home .slider_button_prev {
    left: 50px;
}

.works_home .slider_button_next,
.servizi_home .slider_button_next {
    right: 50px;
}

.slider_button_next img {
    transform: rotate(180deg);
}

.label_big {
    height: auto;
    overflow: hidden;
}

.label_big span {
    display: block;
    font-size: 120px;
    font-family: n-1;
    text-transform: uppercase;
}

.flex_between .btn {
    margin-top: 0;
}

@media(max-width:1500px) {
    .label_big span {
        font-size: 100px;
    }
}

@media(max-width:1250px) {
    .label_big span {
        font-size: 85px;
    }
}

@media(max-width:990px) {
    .label_big span {
        font-size: 64px;
    }
}

@media(max-width:768px) {
    .label_big span {
        font-size: 48px;
        margin-bottom: 15px;
    }
}

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

.body--invert .swiper-pagination-progressbar {
    background: rgba(255, 255, 255, .25);
}

.swiper_controls__arrow .slider_button {
    height: 65px;
    width: 65px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #EFEFEF;
}

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

.body--invert .swiper_controls__arrow .slider_button img {
    filter: invert(0);
}


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

.body--invert .swiper_controls__arrow .slider_button {
    background-color: white;
}

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

.works_home__item__img {
    position: relative;
    overflow: hidden;
    height: auto;
}

.works_home__item__img img:not(.works_home__item__img__evidenza img) {
    width: 100%;
    max-width: 100%;
    -webkit-transition: all 0.95s ease;
    transition: all 0.95s ease;
    display: block;
}

.works_home__item:hover .works_home__item__img img:not(.works_home__item__img__evidenza img) {
    transform: scale(1.1);
}


.works_home__item__title {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    text-transform: uppercase;
}

.works_home__item__title__text {
    max-width: 80%;
    fton
}

.body--invert .works_home__item__title img {
    filter: invert(100);
}

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

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

@media(max-width:990px) {
    .slider_button_prev {
        left: 25px !important;
    }

    .slider_button_next {
        right: 25px !important;
    }
}

@media(max-width:768px) {
    .swiper_controls__arrow .slider_button {
        height: 45px;
        width: 45px;
    }

    .swiper_controls__arrow .slider_button img {
        height: 14px;
    }

    .slider_button_prev {
        left: 5px !important;
    }

    .slider_button_next {
        right: 5px !important;
    }

    .servizi_home .slider_button_prev {
        left: -10px !important;
    }

    .servizi_home .slider_button_prev {
        right: 10px !important;
    }

    .servizi_home__dx .swiper-container {
        overflow: visible;
    }

}


/* ================ news home  ================*/

.news_item {
    display: flex;
    gap: 30px;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #dedede;
}

.news_item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none
}

.news_item__sx img {
    max-width: 350px;
    height: auto;
    width: 100%;
    display: block;
}

.news_item__dx__down span {
    margin-right: 10px;
}

.news_item__dx__column {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.news_item__dx__up .titolo {
    margin-bottom: 30px;
    display: inline-block;
    text-decoration: underline;
}

.news_item__dx__up p {
    opacity: 0.65;
}

.news_item__dx__down {
    font-size: 13px;
    text-transform: uppercase;
}


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

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

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

@media(max-width:768px) {
    .news_item {
        flex-wrap: wrap;
        gap: 0;
    }

    .news_item__dx__down {
        font-size: 12px;
        opacity: 0.5;
    }


    .news_item__sx {
        margin-bottom: 15px;
    }

    .news_item__dx__up .titolo {
        margin-bottom: 10px;
    }
}


/* ======================
CATEGORIA ARTICOLI
@audit cat articoli
category.php
======================== */

/* paginazione post */

.paginazione_post {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.paginazione_post a,
.paginazione_post span {
    margin-right: 15px;
    font-family: poppins;
    font-weight: 600;
    color: black;
    -webkit-transition: all 0.35s;
    transition: all 0.35s;
}

.paginazione_post span {
    display: inline-block;
    height: 35px;
    width: 35px;
    border-radius: 100%;
    border: 1px solid black;
    display: flex;
    justify-content: center;
    align-items: center;
}

.paginazione_post a.page-numbers {
    display: inline-block;
    height: 35px;
    width: 35px;
    border-radius: 100%;
    border: 1px solid black;
    display: flex;
    justify-content: center;
    align-items: center;
}

.paginazione_post a.next.page-numbers,
.paginazione_post a.prev.page-numbers {
    display: inline-block;
    width: auto;
    height: 35px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
}

.paginazione_post a:hover {
    background-color: black;
    color: white;
}



/*
====================================
PORTFOLIO
 template-portfolio.php
@audit portfolio
====================================
*/

.intro_pagina h1 {
    font-size: 55px;
    margin: 0;
    max-width: 450px;
    line-height: 100%;
    text-transform: uppercase;
    font-weight: normal;
}

.opacity_half {
    opacity: 0.5;
}

.intro_pagina p {
    max-width: 500px;
    line-height: 125%;
    color: black;
}

.intro_pagina {
    padding-bottom: 70px;
    border-bottom: 1px solid #000;
}

.grid_col__portfolio {
    position: relative;
}

.portfolio_item {
    display: inline-block;
    padding: 15px;
    border: 1px solid black;
    margin-bottom: 30px;
}

.portfolio_item__img {
    height: auto;
    width: auto;
    overflow: hidden;
}

.portfolio_item__img img {
    -webkit-transition: all 0.85s ease;
    transition: all 0.85s ease;
}

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

.portfolio_item__title {
    margin-top: 15px;
}

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

.grid_col__portfolio_2 {
    border-left: 1px solid #000;
}

.elenco_portfolio {
    display: block;
    width: auto;
    padding-top: 50px;
    padding-left: 50px;
    padding-right: 50px;
}

.img--sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 300px;
}

@media(max-width:1500px) {
    .intro_pagina h1 {
        font-size: 48px;
    }
}

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

    .elenco_portfolio {
        padding-top: 40px;
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media(max-width:990px) {
    .elenco_portfolio {
        padding-top: 25px;
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media(max-width:768px) {

    .intro_pagina h1 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .intro_pagina {
        padding-top: 50px;
        padding-bottom: 30px;
    }

    .portfolio_item {
        margin-bottom: 15px;
    }
}

/*
====================================
SERVIZI
 template-servizi.php
@audit servizi
====================================
*/

.elenco_post {
    padding: 30px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 11px;
    text-transform: uppercase;
    font-size: 13px;
}

.filtro_categorie_blog {
    display: flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
}

.elenco_post__item,
.filtro_categorie_blog a {
    border: 1px solid black;
    padding: 5px 18px;
    border-radius: 100px;
    display: inline-block;
    font-size: 15px;
    white-space: nowrap;
}

.filtro_categorie_blog .current-cat a {
    color: white;
    border-color: var(--rosa);
    background-color: var(--rosa);
}

.elenco_post__item--active {
    color: white;
    border-color: var(--rosa);
    background-color: var(--rosa);
}

.elenco_servizi {
    display: block;
    width: auto;
    padding-top: 45px;
    padding-left: 45px;
    padding-right: 50px;
}

.service_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    border-bottom: 1px solid #000;
    padding-bottom: 50px;
    margin-bottom: 50px;
    position: relative;
}

.service_item:last-child {
    border-bottom: none;
}

.service_item__sx {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 20px;
    text-transform: uppercase;
}

.service_item__sx__number {
    background-color: white;
    height: 75px;
    width: 75px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border: 1px solid black;
}

.service_item__dx img {
    transform: rotate(180deg);
}

.service_item__hover {
    position: absolute;
    left: 0;
    top: calc(50% + 25px);
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
}

.service_item__hover .marquee p {
    font-size: 64px;
    text-transform: uppercase;
}

.service_item:hover :is(.service_item__sx, .service_item__dx) {
    opacity: 0;
    visibility: hidden;
}

.service_item:hover .service_item__hover {
    opacity: 1;
    visibility: visible;
}

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

@media(max-width:1250px) {
    .service_item {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }

    .service_item__sx__number {
        height: 70px;
        width: 70px;
    }

    .grid_col__portfolio_1 img {
        padding-top: 7vh;
        padding-right: 50px;
    }

    .service_item__hover .marquee p {
        font-size: 48px;
    }

}

@media(max-width:990px) {

    .service_item__sx {
        gap: 10px;
        font-size: 16px;
    }

    .elenco_servizi {
        display: block;
        width: auto;
        padding-top: 30px;
        padding-left: 30px;
        padding-right: 30px;
    }

    .service_item {
        padding-bottom: 25px;
        margin-bottom: 25px;
    }

    .service_item__sx__number {
        height: 60px;
        width: 60px;
    }

    .service_item__sx {
        gap: 12px;
        font-size: 18px;
    }
}

@media(max-width:768px) {

    .grid_col:nth-child(2) {
        margin-top: 30px;
    }

    .elenco_post__item,
    .filtro_categorie_blog a {
        padding: 4px 14px;
        font-size: 14px;
    }

    .service_item__sx {
        gap: 10px;
        font-size: 15px;
    }

    .service_item__sx__number {
        height: 50px;
        width: 50px;
    }

    .grid_col__portfolio_1 {
        display: none;
    }

    .elenco_servizi {
        display: block;
        width: auto;
        padding-top: 30px;
        padding-left: 25px;
        padding-right: 25px;
    }

    .service_item {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .service_item__dx img {
        height: 14px;
    }
}

/* single-services.php - SINGOLO SERVIZIO */

.servizio_keywords li {
    font-size: 64px;
    text-transform: uppercase;
    line-height: 105%;
    text-decoration: underline;
}

.label_small {
    margin-bottom: 20px;
    font-size: 13px;
}

.grid_col_servizio_2 {
    border-left: 1px solid #000;
}

.line_divider.line_divider--p0 {
    height: 0;
}

.servizio_keywords,
.servizio_descrizione {
    padding-top: 15vh;
}

.servizio_descrizione {
    padding-left: 50px;
}

.servizio_descrizione p {
    max-width: 600px;
}

.servizio_descrizione em a {
    display: inline-block;
    padding: 10px 28px;
    background-color: var(--rosa);
    text-decoration: none;
    border-radius: 100px;
    color: white;
    font-style: normal;
    font-family: n-2;
    margin-top: 10px;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.servizio_descrizione em a:hover {
    background-color: black;
}


.grid--portfolio .grid_col {
    padding-bottom: 10vh;
}

@media(max-width:768px) {
    .grid--portfolio .grid_col {
        padding-bottom: 30px;
    }
}



/*
@audit single portfolio
single-projects.php - SINGOLO PROGETTO */

.grid_col_progetto_2,
.grid_col_progetto_3 {
    border-left: 1px solid #000;
}

.grid_col_progetto_2 {
    padding: 50px;
}

.progetto_copertina {
    height: auto;
    width: auto;
    overflow: hidden;
}

.progetto_copertina img {
    animation: progetto_copertina 1.5s ease;
}

@keyframes progetto_copertina {
    0% {
        opacity: 0;
        transform: scale(1.15);
    }

    20% {
        opacity: 0;
        transform: scale(1.15);
    }

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

.progetto_descrizione {
    padding-top: 50px;
    padding-left: 50px;
    padding-right: 50px;
}

.progetto_descrizione p {
    max-width: 550px;
}

.progetto_dati__item {
    margin-bottom: 50px;
    text-transform: uppercase;
    font-size: 15px;
}

.progetto_dati__item strong {
    font-family: n-2;
}

@media(max-width:1500px) {

    .servizio_keywords li {
        font-size: 56px;
    }

    .elenco_post__item,
    .filtro_categorie_blog a {
        padding: 4px 14px;
        font-size: 13px;
    }

}

@media(max-width:1250px) {
    .elenco_post {
        padding: 25px 0;
        width: 100%;
        overflow-x: scroll;
        flex-wrap: nowrap;
    }

    .servizio_keywords li {
        font-size: 48px;
    }

}

@media(max-width:990px) {
    .progetto_descrizione {
        padding-top: 30px;
        padding-left: 30px;
        padding-right: 30px;
    }

    .grid_col_progetto_2 {
        padding: 30px;
    }

    .servizio_keywords li {
        font-size: 36px;
    }
}

@media(max-width:768px) {

    .servizio_keywords {
        padding-top: 50px;
    }

    .grid_col_servizio_2 {
        border-left: none;
    }

    .servizio_descrizione {
        padding-left: 0;
        padding-top: 0;
    }

    .progetto_dati__item {
        margin-bottom: 30px;
    }

    .intro_pagina h1 {
        margin-bottom: 0;
    }

    .progetto_descrizione {
        padding-top: 30px;
        padding-left: 25px;
        padding-right: 25px;
    }

    .grid_col_progetto_2 {
        padding: 25px;
        padding-top: 30px;
        padding-top: 0;
    }

    .elenco_post {
        padding: 15px 0;
        width: 100vw;
        position: relative;
        transform: translateX(-5vw);
        padding-left: 5vw;
        padding-right: 5vw;
    }

    .grid_col_progetto_2 {
        border-bottom: 1px solid #000;
        border-left: none !important;
    }

    .grid_col_progetto_3 {
        border-left: none !important;
    }

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

/* ========= sezione slideshow home swiper js ========= */

.slideshow_home {
    padding-bottom: 70px;
    position: relative;
}

.swiper-wrapper {
    transition-duration: 0.35s !important;
}


.swiper-container-evidenza {
    position: relative;
    padding-bottom: 50px;
    padding-left: 10%;
    padding-right: 10%;
}

@media (max-width:1400px) {
    .swiper-container-evidenza {
        padding-bottom: 40px;
        padding-left: 5%;
        padding-right: 5%;
    }
}

.swiper-container-singolo {
    position: relative;
    padding-bottom: 50px;
    width: 100%;
}


.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: calc(50% - 25px);
    width: 70px;
    height: 50px;
    margin: 0;
    padding: 0;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
}

.swiper-button-next img,
.swiper-button-prev img {
    height: 30px;
    width: auto;
    margin: 0 auto;
}

.swiper-button-prev {
    left: 0;
    color: transparent;
    background-color: var(--maincolor);
    font-size: 15px;
    padding: 15px;
    background-image: none;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}

.swiper-button-next {
    right: 0;
    color: transparent;
    background-color: var(--maincolor);
    background-image: none;
}


.swiper-pagination span {
    margin: 0 15px !important;
}



.swiper-pagination-bullet {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    height: 11px;
    width: 11px;
    text-align: center;
    background-color: white;
}

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


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


/*
========================================
PAGINA SINGOLO PROGETTO single-projects.php
@audit single project
========================================
*/

.navigazione_progetto {
    position: fixed;
    left: 15px; 
    bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 100;
}

.navigazione_progetto__item {
    height: 45px;
    width: 45px;
    background-color: dimgray;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.navigazione_progetto__item.navigazione_progetto__item--invert img {
    filter: invert(0);
}

.navigazione_progetto__item.navigazione_progetto__item--reverse img {
    transform: rotate(180deg);
}

.navigazione_progetto__item:hover {}

.navigazione_progetto__item img {
    filter: invert(100);
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.navigazione_progetto__item:hover img {}


.hero_project {
    min-height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero_project__img {
    height: auto;
    position: relative;
}

.hero_project__img__inner {
    height: auto;
    width: auto;
    overflow: hidden;
}

.hero_project__img__evidenza {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    z-index: 10;
}

.hero_project__inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero_project__title .inner p {
    color: #E8E6DF;
    font-size: 150px;
}

.hero_project__darker {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.5;
    z-index: 2;
}

.hero_project__white {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 10;
}

.hero_project__title {
    position: absolute;
    z-index: 5;
    overflow: hidden;
    height: auto;
    top: 50%;
    transform: translateY(-50%);
}

.hero_project__title__inner {
    color: white;
    font-size: 150px;
    line-height: 150px;
    font-family: b-1;
    text-transform: uppercase;
    height: auto;
}

/* intro progetto */

.introduzione_progetto__dati {
    padding-top: 50px;
    border-top: 1px solid #B9B9B9;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8vh;
}

.introduzione_progetto__dati__item strong {
    display: block;
    color: black;
    font-family: n-1;
    margin-bottom: 20px;
}

.introduzione_progetto__dati__item {
    color: #7B868C;
    font-family: n-1;
}

.introduzione_progetto__dati__item li {
    margin-bottom: 9px;
}

.introduzione_progetto .paragrafo_big {
    max-width: 450px;
}

.introduzione_progetto__description {
    padding-bottom: 50px;
    border-bottom: 1px solid #B9B9B9;
}

/* custom builder progetto */

.griglia_immagini__item {
    height: auto;
    width: auto;
    overflow: hidden;
}

.griglia_immagini__item img {
    width: 100%;
    display: block;
}

.griglia_immagini .grid {
    grid-column-gap: 50px;
}

.griglia_immagini__item {
    margin-bottom: 50px;
}

.titolo_paragrafo .paragrafo_big {
    max-width: 450px;
}

.titolo_paragrafo .paragrafo_big p {
    font-family: n-1;
}

/* gallery immagini slider progetto */

.gallery_immagini .swiper-slide img {
    height: 70vh;
    width: auto;
    max-height: 800px;
}

.gallery_immagini .swiper_controls {
    margin-bottom: 70px;
}

.gallery_immagini .swiper-slide {
    width: auto;
}

.gallery_immagini .swiper-container {
    padding: 0 100px;
}

/* testimonianza */

.testimonianza__content {
    width: 60%;
    max-width: 600px;
    margin: 0 auto;
}

.testimonianza__content__testo {
    margin-bottom: 50px;
}

.testimonianza__content__testo p {
    font-size: 36px;
    font-family: n-1;
}

.testimonianza__content__autore {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonianza__content__autore__img {
    overflow: hidden;
    height: 100px;
    width: 100px;
    border-radius: 100px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.testimonianza__content__autore p {
    margin-bottom: 0;
}

.testimonianza__content__autore p strong {
    font-family: n-1;
    font-weight: normal;
}

/* next post */

.next_post {
    border-top: 1px solid #B9B9B9;
    padding-top: 10vh;
    padding-bottom: 10vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.next_post__inner {}

.next_post__title {
    position: absolute;
    z-index: 10;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
}

.next_post__title .inner p {
    color: #E8E6DF;
    font-size: 120px;
    margin-bottom: 0;
}

.next_post__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.next_post__cta__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #E8E6DF;
    height: 65px;
    width: 65px;
    border-radius: 100px;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.next_post__cta__icon img {
    height: 15px;
}

.next_post__inner:hover .next_post__cta__icon {
    transform: scale(1.1);
}

.hero_project--page .hero_project__title {
    font-size: 220px;
    text-align: center;
    font-family: n-1;
}

.hero_project--page {}

.hero_project--page .hero_project__img__inner {
    opacity: 0.75;
}

/*
========================================
PAGINA ARTICOLO single.php
@audit articolo 
========================================
*/

.container-70--news {
    width: 60%;
    max-width: 1000px;
}

.single_news__head__time {
    display: flex;
    align-items: center;
    gap: 9px;
}

.single_news__head__time img {
    height: 22px;
}

.single_news__head__cat span:after {
    content: ", ";
}

.single_news__head__cat span:last-child:after {
    content: "";
}

.single_news__head {
    color: #7B868C;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
}

.single_news img:not(.single_news__head img) {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-bottom: 30px;
}

.single_news h1 {
    font-size: 48px;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.single_news h2,
.single_news h3 {
    font-family: n-2;
}

.single_news h2 {
    font-size: 32px;
}


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

@media(max-width:1250px) {
    .container-70--news {
        width: 80%;
    }
}

@media(max-width:990px) {
    .container-70--news {
        width: 90%;
    }

    .single_news h1 {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .single_news h2 {
        font-size: 26px;
    }


}

@media(max-width:768px) {

    .single_news h2 {
        font-size: 22px;
    }


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

    .single_news h1 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .single_news__head {
        color: #7B868C;
        font-size: 11px;
        flex-wrap: wrap;
        gap: 4px;
        margin-bottom: 15px;
    }

    .mt-mobile {
        padding-top: 50px;
    }

}


/* ==============
CHI SONO
@audit chi sono
template-chi_sono.php
================ */

.chi_sono_intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* border-bottom: 1px solid #000; */
}

.body--invert .chi_sono_intro {
    /* border-bottom: 1px solid white; */
}

.chi_sono_intro__img {
    display: flex;
    justify-content: center;
}

.chi_sono_intro__text {
    max-width: 550px;
}

.sezione_chi_sono {
    margin-bottom: 15vh;
}

.sezione_chi_sono__grid {
    width: 70%;
    max-width: 1500px;
    margin: 0 auto;
    padding-top: 5vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.sezione_chi_sono__grid__1 {
    max-width: 400px;
    font-size: 28px;
    text-decoration: underline;
}

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

@media(max-width:1250px) {
    .sezione_chi_sono__grid {
        width: 80%;
        padding-top: 5vh;
    }
}

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

    .sezione_chi_sono {
        margin-bottom: 8vh;
    }
}

@media(max-width:768px) {

    .sezione_chi_sono {
        margin-bottom: 30px;
    }

    .sezione_chi_sono__grid__1 {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .chi_sono_intro__img {
        border-bottom: 1px solid #000;
    }

    .chi_sono_intro {
        display: grid;
        grid-template-columns: 1fr;
        border-bottom: 1px solid #000;
        padding-top: 50px;
    }

    .sezione_chi_sono__grid {
        width: calc(100% - 50px);
        padding-top: 30px;
    }

    .chi_sono_intro__img img {
        height: 60vh;
        width: auto;
    }

    .chi_sono_intro__text {
        padding: 0 25px;
        padding-bottom: 30px;
    }

    .chi_sono_intro__text h1 {
        font-size: 24px;
    }

    .sezione_chi_sono__grid {
        grid-template-columns: 1fr;
    }
}

/*
========================================
PAGINA PODCAST  template-podcast.php
@audit podcast
========================================
*/

.podcast_item {
    padding: 30px;
    border: 1px solid #000;
}

.elenco_podcast {
    padding-top: 50px;
    padding-bottom: 50px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.podcast_item__title {
    text-transform: uppercase;
    margin-bottom: 30px;
}

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

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

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

@media(max-width:768px) {
    .podcast_item {
        padding: 0;
        border: none;
        padding-bottom: 15px;
        margin-bottom: 15px;
        border-bottom: 1px solid #000;
    }

    .podcast_item:last-child {
        padding-bottom: 0;
        margin-bottom: 0;
        border-bottom: none;
    }

    .podcast_item iframe {
        max-width: calc(100vw - 50px);
    }
}

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

.form_contatto__container {
    /* max-width: 650px; */
    font-size: 22px;
    /* text-transform: uppercase; */
    padding: 50px;
}

.form_contatto p {
    font-size: 18px;
}

.wpcf7-text {
    width: 100%;
    border: none;
    padding: 5px;
    color: black;
    background-color: white;
    border-bottom: 1px solid #aaa !important;
    border-radius: 0 !important;
    font-size: 16px;
}

.wpcf7-textarea {
    width: 100%;
    border: none;
    padding: 15px;
    color: black;
    background-color: white;
    border: 1px solid #aaa !important;
    border-radius: 0 !important;
    height: 120px;
    font-size: 16px;
    font-family: n-1;
}

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

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

.privacy-form p a {
    text-decoration: underline !important; 
}

.form-row {
    color: black;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.form-row input,
.form-row p {
    width: 100%;
    display: block;
}

.form-row .col-md-6 {
    padding: 0;
    width: 100% !important;
    max-width: 100% !important;
}

.form-row label {
    color: black;
    display: inline-block;
    margin-bottom: 3px;
    font-size: 18px;
}

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

.attiva_form_laterale:hover {
    cursor: pointer;
}

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

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

.wpcf7-submit {
    background-color: var(--rosa);
    color: white;
    border: none;
    font-size: 18px;
    display: inline-block;
    position: relative;
    -webkit-transition: all 0.35s;
    transition: all 0.35s;
    padding: 10px 60px;
    border-radius: 100px;
    font-family: n-2;
    text-transform: uppercase;
    text-align: left;
}

.pulsante_invio_form p {
display: flex;
justify-content: flex-start; 
}

.wpcf7-submit:hover {
    background-color: black;
    cursor: pointer;
}

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

.privacy-form a {
    text-decoration: underline !important; 
}

.form label {
    color: black;
    line-height: normal;
}

.form_label {
    margin-bottom: 10px;
    font-size: 14px;
}

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

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

@media (max-width:768px) {
    .container-form {
        padding: 25px;
        width: 100%;
    }

    .form-row {
        color: black;
        display: grid;
        gap: 10px;
        margin-bottom: 10px;
        grid-template-columns: 1fr;
    }

    .form_flex {
        display: block;
    }

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

    .form_laterale__close img {
        height: 15px;
    }

    .form-group {
        margin-bottom: 0;
    }

    .wpcf7-submit {
        width: 100%;
        margin-top: 15px;
    }
}


.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: n-1 !important;
    padding: 10px !important;
}


.faq_container {
    padding: 0 50px;
}

.faq {
    border: 1px solid #aaa;
    margin-bottom: 10px;
}

.faq:hover {
    cursor: pointer;
}

.faq.active .faq__content {
    display: block;
}

.faq.active {
    border-color: black;
}

.faq__content {
    display: none;
}

.faq__title {
    font-family: n-2;
    font-size: 18px;
    padding: 30px;
}

.faq__content {
    padding-bottom: 0;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
}

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

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

@media(max-width:990px) {
    .faq_container {
        padding: 0 30px;
    }

}

@media(max-width:768px) {

    .faq_container {
        padding: 0 15px;
    }


    .form_contatto__container {
        max-width: 100%;
        font-size: 15px;
        padding: 25px;
    }

    .form_contatto p {
        font-size: 15px;
    }

    .form_end_flex {
        flex-wrap: wrap;
    }

    .form_contatto :is(input[type=text], input[type=email], input[type=tel]) {
        font-size: 15px;
    }

    .form_contatto select {
        font-size: 15px;
    }

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

    .form_privacy {
        padding-top: 15px;
    }

    .pulsante_invio_form p {
    display: block;
} 

    .wpcf7-submit {
        width: 100%;   
        display: block;
        padding: 10px 25px;
        color: black;
        font-size: 15px;
        margin-top: 30px;
        text-align: center;
    }

    .form_privacy span {
        font-size: 13px;
    }

    .form_submit p {
        margin-bottom: 0 !important;
    }

}

/* ==============
FOOTER
@audit footer
================ */

.h-50 {
    padding-top: 50px;
    height: 1px;
}

.container-70.container-70--footer {
    width: calc(70% + 100px);
    max-width: 1500px;
}


footer {
    background-color: black;
    margin: 0 auto;
    color: white;
    padding: 70px 0;
    text-transform: uppercase;

}

footer a {
    text-decoration: underline;
}

footer,
footer a,
footer p {
    font-size: 16px;
}


.footer_dati {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-column-gap: 30px;
}

.footer_dati__item {
    margin-bottom: 30px;
}

.footer_dati__item p {
    margin: 0;
}

.footer_dati strong {
    font-family: n-2;
    margin-bottom: 5px;
    display: block;
}

.footer_sotto {
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    text-transform: uppercase;
    font-size: 14px;
}

.footer_sotto a {
    text-transform: uppercase;
    text-decoration: underline;
}

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

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

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

@media(max-width:768px) {
    .footer_dati {
        display: grid;
        grid-template-columns: 1fr;
        grid-column-gap: 0;
    }

    .footer_sotto {
        padding: 20px 0;
        flex-wrap: wrap;
    }

    footer {
        padding: 30px 0;
        font-size: 15px;
    }

    footer a {}
}

/* paragrafo legale template-page.php */

.paragrafo-legal {
    margin-left: 10%;
    max-width: 990px;
    padding: 30vh 0;
}

.paragrafo-legal p {
    font-size: 15px;
    color: dimgray;
    margin-bottom: 15px;
}

.paragrafo-legal p strong {
    color: black;
    font-family: n-1 !important;
}

.paragrafo-legal ul {
    margin-left: 10px;
}

.paragrafo-legal li {
    list-style: disc;
    margin-left: 10px;
    color: dimgray;
    margin-bottom: 10px;
}

.paragrafo-legal h2,
.paragrafo-legal h3,
.paragrafo-legal h4 {
    font-family: n-1 !important;
    font-size: 30px;
    margin-bottom: 20px;
}

@media (max-width:990px) {
    .paragrafo-legal {
        padding-left: 30px;
        padding-right: 30px;
    }
}

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

#gestione_cookies:hover {
    cursor: pointer;
}