:root {
    --dark: #1d1d1b;
    --deep: #0D0D0D;
    --grigio: #ddd;
    --white: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    scrollbar-color: var(--grigio);
}

.wrapper {
    width: 100%;
    max-width: 66vmax;
    margin: 0 auto;
    /* border: 1px dotted red; */
}

.major_wrapper {
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
}

/* ANCHOR Padding */
.pad15 {
    padding-top: 15px;
    padding-bottom: 15px;
}

.pad20 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.pad30 {
    padding-top: 30px;
    padding-bottom: 30px;
}

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

.pad50 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.pad60 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.pad70 {
    padding-top: 70px;
    padding-bottom: 70px;
}

.nopadtop {
    padding-top: 0;
}

.nopadbottom {
    padding-bottom: 0;
}

.padright20 {
    padding-right: 20px;
}

/* ANCHOR Margin */
.mart30 {
    margin-top: 30px;
}

/* SECTION Elementi Grid layout */

.grid {
    display: grid;
}

.auto_grid {
    grid-auto-flow: column;
}

.align_center {
    align-items: center;
}

/* ANCHOR Grid template columns */
.grid_2_cols {
    grid-template-columns: repeat(2, 1fr);
}

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

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

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

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

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

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

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

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

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

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

/* ANCHOR Padding */
.pad15 {
    padding-top: 15px;
    padding-bottom: 15px;
}

.pad20 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.pad30 {
    padding-top: 30px;
    padding-bottom: 30px;
}

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

.pad50 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.pad60 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.pad70 {
    padding-top: 7vh;
    padding-bottom: 7vh;
}

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

.nopadtop {
    padding-top: 0;
}

.nopadbottom {
    padding-bottom: 0;
}

.padright20 {
    padding-right: 20px;
}

/* ANCHOR Margin */
.mart30 {
    margin-top: 30px;
}

/* ANCHOR Valori GAP  */
.gap10 {
    gap: 10px;
}

.gap20 {
    gap: 20px;
}

.gap30 {
    gap: 30px;
}

.gap40 {
    gap: 40px;
}

.gap50 {
    gap: 50px;
}

a {
    text-decoration: none;
}

button {
    background: none;
    border: none;
}

ul {
    list-style: none;
}

html {
    overflow-x: hidden;
}

html :where(img) {
    height: auto;
    max-width: 100%;
}

body {
    /* overflow-x: hidden; */
    /* background-color: var(--dark); */
    /* Created with https://www.css-gradient.com */
    background: var(--deep);
    /* background: linear-gradient(to bottom left, #1D1D1B, #0D0D0D); */
    /* min-height: 200vh; */
}

ion-icon {
    pointer-events: none;
}

p strong {
    font-weight: 500;
}

h1 {
    font-family: 'Poppins', sans-serif;
}

h1 {
    font-size: 13vmin;
    font-weight: 400;
    margin-bottom: 15px;
}

h2 {
    font-size: 5vmin;
    font-weight: 200;
}

aside {
    width: 15%;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    background-color: var(--deep);
    /* border-right: 8px solid var(--white); */
    padding: 35px;
    /* background-image: url(../images/sfondo_menu_lines_anim.svg);
    background-size: auto;
    background-position: left bottom;
    background-repeat: no-repeat; */
}

#aside_svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30vmin;
	display: none;
}

aside .vertical_line {
    width: 8px;
    position: absolute;
    right: -2px;
    top: 0;
    height: 100%;
    background-color: var(--white);
    visibility: hidden;
}

.menu_wrapper .menu li {
    margin-bottom: 15px;
    text-align: right;
    visibility: hidden;
}

.menu_wrapper .menu li a {
    overflow: hidden;
    position: relative;
    display: inline-block;
}

.menu_wrapper .menu li a span {
    font-size: 2rem;
    font-weight: 200;
    transition: .3s;
    opacity: .7;
    display: inline-block;
}

.menu_wrapper .menu li a::after {
    content: attr(data-replace);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    font-size: 2rem;
    font-weight: 500;
    white-space: nowrap;
    transition: .3s;
    transform: translateY(100%);
}

.menu_wrapper .menu li.current-menu-item a span,
.menu_wrapper .menu li a:hover span {
    transform: translateX(100%);
    opacity: 0;
}

.menu_wrapper .menu li.current-menu-item a::after,
.menu_wrapper .menu li a:hover::after {
    transform: translateY(0);
}

main {
    width: 100%;
    padding-left: 15%;
}

.restore_margin {
    margin-left: 0;
    margin-right: 0;
    pointer-events: none;
}

.logoBox {
    padding-top: 15px;
    /* transform: translateX(-2px); */
    width: 40vmin;
    visibility: hidden;
    transition: .6s;
}

.logoBox.move_logo_small {
    transform: translateX(calc(15% + 66vmax)) !important;
    width: 25vmin;
}

.logoBox a {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.logoBox.logoBox.move_logo_small a img {
    -webkit-filter: drop-shadow(0 2px 3px rgba(0, 0, 0, .5));
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, .5));
}

