@charset "utf-8";

/* +++++++++++++++++++++++++
EMPHALINEA CSS
+++++++++++++++++++++++++ */



/* SCELTA DEL FONT USATO */


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


/* medium */
@font-face {
    font-family: 'font_medium';
    src: url('fonts/NeueMontreal-Medium.ttf');
    font-weight: normal;
    font-style: normal;
}

/* semi bold */
@font-face {
    font-family: 'font_semi_bold';
    src: url('fonts/NeueMontreal-Bold.ttf');
    font-weight: normal;
    font-style: normal;
}

/* bold */
@font-face {
    font-family: 'font_bold';
    src: url('fonts/NeueMontreal-Bold.ttf');
    font-weight: normal;
    font-style: normal;
}


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

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

/* impostazioni standard
@audit settings standard 
 */

* {
    box-sizing: border-box;
}

html {
    box-sizing: border-box;
    background-color: #031028;
    color: black;
    font-size: 1vw;
}

body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-weight: 400;
    color: black;
    font-family: font_regular;
    -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;
    background-color: var(--grigio);
    -webkit-transition: all 0.35s ease;
    transition: background-color 0.5s ease;
    -webkit-transition: background-color 0.5s ease;
    font-size: clamp(15px, 1rem, 18px);
}

.show--mobile {
    display: none;
}

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

    .show--mobile {
        display: block;
    }
}

img {
    display: block;
}

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

.mt-nav {
    height: calc(100px + 5vh);
}

.mt-nav--categoria {
    margin-top: calc(70px + 15vh);
}

p a {
    text-decoration: underline;
}


/* gsap anim */

.fade_in {
    opacity: 0;
    transform: translateY(10%);
    display: block;
}

.timeline_stagger_anim,
.opacity0 {
    opacity: 0;
}

h1,
h2,
h3,
h4 {
    font-family: font_medium;
    font-weight: normal;
    margin: 0;
    padding: 0;
    line-height: 105%;
}

strong {
    font-weight: normal;
}

h1,
h2,
h3,
h4 {
    margin-bottom: clamp(15px, 1.3rem, 25px);
    font-weight: normal;
}

.intro_sezione {
    margin-bottom: clamp(30px, 5rem, 50px);
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    padding-top: 15px;
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}


.uppercase {
    text-transform: uppercase;
}

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

h1,
.titolo1 {
    font-size: clamp(28px, 5rem, 64px);
    font-family: font_regular;
    margin-bottom: clamp(30px, 3rem, 60px);
}

h2,
.titolo2 {
    font-size: clamp(24px, 2rem, 40px);
}

h3,
.titolo3 {
    font-size: clamp(18px, 1.5rem, 22px);
}


h4,
.titolo4 {
    font-size: clamp(16px, 1.2rem, 19px);
}

.no-mb {
    margin-bottom: 0;
}

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

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

p {
    font-family: font_regular;
    margin: 0;
    margin-bottom: 1em;
    line-height: 130%;
    font-size: clamp(15px, 1.2rem, 17px);
    color: black;
}

@media(min-width:768px) {
    p {
        max-width: 600px;
    }
}

li {
    line-height: 130%;
    font-size: clamp(15px, 1.2em, 17px);
    list-style: disc;
    margin-bottom: 10px;
    margin-left: 7px;
}

ul {
    margin-left: 10px;
    padding-left: 0;
}


p strong {
    font-family: font_bold;
}

p a {
    text-decoration: underline;
    font-family: font_semi_bold;
}

.text-bold {
    font-family: testo3;
}

.text-bold p {
    font-family: testo3;
    line-height: 105%;
}