.logoBox a img {
    width: 100%;
    /* -webkit-filter: drop-shadow(6px 6px 5px rgba(221, 221, 221, 0.5));
    filter: drop-shadow(6px 6px 5px rgba(221, 221, 221, 0.5)); */
}

#loader {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--dark);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s;
}

#loader.hide_loader {
    /* background-color: var(--white); */
    opacity: 0;
    pointer-events: none;
}

/* ANCHOR Menu SVG */
.path_line {
    fill: none;
    stroke: #FFFFFF;
    stroke-width: 3;
    stroke-miterlimit: 10;
}

.aside_line_0 {
    stroke-dasharray: 224 226;
    stroke-dashoffset: 225;
}

.start_lines .aside_line_0 {
    -webkit-animation: aside_line_draw 1666ms ease-in-out 0ms forwards;
    animation: aside_line_draw 1666ms ease-in-out 0ms forwards;
}

.aside_line_1 {
    stroke-dasharray: 193 195;
    stroke-dashoffset: 194;
}

.start_lines .aside_line_1 {
    -webkit-animation: aside_line_draw 1666ms ease-in-out 34ms forwards;
    animation: aside_line_draw 1666ms ease-in-out 34ms forwards;
}

.aside_line_2 {
    stroke-dasharray: 210 212;
    stroke-dashoffset: 211;
}

.start_lines .aside_line_2 {
    -webkit-animation: aside_line_draw 1666ms ease-in-out 69ms forwards;
    animation: aside_line_draw 1666ms ease-in-out 69ms forwards;
}

.aside_line_3 {
    stroke-dasharray: 185 187;
    stroke-dashoffset: 186;
}

.start_lines .aside_line_3 {
    -webkit-animation: aside_line_draw 1666ms ease-in-out 104ms forwards;
    animation: aside_line_draw 1666ms ease-in-out 104ms forwards;
}

.aside_line_4 {
    stroke-dasharray: 222 224;
    stroke-dashoffset: 223;
}

.start_lines .aside_line_4 {
    -webkit-animation: aside_line_draw 1666ms ease-in-out 138ms forwards;
    animation: aside_line_draw 1666ms ease-in-out 138ms forwards;
}

.aside_line_5 {
    stroke-dasharray: 200 202;
    stroke-dashoffset: 201;
}

.start_lines .aside_line_5 {
    -webkit-animation: aside_line_draw 1666ms ease-in-out 173ms forwards;
    animation: aside_line_draw 1666ms ease-in-out 173ms forwards;
}

.aside_line_6 {
    stroke-dasharray: 189 191;
    stroke-dashoffset: 190;
}

.start_lines .aside_line_6 {
    -webkit-animation: aside_line_draw 1666ms ease-in-out 208ms forwards;
    animation: aside_line_draw 1666ms ease-in-out 208ms forwards;
}

.aside_line_7 {
    stroke-dasharray: 220 222;
    stroke-dashoffset: 221;
}

.start_lines .aside_line_7 {
    -webkit-animation: aside_line_draw 1666ms ease-in-out 243ms forwards;
    animation: aside_line_draw 1666ms ease-in-out 243ms forwards;
}

.aside_line_8 {
    stroke-dasharray: 211 213;
    stroke-dashoffset: 212;
}

.start_lines .aside_line_8 {
    -webkit-animation: aside_line_draw 1666ms ease-in-out 277ms forwards;
    animation: aside_line_draw 1666ms ease-in-out 277ms forwards;
}

.aside_line_9 {
    stroke-dasharray: 197 199;
    stroke-dashoffset: 198;
}

.start_lines .aside_line_9 {
    -webkit-animation: aside_line_draw 1666ms ease-in-out 312ms forwards;
    animation: aside_line_draw 1666ms ease-in-out 312ms forwards;
}

.aside_line_10 {
    stroke-dasharray: 214 216;
    stroke-dashoffset: 215;
}

.start_lines .aside_line_10 {
    -webkit-animation: aside_line_draw 1666ms ease-in-out 347ms forwards;
    animation: aside_line_draw 1666ms ease-in-out 347ms forwards;
}

.aside_line_11 {
    stroke-dasharray: 182 184;
    stroke-dashoffset: 183;
}

.start_lines .aside_line_11 {
    -webkit-animation: aside_line_draw 1666ms ease-in-out 381ms forwards;
    animation: aside_line_draw 1666ms ease-in-out 381ms forwards;
}

.aside_line_12 {
    stroke-dasharray: 233 235;
    stroke-dashoffset: 234;
}

.start_lines .aside_line_12 {
    -webkit-animation: aside_line_draw 1666ms ease-in-out 416ms forwards;
    animation: aside_line_draw 1666ms ease-in-out 416ms forwards;
}

.aside_line_13 {
    stroke-dasharray: 195 197;
    stroke-dashoffset: 196;
}

.start_lines .aside_line_13 {
    -webkit-animation: aside_line_draw 1666ms ease-in-out 451ms forwards;
    animation: aside_line_draw 1666ms ease-in-out 451ms forwards;
}

.aside_line_14 {
    stroke-dasharray: 221 223;
    stroke-dashoffset: 222;
}

.start_lines .aside_line_14 {
    -webkit-animation: aside_line_draw 1666ms ease-in-out 486ms forwards;
    animation: aside_line_draw 1666ms ease-in-out 486ms forwards;
}

.aside_line_15 {
    stroke-dasharray: 185 187;
    stroke-dashoffset: 186;
}

.start_lines .aside_line_15 {
    -webkit-animation: aside_line_draw 1666ms ease-in-out 520ms forwards;
    animation: aside_line_draw 1666ms ease-in-out 520ms forwards;
}

.aside_line_16 {
    stroke-dasharray: 208 210;
    stroke-dashoffset: 209;
}

.start_lines .aside_line_16 {
    -webkit-animation: aside_line_draw 1666ms ease-in-out 555ms forwards;
    animation: aside_line_draw 1666ms ease-in-out 555ms forwards;
}

.aside_line_17 {
    stroke-dasharray: 173 175;
    stroke-dashoffset: 174;
}

.start_lines .aside_line_17 {
    -webkit-animation: aside_line_draw 1666ms ease-in-out 590ms forwards;
    animation: aside_line_draw 1666ms ease-in-out 590ms forwards;
}

.aside_line_18 {
    stroke-dasharray: 215 217;
    stroke-dashoffset: 216;
}

.start_lines .aside_line_18 {
    -webkit-animation: aside_line_draw 1666ms ease-in-out 625ms forwards;
    animation: aside_line_draw 1666ms ease-in-out 625ms forwards;
}

.aside_line_19 {
    stroke-dasharray: 204 206;
    stroke-dashoffset: 205;
}

.start_lines .aside_line_19 {
    -webkit-animation: aside_line_draw 1666ms ease-in-out 659ms forwards;
    animation: aside_line_draw 1666ms ease-in-out 659ms forwards;
}

.aside_line_20 {
    stroke-dasharray: 178 180;
    stroke-dashoffset: 179;
}

.start_lines .aside_line_20 {
    -webkit-animation: aside_line_draw 1666ms ease-in-out 694ms forwards;
    animation: aside_line_draw 1666ms ease-in-out 694ms forwards;
}

.aside_line_21 {
    stroke-dasharray: 226 228;
    stroke-dashoffset: 227;
}

.start_lines .aside_line_21 {
    -webkit-animation: aside_line_draw 1666ms ease-in-out 729ms forwards;
    animation: aside_line_draw 1666ms ease-in-out 729ms forwards;
}

.aside_line_22 {
    stroke-dasharray: 160 162;
    stroke-dashoffset: 161;
}

.start_lines .aside_line_22 {
    -webkit-animation: aside_line_draw 1666ms ease-in-out 763ms forwards;
    animation: aside_line_draw 1666ms ease-in-out 763ms forwards;
}

.aside_line_23 {
    stroke-dasharray: 195 197;
    stroke-dashoffset: 196;
}

.start_lines .aside_line_23 {
    -webkit-animation: aside_line_draw 1666ms ease-in-out 798ms forwards;
    animation: aside_line_draw 1666ms ease-in-out 798ms forwards;
}

.aside_line_24 {
    stroke-dasharray: 210 212;
    stroke-dashoffset: 211;
}

.start_lines .aside_line_24 {
    -webkit-animation: aside_line_draw 1666ms ease-in-out 833ms forwards;
    animation: aside_line_draw 1666ms ease-in-out 833ms forwards;
}

@-webkit-keyframes aside_line_draw {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes aside_line_draw {
    100% {
        stroke-dashoffset: 0;
    }
}

@-webkit-keyframes aside_line_fade {
    0% {
        stroke-opacity: 1;
    }

    94.02985074626866% {
        stroke-opacity: 1;
    }

    100% {
        stroke-opacity: 0;
    }
}

@keyframes aside_line_fade {
    0% {
        stroke-opacity: 1;
    }

    94.02985074626866% {
        stroke-opacity: 1;
    }

    100% {
        stroke-opacity: 0;
    }
}

header {
    position: fixed;
    top: 0;
    left: 15%;
    right: 15%;
    z-index: 999;
}

.sezione {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ANCHOR Hero */

#hero, #intro_servizi {
    visibility: hidden;
    /* background-image: url(../images/sfondo_mondo_big.jpg); */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

#intro_servizi .grid,
#vantaggi .grid {
    align-items: center;
}

#intro_servizi h2,
#vantaggi h2 {
    visibility: hidden;
    font-size: 6vmin;
    line-height: 1.3;
}

#intro_servizi p,
#vantaggi p,
#vantaggi ul li {
    visibility: hidden;
    font-size: 2.4vmin;
    margin-top: 35px;
    line-height: 1.5;
    text-align: justify;
}

#vantaggi ul {
    padding-left: 25px;
}

#vantaggi ul li {
    list-style-type: circle;
}

#intro_servizi .imageBox,
#vantaggi .imageBox {
    visibility: hidden;
    width: 350px;
    height: 350px;
    margin: 0 auto;
}

.rounded {
    border-radius: 100%;
    overflow: hidden;
}