.text-gradient {
    background: var(--sfumatura);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.intro_number {}


/* pulsanti */

.btn {
    text-decoration: underline;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.btn:hover {
    cursor: pointer;
    text-decoration: underline;
    opacity: 0.6;
}

.btn.btn--gradient {
    background: var(--sfumatura);
    border: none;
}

.btn--img {
    background-color: var(--grigio);
    padding-right: 0.5em;
    border: none;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
    overflow: hidden;
}

.btn:hover {
    cursor: pointer;
}

.btn--img img {
    height: 1.3em;
    width: auto;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}


@media(min-width:768px) {

    .btn--img:after {
        display: block;
        content: "";
        background-color: var(--grigio2);
        position: absolute;
        z-index: 2;
        left: 0;
        top: 0;
        border-radius: 100px;
        height: 100%;
        width: 100%;
        -webkit-transition: all 0.35s ease;
        transition: all 0.35s ease;
        transform: translateX(-100%);
        opacity: 0;
    }

    .btn--img:hover {
        color: black;
    }

    .btn--img:hover:after {
        transform: translateX(0);
        opacity: 1;
    }

    .btn--img:hover img {
        filter: invert(1);
        transform: rotate(90deg);
    }
}

/* container */

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

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

.container-70 {
    width: 70%;
    max-width: 1500px;
    margin: 0 auto;
}

.container-90 {
    width: calc(100% - clamp(30px, 5vw, 60px));
    max-width: 1800px;
    margin: 0 auto;
}

.container-100--text {
    max-width: 900px;
}

.container-100.no_max_width {
    max-width: inherit;
}


.grid {
    display: grid;
}

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

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

.grid--2-3 {
    grid-template-columns: 1.8fr 3.2fr;
}

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

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

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

.grid__col {
    position: relative;
}

.p-20 {
    padding: 20px;
}

.grid__col--hover {}

.grid__col.grid__col--quadrato {
    aspect-ratio: 1 / 1;
}

.pt {
    padding-top: 5vh;
}

.pb {
    padding-bottom: 5vh;
}

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

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

.pt--small {
    padding-top: 5vh;
}

.pr {
    padding-right: 15%;
}

.grid__col__vertical {
    display: flex;
    align-items: center;
    height: 100%;
}

.grid__col.grid__col--rettangolo {
    aspect-ratio: 2/1.1;
}

.grid--border .grid__col {
    border-right: 1px solid;
}

.grid--border .grid__col:last-child {
    border-right: none;
}

.grid__col__text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-transform: uppercase;
}

.grid--gap {
    gap: clamp(20px, 10%, 150px);
}

.grid--gap--super {
    gap: 10%;
}

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

.grid--6 {
    grid-template-columns: repeat(6, 1fr);
}

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

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

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

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

.grid__col p {
    max-width: 800px;
}

.vertical_line {
    border-right: 1px solid var(--maincolor);
}

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

.align_end {
    align-items: flex-end;
}


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

@media(min-width:990px) {
    .sticky {
        -webkit-position: sticky;
        position: sticky;
        top: 150px;
    }
}


@media(max-width:990px) {
    .grid--gap {
        gap: 3rem;
    }

    .grid--1-2,
    .grid--2-1 {
        grid-template-columns: 1fr;
    }

}

@media(max-width:768px) {
    .pt--super {
        padding-top: 50px;
    }

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

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

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

@media(max-width:600px) {

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

    h1,
    h2,
    h3,
    h4 {
        margin-bottom: 25px;
        font-weight: normal;
    }
}

/*
========================================
HEADER header.php
@audit header
========================================
*/

.navigazione {
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    height: 80px;
    background-color: var(--antracite);
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

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

:root {
    --grigio: #D2D2D2;
    --grigio2: #c3c3c3;
    --antracite: rgba(51, 51, 51, 1);
    --oro: #B99F7D;
}

.navigazione_menu {
    display: flex;
    gap: 1px;
}

.navigazione_menu a.active {
    color: var(--oro);
}

.magellan a {
    color: white;
}

.navigazione_menu a {
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
    color: white;
}


@media(min-width:990px) {

    .navigazione.navigazione--scroll {
        height: 55px;
        background-color: rgba(51, 51, 51, 0.76);
        backdrop-filter: blur(12px);
    }

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

    .navigazione_menu {
        display: flex;
        gap: clamp(20px, 10%, 40px);
        justify-content: flex-end;
    }

    .navigazione {
        position: fixed;
        z-index: 100;
        top: 10px;
        left: 10px;
        width: calc(100% - 20px);
        border-radius: 15px;
        padding-left: 25px;
        padding-right: 25px;
        box-sizing: border-box;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .navigazione_menu a {
        font-size: clamp(14px, 1.1em, 17px);
    }

    .navigazione_menu {}

}


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

.navigazione--scroll .navigazione__logo {}



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

.burger__container {}

.burger__icon__line {
    width: 40px;
    height: 2px;
    background-color: white;
    margin-bottom: 7px;
    transform-origin: center;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.burger__icon__line:last-child {
    margin-bottom: 0;
    width: 70%;
}

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

.burger.active .burger__icon__line:nth-child(3) {
    display: none;
}

.burger.active .burger__icon__line {
    margin-bottom: 0;
    width: 32px;
    height: 2px;
}

.burger.active .burger__icon__line:nth-child(2) {
    margin-top: -2px;
    transform: rotate(90deg);
}

.burger.active {
    transform: rotate(45deg);
    height: 45px;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}


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

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

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

    .navigazione .btn {
        display: none;
    }
}

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

/*
========================================
HERO
========================================
*/

* {
    box-sizing: border-box;
}

main {
    padding-top: 100px;
}

.hero {
    width: calc(100% - 20px);
    margin: 0 auto;
    position: relative;
}

.hero__img {
    aspect-ratio: 16/7;
    overflow: hidden;
    border-radius: 15px;
    position: relative;
}

.hero__img:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 100%);
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.hero__img img {
    width: 100%;
    height: 130%;
    object-fit: cover;
    animation: hero__img 1.2s ease;
}

/* @keyframes hero__img {
    from {
        transform: scale(1.2);
    }
      to {
        transform: scale(1);
    }
} */

.hero__text {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: white;
    text-transform: uppercase;
    z-index: 5;
    width: 100%;
}


@media(max-width:990px) {
    main {
        padding-top: 70px;
    }

    .hero__img {
        aspect-ratio: 16 /10;
    }
}


@media(max-width:600px) {
    .hero__img {
        aspect-ratio: 16 /13;
    }

    .hero__text {
        display: block;
    }

    .hero__text span {
        display: block;
    }
}


/*
========================================
ABOUT
========================================
*/

.about {
    padding: clamp(20px, 3em, 50px);
    background-color: var(--grigio);
    border-radius: 30px;
}

.btn_cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
}

.persona {
    background-color: var(--grigio2);
    border-radius: 15px;
    padding: clamp(25px, 1.8rem, 50px);
}

.persona__head {
    display: flex;
    gap: clamp(15px, 5%, 30px);
    align-items: center;
    margin-bottom: 30px;
}

.persona__head__img {
    aspect-ratio: 1/1;
    border-radius: 100%;
    overflow: hidden;
    border: 1px solid black;
}

.persona__head__img,
.persona__head__text {
    width: 50%;
}

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

@media (min-width:600px) {
    .persona__description {
        width: 90%;
    }
}

/* services */

.services__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px;
}

@media(min-width:768px) {
    .about__head__sx h2 {
        max-width: 80%;
    }
}

.btn_cta .btn:first-child {
    background: var(--sfumatura);
    border: none;
}

.about__cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 15px;
    margin-top: clamp(25px, 3em, 50px);
}