#intro_servizi .imageBox img,
#vantaggi .imageBox img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
	transition: .3s;
}


#intro_servizi .imageBox:hover img,
#vantaggi .imageBox:hover img {
	-webkit-filter: grayscale(0);
    filter: grayscale(0);
}


.cubo_settore {
    position: relative;
    opacity: 0;
    /* transform: translateY(20px); */
}

.upperLink {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.cubo_settore .blocco_sx {
    width: 100%;
    height: 200px;
}

.cubo_settore .blocco_sx .image_sett {
    width: 100%;
    height: 100%;
}

.cubo_settore .blocco_sx .image_sett img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    transition: .3s;
}

.cubo_settore:hover .image_sett img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}

.cubo_settore .blocco_dx {
    position: absolute;
    top: 50%;
    left: 60%;
    padding: 15px;
    background-color: var(--deep);
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 170px;
}

.cubo_settore .blocco_dx .icona {
    margin: 0 auto;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cubo_settore .blocco_dx .sezione_nome {
    margin-top: 10px;
}

.cubo_settore .blocco_dx .sezione_nome h4 {
    text-align: center;
    line-height: 1.2;
    font-weight: 200;
    font-size: 2vmin;
}

.cubo_settore .blocco_dx .icona ion-icon {
    font-size: 35px;
    --ionicon-stroke-width: 16px;
}

.chi_siamo #hero {
    background-size: cover;
}

#hero.chi_siamo_hero {
    background-image: url();
}

#hero .wrapper {
    height: 100%;
    position: relative;
}

#hero h1 {
    margin-bottom: 15px;
    visibility: hidden;
	font-size: 2vmin;
	letter-spacing: 10px;
}

#hero h2 {
    visibility: hidden;
	font-weight: 700;
	letter-spacing: 10px;
}

.blocchetto {
    width: 100%;
    max-width: 30%;
    margin-top: 35px;
    visibility: hidden;
}

.full_width {
    width: 100%;
    max-width: 100%;
}

.chi_siamo.blocchetto {
    visibility: visible;
}

.blocchetto.full_width {
    margin-top: 0;
}

.blocchetto.full_width p {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 22px;
    font-size: 5vmin;
    line-height: 1.25;
    text-align: left;
    font-weight: 200;
    visibility: hidden;
}

.blocchetto.full_width p span.num {
    font-size: 4.5vmin;
    font-weight: bold;
    color: var(--grigio);
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid var(--grigio);
    border-radius: 50%;
    flex-basis: 70px;
}

.blocchetto.full_width p span.list_text {
    flex-basis: calc(100% - 95px);
}

.blocchetto.full_width p:nth-child(2) {
    position: relative;
    left: 25%;
}

.blocchetto.full_width p:nth-child(3) {
    position: relative;
    left: 50%;
}

.hero_grid {
    margin-top: 35px;
    align-items: center;
}

h3 {
    font-size: 3vmin;
    margin-bottom: 14px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 10px;
    line-height: 1.4;
}

.blocchetto p {
    text-align: justify;
    line-height: 1.3;
    font-size: 1.4rem;
    opacity: .85;
}

p strong {
    font-weight: 600;
}

.find_more {
    display: inline-block;
    position: relative;
    margin-top: 50px;
    font-size: 1.7rem;
    padding: 0 0 10px 0;
}

.find_more:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--white);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.find_more:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.freccia_giu_line_0 {
    stroke-dasharray: 350 352;
    stroke-dashoffset: 351;
}

.start_arrow .freccia_giu_line_0 {
    -webkit-animation: freccia_giu_line_draw 1500ms ease-in-out 0ms forwards;
    animation: freccia_giu_line_draw 1500ms ease-in-out 0ms forwards;
}

.freccia_giu_line_1 {
    stroke-dasharray: 457 459;
    stroke-dashoffset: 458;
}

.start_arrow .freccia_giu_line_1 {
    -webkit-animation: freccia_giu_line_draw 1500ms ease-in-out 0ms forwards;
    animation: freccia_giu_line_draw 1500ms ease-in-out 0ms forwards;
}

@-webkit-keyframes freccia_giu_line_draw {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes freccia_giu_line_draw {
    100% {
        stroke-dashoffset: 0;
    }
}

@-webkit-keyframes freccia_giu_line_fade {
    0% {
        stroke-opacity: 1;
    }

    92.98245614035088% {
        stroke-opacity: 1;
    }

    100% {
        stroke-opacity: 0;
    }
}

@keyframes freccia_giu_line_fade {
    0% {
        stroke-opacity: 1;
    }

    92.98245614035088% {
        stroke-opacity: 1;
    }

    100% {
        stroke-opacity: 0;
    }
}

.freccia_vert {
    fill: none;
    stroke: #FFFFFF;
    stroke-width: 8;
    stroke-miterlimit: 10;
}

.freccia_punta {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: none;
    stroke: #FFFFFF;
    stroke-width: 8;
    stroke-miterlimit: 10;
}

.arrow_link {
    /* position: absolute; */
    /* bottom: -1vw; */
    left: 0;
    width: 4vw;
    height: 4vw;
    transition: .3s;
    display: block;
    margin-top: 35px;
}

.arrow_link svg {
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.arrow_link:hover {
    transform: translateY(10px)
}

#servizi .blocchetto {
    max-width: 100%;
}

.servizi_home_grid {
    align-items: center;
}

.imgBox.has_decor {
    height: 70vh;
    position: relative;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    visibility: hidden;
	transition: .3s;
}

.imgBox.has_decor:hover {
	-webkit-filter: grayscale(0);
    filter: grayscale(0);
}


.imgBox.has_decor::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border: 2px solid var(--grigio);
    transform: rotate(-5deg);
    z-index: -1;
}

.imgBox.has_decor img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.flow_list {
    margin: 30px 0;
}

.flow_list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 2.5vmin;
    font-weight: 200;
}

.flow_list li .number {
    opacity: .7;
    font-size: 6vmin;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
}

.titolo_partner {
    margin-bottom: 20px;
    text-align: center;
}

.titolo_partner h3 {
    visibility: hidden;
}

.titolo_partner p {
    visibility: hidden;
    line-height: 2;
}

.arrow_link.is_relative {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: unset;
    left: unset;
    bottom: unset;
    right: unset;
    margin-top: 50px;
}

.titolo_partner p strong {
    font-size: 25px;
}

.bacheca_loghi {
    grid-auto-rows: 1fr;
}

.singolo_logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    width: 100%;
    padding: 30px;
    opacity: 0;
    /* visibility: hidden; */
}

.singolo_logo img {
    width: 100%;
	-webkit-filter: grayscale(1);
    filter: grayscale(1);
}


.settori_grid {
    align-items: center;
}

.settori_intro h3,
.settori_intro div,
.settori_intro a {
    visibility: hidden;
}

.blocco_dx_settori {
    position: relative;
    padding: 25px 0;
    background-color: var(--deep);
}

.blocco_dx_settori::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 200%;
    left: 40%;
    top: 50%;
    transform: translate(-50%, -50%) skewX(-25deg);
    background-color: var(--grigio);
    z-index: -1;
}

.blocco_dx_settori::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 300%;
    left: 60%;
    top: 50%;
    transform: translate(-50%, -50%) skewX(-25deg);
    background-color: var(--grigio);
    z-index: -1;
}

.settori_list {
    /* height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; */
    max-height: 400px;
    overflow: hidden;
    position: relative;
    background-color: var(--deep);
}

.settori_list::before,
.settori_list::after {
    content: '';
    /* display: none; */
    position: absolute;
    pointer-events: none;
    left: 0;
    top: 0;
    right: 0;
    height: 15%;
    background-image: linear-gradient(0deg, rgba(13, 13, 13, 0) 0, #0D0D0D 100%);
    z-index: 1;
}

.settori_list::before {
    top: unset;
    bottom: 0;
    background-image: linear-gradient(180deg, rgba(13, 13, 13, 0) 0, #0D0D0D 100%);
}

.settori_tracker {
    transition: .4s;
}

.settori_list .singolo_settore {
    /* margin-bottom: 45px; */
    padding: 25px 0;
    /* border: 1px solid red; */
    /* height: 224px; */
}


.settori_list .singolo_settore .fat_text p {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-direction: column;
}

/* .settori_list .singolo_settore:last-of-type {
    margin-bottom: 0;
} */

.singolo_settore ion-icon {
    font-size: 3rem;
    color: var(--white);
    display: inline-block;
    --ionicon-stroke-width: 16px;
    /* margin-bottom: 15px; */
}

.lead {
    margin-top: 25px;
}

.lead p {
    font-size: 4vmin;
    /* text-align: justify; */
    line-height: 1.4;
    font-weight: 200;
}

.lead p strong {
    font-weight: bold;
}

.fat_text {
    text-align: center;
}

.fat_text p {
    font-size: 3vw;
    font-weight: 800;
    text-transform: uppercase;
}

/* SECTION Privacy Policy  */

#privacy p {
    line-height: 1.5;
    text-align: justify;
}

#privacy h3 {
    margin: 20px;
}

#privacy h4 {
    margin: 10px 0;
}

#privacy ul {
    padding: 15px;
    /* line-height: 1.4; */
    list-style: disclosure-closed;
}

#privacy ul li {
    line-height: 1.3;
}

/* SECTION Barra Cookies*/
.cli-bar-container.cli-style-v2 {
    max-width: 1080px;
    font-size: 16px;
}

/* !SECTION  */

/* !SECTION  */

.chi_siamo .arrow_link {
    position: absolute;
    bottom: 8vmin;
    margin-top: 0;
}

.cubotti_wrapper {
    width: 350px;
    height: 350px;
    margin: 0 auto;
}

.cubotti_wrapper svg {
    width: 100%;
    height: 100%;
    visibility: hidden;
    transform-origin: center center;
}

.cubotto_svg {
    fill: none;
    stroke: #FFFFFF;
    stroke-miterlimit: 10;
}