.about__cards__item {
    border-radius: 15px;
    padding: clamp(20px, 1.5em, 30px);
    background: var(--blu2);
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.about__cards__item:first-child {
    background: var(--sfumatura);
}

.about__cards__item img {
    width: clamp(45px, 3.5vw, 70px);
    height: auto;
    margin-bottom: clamp(20px, 2em, 40px);
}


@media(min-width:768px) {
    .hero__cta a:hover {
        background-color: black;
        color: black;
    }
}

@media(max-width:990px) {

    .navigazione_menu a {
        -webkit-transition: all 0.35s ease;
        transition: all 0.35s ease;
        opacity: 0;
        transform: translateY(-10%);
    }


    .navigazione {
        height: 60px;
    }

    .navigazione_menu {
        position: fixed;
        top: 0;
        left: 0;
        background-color: var(--antracite);
        height: 100%;
        width: 100%;
        display: block;
        padding: 0;
        padding-left: 5%;
        padding-right: 5%;
        padding-top: calc(80px + 5vh);
        z-index: -1;
        overflow-y: scroll;
        transition: all .65s cubic-bezier(.43, .195, .02, 1);
        -webkit-transition: all .65s cubic-bezier(.43, .195, .02, 1);
        transform: translateY(-100%);
    }

    .navigazione_menu.active {
        transform: translateY(0);
    }

    .navigazione_menu.active a {
        transition-delay: 0.2s;
        opacity: 1;
        transform: translateY(0);
    }

    .navigazione_menu a {
        font-size: 18px;
        display: block;
        border-radius: 10px;
        padding: 12px 18px;
        background-color: rgba(255, 255, 255, 0.1);
        margin-bottom: 10px;
    }

    .navigazione_menu a.active {
        gap: 0.3em;

    }


    .navigazione_menu a:last-child {
        border-bottom: none;
    }

    .navigazione {
        padding: 20px 15px;
    }

    .navigazione__logo img {
        height: 70px;
    }
}

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

    .navigazione__logo img {
        height: 35px;
    }

}