.cubotto_svg_0 {
    stroke-dasharray: 803 805;
    stroke-dashoffset: 804;
}

.start_cubotti .cubotto_svg_0 {
    -webkit-animation: cubotto_svg_draw 1333ms ease-in 0ms forwards;
    animation: cubotto_svg_draw 1333ms ease-in 0ms forwards;
}

.cubotto_svg_1 {
    stroke-dasharray: 803 805;
    stroke-dashoffset: 804;
}

.start_cubotti .cubotto_svg_1 {
    -webkit-animation: cubotto_svg_draw 1333ms ease-in 333ms forwards;
    animation: cubotto_svg_draw 1333ms ease-in 333ms forwards;
}

.cubotto_svg_2 {
    stroke-dasharray: 596 598;
    stroke-dashoffset: 597;
}

.start_cubotti .cubotto_svg_2 {
    -webkit-animation: cubotto_svg_draw 1333ms ease-in 666ms forwards;
    animation: cubotto_svg_draw 1333ms ease-in 666ms forwards;
}

@-webkit-keyframes cubotto_svg_draw {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes cubotto_svg_draw {
    100% {
        stroke-dashoffset: 0;
    }
}

@-webkit-keyframes cubotto_svg_fade {
    0% {
        stroke-opacity: 1;
    }

    93.54838709677419% {
        stroke-opacity: 1;
    }

    100% {
        stroke-opacity: 0;
    }
}

@keyframes cubotto_svg_fade {
    0% {
        stroke-opacity: 1;
    }

    93.54838709677419% {
        stroke-opacity: 1;
    }

    100% {
        stroke-opacity: 0;
    }
}

/* SECTION Come funziona il flusso */

#descrizione .blocco_dx h2,
#descrizione .blocco_dx h3 {
    visibility: hidden;
}

#descrizione .blocco_dx h3 {
    margin-top: 10px;
    font-weight: 200;
}

#descrizione .blocco_dx h3 strong {
    font-weight: 500;
}

#descrizione .blocchetto {
    visibility: visible;
}

#descrizione .blocchetto .singola_parola {
    visibility: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#descrizione .blocchetto .singola_parola ion-icon {
    font-size: 36px;
    /* opacity: .5; */
    --ionicon-stroke-width: 16px;
}

#descrizione .blocchetto .singola_parola h4 {
    /* text-align: center; */
    font-weight: 500;
    font-size: 3vmin;
}

#descrizione .blocchetto .singola_parola ul {
    list-style: circle;
    padding-left: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#descrizione .blocchetto .singola_parola ul li {
    line-height: 1.4;
    font-size: 2vmin;
    font-weight: 200;
    /* text-align: justify; */
}

.vertical_separator {
    position: absolute;
    top: 0;
    right: -23px;
    height: 100%;
    width: 1px;
    background-color: var(--white);
}

#descrizione .blocchetto .singola_parola .vertical_separator {
    visibility: hidden;
    transform-origin: top;
}

#descrizione .blocchetto .singola_parola:last-child .vertical_separator {
    display: none;
}

.raccolta_parole_ordine {
    margin-top: 65px;
}

/* !SECTION */

/* SECTION Singolo Settore */

#main_single_sector {
    background-size: auto 700px;
    background-position: right center;
    background-repeat: no-repeat;
    opacity: 0;
}

#main_single_sector .wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sectorTitle .blocco_dx ion-icon {
    font-size: 60px;
    --ionicon-stroke-width: 16px;
    visibility: hidden;
}

.sectorTitle .blocco_dx h2 {
    font-size: 5.5vmin;
    line-height: 1.25;
    margin-top: 40px;
    visibility: hidden;
}

.descr_settore {
    padding: 30px;
    background-color: var(--deep);
    visibility: hidden;
}

.descr_settore p {
    line-height: 1.4;
    font-size: 2.4vmin;
    text-align: justify;
    visibility: hidden;
    font-weight: 200;
    margin-bottom: 12px;
}

.descr_settore p:last-of-type {
    margin-bottom: 0;
}

.sectorTitle .blocco_dx {
    align-self: center;
}

/* !SECTION */

footer {
    position: relative;
    overflow: hidden;
}

footer .footer_line {
    width: 100%;
    height: 5px;
    background-color: var(--white);
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    transform-origin: left;
}

.wrap_footer {
    align-items: center;
}

footer #collaborators {
    display: flex;
    gap: 15px;
    flex-direction: column;
    align-items: flex-end;
    /* flex-wrap: wrap; */
}

footer #privacy {
    visibility: hidden;
}

footer #privacy p {
    font-weight: 200;
}

footer #collaborators h4 {
    font-weight: 300;
    visibility: hidden;
}

footer #collaborators .singolo_coll {
    width: 150px;
    visibility: hidden;
}

#contact_link .sezione_titolo h4 {
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 300;
    letter-spacing: 10px;
}

#contact_link {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#contact_link .sezione_titolo,
#contact_link #to_contact_page {
    visibility: hidden;
}


.btn_menu_mob_wrapper {
    width: 35px;
    height: 25px;
    display: none;
    visibility: hidden;
    /* border: 1px solid red; */
}

.btn_menu_mob_wrapper #btn_trigger_menu_mob {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
}

.btn_menu_mob_wrapper #btn_trigger_menu_mob span {
    width: 60%;
    height: 1px;
    background-color: var(--white);
    position: absolute;
    transition: .2s;
}

.btn_menu_mob_wrapper #btn_trigger_menu_mob span.line_top {
    right: 0;
    top: 0;
    transform-origin: right top;
}

.btn_menu_mob_wrapper #btn_trigger_menu_mob span.line_mid {
    left: 20%;
    top: 50%;
    margin-top: -1px;
}

.btn_menu_mob_wrapper #btn_trigger_menu_mob span.line_bottom {
    right: 0;
    bottom: 0;
    transform-origin: right bottom;
}

.btn_menu_mob_wrapper #btn_trigger_menu_mob.become_x span.line_top {
    transform: rotate(-45deg);
    width: 100%;
}

.btn_menu_mob_wrapper #btn_trigger_menu_mob.become_x span.line_mid {
    opacity: 0;
}

.btn_menu_mob_wrapper #btn_trigger_menu_mob.become_x span.line_bottom {
    transform: rotate(45deg);
    width: 100%;
}

.blocco_sx.settori_intro .lead p {
    font-size: 3vmin;
}

.titolo_pagina {
    margin-bottom: 55px;
}

.voce_singola {
    visibility: hidden;
}

.voce_singola a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    font-size: 2.7vmin;
}

.voce_singola a ion-icon {
    font-size: 40px;
    --ionicon-stroke-width: 16px;
}

.titolo_pagina h2 {
    text-align: center;
}

.rubrica_contatti {
    display: flex;
    flex-direction: column;
    gap: 45px;
    align-items: center;
}

.modulo_wrapper .input_wrapper {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
    visibility: hidden;
}

.modulo_wrapper .input_wrapper label {
    opacity: .8;
}

.modulo_wrapper .input_wrapper input,
.modulo_wrapper .input_wrapper textarea {
    background-color: rgba(13, 13, 13, 0);
    color: var(--white);
    border: none;
    outline: none;
    border-bottom: 1px solid var(--white);
    font-size: 1.3rem;
}

.modulo_wrapper .input_wrapper input {
    height: 40px;
    width: 100%;
}

.modulo_wrapper .input_wrapper textarea {
    height: 120px;
    width: 100%;
    resize: none;
}

input[type="checkbox"] {
    display: none;
    visibility: hidden;
}

.fake_check {
    width: 21px;
    height: 21px;
    border: 1px solid;
    position: relative;
}

.fake_check::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 17px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    opacity: 0;
    transition: .3s;
    top: calc(50% - 8px);
    left: calc(50% - 4px);
    transform: translate(-50%, -50%) rotate(25deg);
}

.wpcf7-list-item input[type="checkbox"]:checked~.fake_check::after {
    opacity: 1;
}

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

.wpcf7-list-item label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.btn_invia {
    border: 1px solid var(--white);
    padding: 14px 30px;
    background-color: transparent;
    margin-top: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: .2s;
    display: block;
    visibility: hidden;
}

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

.grid_map {
    margin-top: 85px;
}

/* Wrap responsive */
.box_maps {
    position: relative;
    padding-bottom: 65.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

/* iframe posizionato in maniera assoluta */
.box_maps iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

#contacts .wrapper {
    padding-top: 80px;
}

.titolo_pagina h1 {
    text-align: center;
    visibility: hidden;
}

.address_box {
    align-self: center;
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
    gap: 25px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
}

.address_box ion-icon {
    font-size: 60px;
    --ionicon-stroke-width: 16px;
}

.address_box h4 {
    font-size: 3.2rem;
    font-weight: 200;
    text-transform: uppercase;
}

.address_box a {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
}

/* SECTION Media Query */

@media only screen and (max-width: 1600px) {
    footer #privacy {
        line-height: 1.4;
    }
}