@media(max-width:768px) {

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

@media(max-width:600px) {

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

    .navigazione {
        padding: 15px 5%;
        background-color: var(--antracite);
    }

    .navigazione.navigazione--scroll {
        padding-top: 10px;
        padding-bottom: 10px;
    }

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


.introduzione_titolo_seo {}


.swiper-container {
    width: 100%;
    overflow: hidden;
    padding-right: 5%; 
}


@media(min-width:990px) {

    .highlights_slider .swiper-slide .highlights_item,
    .news_slider .swiper-slide .news_item {
        opacity: 0.5;
        transform: scale(0.95);
        -webkit-transition: all 0.55s ease;
        transition: all 0.55s ease;
    }

    .highlights_slider .swiper-slide.swiper-slide-visible .highlights_item,
    .news_slider .swiper-slide.swiper-slide-visible .news_item {
        opacity: 1;
        transform: scale(1);
    }
}

.wpcf7-list-item.first {
    margin-right: 25px;
}

.swiper_controls {
    margin-top: 3em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(10px, 2em, 20px);
}

.swiper-pagination {
    position: relative;
    top: auto;
    margin: 0;
    transform: none;
    width: auto;
    min-width: 40px;
    padding: 0;
    transform: translate(0);
    bottom: auto;
    font-size: clamp(14px, 1em, 16px);
}

.swiper_controls__item {
    /* background-color: rgba(255, 255, 255, 0.3); */
    width: clamp(45px, 4vw, 80px);
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
    border: 1px solid black;
}

.swiper_controls__item img {
    filter: invert(1);
}

.swiper_controls__item:hover {
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.3);
}

.highlights_item,
.news_item {
    height: auto;
    overflow: hidden;
    border-radius: 15px;
    background-color: var(--grigio2);
}

.highlights_item {
    position: relative;
}

.highlights_item__label {
    position: absolute;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 100px;
    font-size: 12px;
    color: black;
    left: 12px;
    top: 12px;
    display: inline-block;
    padding: 4px 10px;
}

.highlights_item__img {
    aspect-ratio: 8/5;
    width: 100%;
    height: auto;
}

.news_item__img img {
    max-width: 150px;
    height: auto;
}

.highlights_item__img img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.logo_partner img {
    max-width: 130px;
    height: auto;
    max-height: 90px;
    mix-blend-mode: multiply;
}

.news_item--partner .news__text__description img {
    display: block;
    border-radius: 10px;
    aspect-ratio: 16/10;
    object-fit: cover;
    width: 100%;
    margin-bottom: 10px;
}

.news_item__text__title h3 {
    font-size: 14px;
    margin-bottom: 0;
} 

.logo_partner {
    height: 50px;
    margin-bottom: 10px;
}

.highlights_item__text,
.news_item__text {
    padding: clamp(20px, 1.9rem, 35px);
}

.news_item__text {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news_item__text__cta {
    margin-top: auto;
   display: flex;
   justify-content: space-between;
   align-items: flex-start;
}

.news_item__text__cta .btn {
    display: inline-block;
}

.news_item__text__tag {
    display: flex;
    gap: 7px;
    margin-bottom: 15px;
}

.news_item--partner p {
font-size: 15px;
line-height: 110%;
color: rgb(83, 83, 83);
}

.news_item__text__tag .btn_small {
    padding: 0.5em 1em;
    border-radius: 100px;
    background-color: var(--blu2);
    color: black;
    font-size: clamp(12px, 0.9em, 14px);
}

.riga_flex {
    display: flex;
    justify-content: space-between;
    gap: 10%;
}

.paragrafo {
    max-width: 450px;
}

.paragrafo--center {
    margin: 0 auto;
}

.separatore {
    padding-bottom: 5vh;
}

article li {
    list-style: disc;
    font-size: 1em;
    margin-left: 7px;
    margin-bottom: 7px;
}


.swiper_controls__item img {
    width: 21px;
    height: auto;
}

@media(max-width:600px) {

    .news_item__text__title h3 {
    font-size: 15px;
} 

    .swiper-container {
        padding: 0 15px;
        padding-right: 30px;
    }

    .swiper_controls__item img {
        width: 18px;
        height: auto;
    }

    .swiper_controls {
        margin-top: 20px;
    }

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

    .riga_flex {
        display: block;
    }

    .pt {
        padding-top: 30px;
    }

    .pb {
        padding-bottom: 30px;
    }

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

    .separatore {
        padding-bottom: 25px;
    }
}


.label_sezione {}


/* tab muove key concepts */

.tab_form {
    background: var(--sfumatura);
    padding: clamp(4px, 2em, 10px);
    border-radius: 100px;
    margin-bottom: 20px;
    color: black;
}

.tab_form__wrapper {
    position: relative;
    display: flex;
}

.tab_form__item {
    padding: 1em 2em;
    border-radius: 100px;
    flex-grow: 1;
    text-align: center;
    font-family: font_bold;
    position: relative;
    z-index: 10;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
    color: black !important;
}

.tab_form__item span {
    color: black;
}

.tab_form__item.active span {
    color: var(--blu2);
}

.tab_form__item:hover {
    cursor: pointer;
}

.tab_form__move {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    height: 100%;
    background-color: black;
    border-radius: 100px;
    transition: transform 0.3s ease, width 0.3s ease;
}

/* pillar */

.tab_pillar {
    display: none;
}

.tab_pillar.active {
    display: block;
    animation: tab_pillar 1s ease;
}


.tab_pillar__name {
    border-radius: 15px;
    padding: clamp(20px, 1.5em, 30px);
    background-color: var(--blu2);
}

.tab_pillar__components__item {
    border-radius: 15px;
    padding: clamp(20px, 1.5em, 30px);
    background-color: var(--grigio);
}

.tab_pillar__components__item__ico {
    margin-bottom: 15px;
}

.tab_pillar__components__item__ico img {
    width: clamp(25px, 3vw, 35px);
}

.tab_pillar__components h4 {
    margin-bottom: 30px;
}

.tab_pillar__components {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 15px;
}

@keyframes tab_pillar {
    0% {
        opacity: 0;
        transform: translateY(5%);
    }

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

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


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

@media(max-width:600px) {



    .tab_form {
        border-radius: 15px;
        margin-bottom: 10px;
    }

    .tab_form__item {
        padding: 2em 2em;
    }

    .tab_form__item.active {
        background-color: black;
    }

    .tab_form__wrapper {
        flex-wrap: wrap;
    }

    .tab_pillar__components {
        display: flex;
        width: 100vw;
        flex-wrap: nowrap;
        overflow-x: scroll;
        transform: translateX(-5vw);
        padding-left: 5%;
        padding-right: 5%;
    }

    .tab_pillar__components__item {
        border-radius: 15px;
        min-width: 70vw;
        width: 70vw;
    }
}

/* ============== STEPS ============== */

.step {
    padding: clamp(15px, 1.5rem, 30px);
    background-color: var(--grigio2);
    border-radius: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: clamp(15px, 1.5rem, 30px);
    position: relative;
}

.step h3.titolo4 {
    padding: 6px 14px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 100px;
    display: inline-block;
}

.step__connector {
    margin-left: 50%;
    height: clamp(25px, 4rem, 50px);
    border-left: 1px solid black;
}

.step__connector:first-child {
    display: none;
}

.step_counter {
    aspect-ratio: 1/1;
    height: 35px;
    background-color: var(--antracite);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.step__img {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 11px;
}

.step__img img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}


@media(min-width:990px) {
    .sticky {
        position: sticky;
        top: calc(80px + 2vh);
    }
}

@media(max-width:768px) {
    .step_counter {
        height: 30px;
        font-size: 13px;
    }
}

@media(max-width:600px) {
    .step {
        grid-template-columns: 1fr;
    }
}

/*  ========= ACCORDION  ========= */

/* accordion */

.accordion__head.active img {
    transform: rotate(45deg);
}

.accordion__head:hover {
    cursor: pointer;
}

.accordion {
    border-radius: 15px;
    background-color: var(--grigio2);
    -webkit-transition: all 0.15s ease;
    transition: all 0.15s ease;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 1200px;
}

.accordion--full {
    max-width: 100%;
}

.accordion__head h3 {
    margin-bottom: 0;
}

@media(min-width:768px) {
    .accordion__head {
        padding: 20px;
    }
}

.accordion__head__symbol img {
    width: clamp(20px, 2rem, 28px);
    height: auto;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
    filter: invert(1);
}

.accordion__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: clamp(20px, 5vw, 40px);
}

.accordion__head__info {
    width: calc(100% - 75px);
}

.accordion__content {
    display: none;
    padding: clamp(15px, 5vw, 40px);
    padding-top: 10px;
}

.accordion__content__wrapper {
    max-width: 1000px;
}

.accordion__content img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin-top: 15px;
    margin-bottom: 15px;
}

@media(min-width:768px) {
    .accordion__content img {
        max-width: 550px;
    }
}


.accordion__content__wrapper.accordion__content__wrapper--full {
    max-width: 100%;
}

.accordion.active .accordion__content {
    animation: accordion__content 1.5s ease;
}

@keyframes accordion__content {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.accordion__content__cta {
    margin-top: 3vh;
    display: flex;
    justify-content: flex-end;
}

.accordion__content__cta a:hover {
    cursor: pointer;
}

@media(max-width:600px) {
    .accordion {
        border-radius: 15px;
    }

    .accordion__head {
        padding: clamp(15px, 5vw, 30px) clamp(20px, 5vw, 40px);
    }

    .accordion.active {
        border-radius: 15px;
    }
}

/* clienti home */

.client_sliders {}

.clients_slider {
    width: 100%;
    overflow: hidden;
    display: flex;
}

.clients_item {
    width: 20vw;
    aspect-ratio: 2/1;
    position: relative;
    background-color: var(--blu2);
    margin-left: 8px;
    margin-right: 8px;
    border-radius: 15px;
}

.clients_slider--1 {
    margin-bottom: 16px;
}

.clients_slider__wrapper {
    display: flex;
}

.clients_item__logo img {
    max-height: 40%;
    max-width: 55%;
    display: block;
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
}

body.inverted .clients_item .clients_item__logo img {
    filter: invert(1);
    mix-blend-mode: normal;
}

@media(max-width:1500px) {
    .clients_item {
        width: 25vw;
    }
}

@media(max-width:1250px) {
    .clients_item {
        width: 32vw;
    }
}

@media(max-width:990px) {
    .clients_item {
        width: 28vw;
        aspect-ratio: 2/1;
        position: relative;
        margin-left: 6px;
        margin-right: 6px;
        border-radius: 14px;
    }

    .clients_slider--1 {
        margin-bottom: 12px;
    }

}

@media(max-width:768px) {

    .clients {
        margin-bottom: 90px;
    }

    .clients_item {
        width: 50vw;
        margin-left: 5px;
        margin-right: 5px;
        border-radius: 12px;
    }

    .clients_slider--1 {
        margin-bottom: 10px;
    }

    .clients {
        padding-top: 15vh !important;
    }


}

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

#oggetto_form {
    margin-bottom: 15px;
}

.form input[type="text"],
.form input[type="email"],
.form input[type="tel"] {
    background-color: transparent;
    -webkit-appearance: none;
    border: none;
    padding: 1em 0;
    border: 1px solid white;
    border-radius: 100px;
    width: 100%;
    color: black;
    font-size: 1em;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
    margin-top: 5px;
    padding-left: 1.5em;
}


.form .compilato {
    color: rgb(0, 213, 255);
}

.form .compilato input {
    border-color: rgb(0, 213, 255);
}

.form textarea {
    -webkit-appearance: none;
    border: none;
    padding: 1em;
    border: 1px solid white;
    width: 100%;
    height: 120px;
}

.form input[type="checkbox"] {
    height: 20px;
    width: 20px;
    display: block;
    min-width: 20px;
    border-radius: 100px;
    border: 2px solid white;
    -webkit-appearance: none;
    margin: 0;
}

.form input[type="checkbox"]:checked {
    background-color: black;
    border: 2px solid white;
}

.form input[type="submit"] {
    display: inline-block;
    -webkit-appearance: none;
    background: var(--sfumatura);
    border-radius: 100px;
    border: none;
    border-radius: 100px;
    padding: 0.5em 1.8em;
    font-size: clamp(18px, 1.3em, 21px);
    font-family: font_semi_bold;
    color: black;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.form input[type="submit"]:hover {
    transform: scale(1.05);
    cursor: pointer;
}

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

.privacy_form label {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
}


.container-form {
    width: 100%;
    /* max-width: 700px; */
    margin: 0 auto;
    padding: clamp(20px, 3em, 50px);
    background-color: var(--grigio);
    border-radius: 30px;
}

.form .form--grid p {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px;
}

.form strong {
    font-family: font_regular;
    display: block;
}

.form p br {
    display: none;
}

.form span {}

.form label {
    font-family: font_regular;
}

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


.form label {
    position: relative;
}

.compilato:after {
    display: block;
    content: "✓";
    color: rgb(0, 213, 255);
    position: absolute;
    right: 0;
    top: 0;
    z-index: 5;
}


@media(max-width:600px) {

    .container-form {
        border-radius: 15px;
    }

    .form {
        margin-top: 0;
    }

    .form .form--grid p {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 15px;
    }


    .compilato:after {
        display: block;
        content: "✓";
        color: greenyellow;
        position: absolute;
        right: 0.8em;
        top: 0.5em;
        z-index: 5;
    }



    .form input[type="text"],
    .form input[type="email"],
    .form input[type="tel"] {
        padding: 0.7em 0;
    }

    .form input[type="submit"] {
        width: 100%;
        padding: 0.9em 1.8em;
        font-size: 1.2em;
    }

    .container-form {
        padding-top: 30px;
    }
}

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


@media(max-width:600px) {
    section {
        margin-bottom: 50px;
    }
}

.footer_spacer_bottom {
    height: 10px;
}


footer {
    margin: 0 auto;
    margin-top: 5vh;
    padding: clamp(15px, 2rem, 50px);
    background: var(--antracite);
    border-radius: 30px;
    color: white;
    border-radius: 15px;
    width: calc(100% - 20px);
}

footer p {
    color: white;
}

.footer_between {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
    margin-top: clamp(30px, 3em, 60px);
    font-size: clamp(14px, 1em, 16px);
}


.footer__info li {
    list-style: none;
    margin-left: 0;
    margin-bottom: 5px;
}

.footer__info ul {
    margin-left: 0;
}

.footer__info strong {
    font-family: font_bold;
}

.footer__info__sx {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px 5%;
}

.footer_between_sx img {
    width: clamp(150px, 15%, 250px);
    height: auto;
    margin-bottom: 15px;
}

footer .btn_cta .btn {
    background-color: black !important;
    color: var(--blu2);
}


footer .btn_cta .btn:first-child {
    background: white;
    border: none;
    color: var(--blu2);
}

footer strong {
    font-size: clamp(16px, 1.25em, 19px);
}


@media(max-width:600px) {

    footer {
        border-radius: 15px;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .footer__info__sx {
        grid-template-columns: 1fr;
        grid-gap: 30px 5%;
    }

    .footer__info {
        display: block;
    }

    .footer__info__dx .btn_cta {
        margin-top: 30px;
    }

    .footer_between {
        display: block;
    }
}

/* complianz banner cookie */

#gestione_cookies:hover {
    cursor: pointer;
}

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