@media only screen and (max-width: 900px) {
    footer #privacy p {
        text-align: center;
    }

    footer #collaborators {
        align-items: center;
    }

    .btn_menu_mob_wrapper {
        display: block;
    }

    .logoBox {
        padding-top: 0;
    }

    .grid_2_cols,
    .grid_3_cols,
    .grid_4_cols,
    .grid_5_cols,
    .grid_1_2_cols,
    .grid_1_3_cols,
    .grid_2_1_cols,
    .grid_3_1_cols,
    .grid_3_2_cols,
    .grid_2_3_cols,
    .grid_2_1_1_cols {
        grid-template-columns: 1fr;
    }

    main {
        padding-left: 0;
        padding-right: 0;
        overflow-x: hidden;
    }

    header {
        width: 100%;
        left: 0;
        right: 0;
        padding: 15px 0;
        transition: .3s;
    }

    header.opaque_header {
        background-color: rgba(13, 13, 13, 0.7);
    }

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

    aside {
        background-color: var(--deep);
        z-index: 999;
        width: 100%;
        transform: translateX(-100%);
        transition: .2s;
    }

    aside nav {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }

    aside.show_aside {
        transform: translateX(0);
    }

    aside .vertical_line {
        display: none;
    }

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

    #hero .wrapper.pad100 {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .blocchetto {
        max-width: 100%;
    }

    .blocchetto p {
        text-align: left;
        font-size: 1.2rem;
    }

    h2 {
        font-size: 3vmax;
        line-height: 1.3;
    }

    #hero h2 {
        font-size: 3.6vmax;
    }

    h3 {
        font-size: 3vmax;
        line-height: 1.4;
    }

    .arrow_link {
        margin-top: 15px;
        width: 40px;
        height: 40px;
    }

    .blocco_dx_settori::before,
    .blocco_dx_settori::after {
        display: none;
    }

    .settori_grid {
        gap: 25px;
    }

    #contact_link .sezione_titolo h4 {
        white-space: nowrap;
    }

    .imgBox.has_decor {
        height: 300px;
    }

    .flow_list li {
        font-size: 2.5vmax;
        margin-bottom: 10px;
        line-height: 1.3;
    }

    .flow_list li .number {
        width: auto;
    }

    .bacheca_loghi.major_wrapper {
        padding-left: 0;
        padding-right: 0;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .singolo_logo {
        padding: 15px;
    }

    .blocco_sx.settori_intro .lead p {
        font-size: 4vmax;
    }

    .singolo_settore .fat_text p {
        font-size: 3vmax;
    }

    .sezione {
        min-height: auto;
    }

    .menu_wrapper .menu li {
        text-align: center;
        margin-bottom: 25px;
    }

    #aside_svg {
        display: none;
    }

    .loaderImg {
        width: 80%;
    }

    #contacts .wrapper {
        padding-top: 80px;
    }

    .titolo_pagina h1 {
        text-align: center;
    }

    #intro_servizi,
    #main_single_sector {
        padding-top: 120px;
    }

    #intro_servizi h2,
    #vantaggi h2 {
        font-size: 5vmax;
    }

    #intro_servizi p,
    #vantaggi p,
    #vantaggi ul li {
        font-size: 2.7vmax;
        text-align: left;
    }

    #intro_servizi .imageBox,
    #vantaggi .imageBox {
        width: 250px;
        height: 250px;
    }

    #vantaggi .grid .blocco_sx {
        grid-row: 2;
    }

    #vantaggi .grid .blocco_dx {
        grid-row: 1;
    }


    .cubo_settore .blocco_dx {
        left: 50%;
    }

    .cubo_settore .blocco_dx {
	background-color: rgba(13, 13, 13, .85);
	max-width: 60%;
}

    .cubo_settore .blocco_dx .sezione_nome h4 {
        font-size: 2.7vmax;
    }

    #contact_link .sezione_titolo h4 {
        font-size: 2.5vmax;
    }

    #main_single_sector {
        background-size: cover;
        background-position: center;
    }

    .sectorTitle .blocco_sx {
        grid-row: 2/2;
    }

    .sectorTitle .blocco_dx {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .sectorTitle .blocco_dx h2 {
        font-size: 3.5vmax;
        margin-top: 25px;
    }

    .descr_settore {
        background-color: rgba(13, 13, 13, .75);
    }

    .descr_settore p {
        font-size: 2.2vmax;
        text-align: left;
    }

    .chi_siamo .hero_grid {
        display: block;
    }

    .blocchetto.full_width p span.num {
        font-size: 20px;
        flex-basis: 45px;
        width: 45px;
        height: 45px;
    }

    .blocchetto.full_width p span.list_text {
        flex-basis: calc(100% - 65px);
        font-size: 18px;
        line-height: 1.25;
    }

    .blocchetto.full_width p:nth-child(2),
    .blocchetto.full_width p:nth-child(3) {
        left: unset;
    }

    .chi_siamo .arrow_link {
        position: static;
    }

    .cubotti_wrapper {
        width: 100%;
        height: auto;
    }

    #descrizione .blocchetto .singola_parola ion-icon {
        font-size: 42px;
        display: block;
        margin: 0 auto;
    }

    #descrizione .blocchetto .singola_parola h4 {
        font-size: 3.5vmax;
        text-align: center;
    }

    #descrizione .blocchetto .singola_parola .vertical_separator {
        /* display: none; */
        position: static;
        height: 1px;
        width: 100%;
        margin-top: 15px;
    }

    #descrizione .blocchetto .singola_parola ul li {
        font-size: 2.5vmax;
    }

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

    .voce_singola a {
        font-size: 2.5vmax;
    }

    .voce_singola:nth-of-type(2) a {
        font-size: 2vmax;
    }

    .titolo_box_mappa h2 {
        font-size: 4.4vmax;
        text-align: center;
    }

    .address_box h4 {
        font-size: 2.2rem;
    }

    .fake_check {
        flex-basis: 21px;
    }

    .wpcf7-list-item-label {
        line-height: 1.3;
        flex-basis: calc(100% - 31px);
    }

    .grid_map {
        margin-top: 40px;
    }
}

/* ANCHOR Chiusura */
/* !SECTION */