@charset "UTF-8";
/* CSS Document 
Theme Name: Carpenteria 3P 
Author: Si.Be Group
*/

@font-face {
    font-family: "Kanit";
    src: url("./font/Kanit-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Kanit";
    src: url("./font/Kanit-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Kanit";
    src: url("./font/Kanit-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Kanit";
    src: url("./font/Kanit-ExtraBold.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Kanit";
    src: url("./font/Kanit-Black.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* RESET */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.clearer {
    clear: both;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Kanit", Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

a {
    color: inherit;
}

img {
    border: none;
    display: block;
    max-width: 100%;
}

header,
nav,
article,
aside,
section,
footer,
main,
figure,
figcaption,
hgroup {
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
}

p {
    font-size: 18px;
    line-height: 1.55;
}

li {
    font-size: 18px;
    margin-left: 25px;
}


/* HOME 1 */

.home_1 {
    width: 100%;
    height: min(100vh, 800px);
    max-height: 800px;
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.home_1::before {
    content: "";
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.38);

    z-index: 1;
}

.home_1::after {
    content: "";
    position: absolute;

    right: 50%;
    top: 50%;

    width: 1120px;
    height: 790px;

    background-image: url("./Immagini/arrow-rossa.png");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;

    transform: translateY(-50%);
    opacity: 0.90;

    z-index: 2;
    pointer-events: none;
}

.home_1_int {
    width: 90%;
    max-width: 1400px;
    height: 100%;
    margin: 0 auto;

    position: relative;
    z-index: 3;

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

.home_1_logo {
    width: 520px;
    max-width: 75vw;
    margin-bottom: 55px;
}

.home_1 h1 {
    max-width: 1100px;

    font-size: 48px;
    line-height: 1.25;
    font-weight: 600;

    color: #fff;
    margin-bottom: 36px;
}

.home_1_btn {
    display: inline-block;

    padding: 18px 30px;

    background: #ff1f10;
    color: #fff;

    font-size: 16px;
    line-height: 1;
    font-weight: 600;
    text-decoration: none;

    border-radius: 4px;

    transition: all 0.25s ease;
}

.home_1_btn:hover {
    background: #d9180d;
}


/* HOME 2 */

.home_2 {
    width: 100%;
    position: relative;
    overflow: hidden;

    background: #1d1d22;
    color: #fff;
}

.home_2::after {
    content: "";
    position: absolute;

    top: 0;
    right: 0;

    width: 1000px;
    height: 526px;

    background-image: url("./Immagini/grata.png");
    background-repeat: no-repeat;
    background-position: top right;
    background-size: contain;

    z-index: 1;
    pointer-events: none;
}

.home_2_int {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;

    position: relative;
    z-index: 2;

    padding-top: 80px;
    padding-bottom: 80px;

    display: grid;
    grid-template-columns: 48% 48%;
    column-gap: 4%;
    align-items: start;
}

.home_2_sx {
    width: 100%;
}

.home_2_sx h2 {
    color: #fff;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 600;
}

.linea_rossa {
    background-color: #d9180d;
    width: 70px;
    height: 5px;
    margin-top: 8px;
}

.home_2_img {
    width: 100%;
    height: auto;
    margin-top: 50px;
    overflow: hidden;

    border-radius: 18px;
}

.home_2_img img {
    width: 100%;
    height: auto;
}

.home_2_dx {
    width: 100%;
    padding-top: 6px;
}

.home_2_dx h4 {
    max-width: 620px;

    font-size: 22px;
    line-height: 1.3;
    font-weight: 600;

    color: #fff;
    margin-bottom: 35px;
}

.home_2_dx p {
    max-width: 640px;

    font-weight: 400;

    color: #fff;
    margin-bottom: 34px;
}

.home_2_btn {
    display: inline-block;

    padding: 18px 42px;

    background: #ff1f10;
    color: #fff;

    font-size: 16px;
    line-height: 1;
    font-weight: 600;
    text-decoration: none;

    border-radius: 4px;

    transition: all 0.25s ease;
}

.home_2_btn:hover {
    background: #d9180d;
}

.home_2_dx_logo {
    width: 60%;
    max-width: 340px;
    height: auto;

    margin-top: 48px;
    margin-left: auto;
}

.home_2_dx_logo img {
    width: 100%;
    height: auto;
}


/* HOME 3 */

.home_3 {
    width: 100%;
    background: #eef1f7;
    padding: 70px 0;
}

.home_3_int {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

.home_3_item {
    color: #1d1d22;
}

.home_3_num {
    font-size: 48px;
    line-height: 1;
    font-weight: 600;
    color: #1d1d22;
}

.home_3_small {
    font-size: 18px;
    font-weight: 400;
    margin-left: 4px;
}

.home_3_line {
    width: 58px;
    height: 5px;
    background: #d9180d;
    margin-top: 14px;
    margin-bottom: 10px;
}

.home_3_item p {
    font-weight: 400;
    color: #1d1d22;
}


/* HOME 4 */

.home_4 {
    width: 100%;
    position: relative;
    overflow: hidden;

    background: #1d1d22;
    color: #fff;

    padding: 75px 0 150px;
}

.home_4::before {
    content: "";
    position: absolute;

    left: 50%;
    top: 0;

    width: 1920px;
    height: 100%;

    background-image: url("./Immagini/sfondo-home-4.png");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 1920px auto;

    transform: translateX(-50%);

    z-index: 1;
    pointer-events: none;
}

.home_4_int {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;

    position: relative;
    z-index: 2;
}

.home_4_titolo {
    text-align: center;
    margin-bottom: 55px;
}

.home_4_titolo h2 {
    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
}

.home_4_titolo .linea_rossa {
    margin: 12px auto 24px;
}

.home_4_titolo p {
    max-width: 1050px;
    margin: 0 auto;

    font-weight: 400;
    color: #fff;
}

.home_4_titolo p strong {
    font-weight: 800;
}

.home_4_grid {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}


/* BOX PRODOTTI */

.home_4_box {
    position: relative;
    overflow: hidden;

    height: 270px;

    border-radius: 14px;
    background: #000;

    text-decoration: none;

    display: block;
}

.home_4_box img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    display: block;

    transition: all 0.35s ease;
}

.home_4_box::before {
    content: "";
    position: absolute;
    inset: 0;

    background: rgba(255, 31, 16, 0.58);
    opacity: 0;

    z-index: 2;
    transition: all 0.35s ease;
    pointer-events: none;
}

.home_4_box::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.70),
        rgba(0, 0, 0, 0.05)
    );

    z-index: 1;
    pointer-events: none;
}

.home_4_box_txt {
    position: absolute;
    left: 28px;
    bottom: 24px;

    z-index: 3;

    transition: transform 0.35s ease;
}

.home_4_box_txt h3 {
    font-size: 25px;
    line-height: 1.15;
    font-weight: 700;
    color: #fff;
}

.home_4_line {
    display: block;

    width: 40px;
    height: 3px;

    background: #d9180d;

    margin-top: 10px;

    transition: all 0.35s ease;
}

.home_4_action {
    position: absolute;
    left: 0;
    top: calc(100% + 16px);

    display: flex;
    align-items: center;
    gap: 12px;

    white-space: nowrap;

    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;

    color: #fff;

    opacity: 0;
    transform: translateY(10px);

    transition: all 0.35s ease;
}

.home_4_plus {
    width: 36px;
    height: 36px;

    border-radius: 50%;

    background: #fff;

    position: relative;
    display: block;
    flex: 0 0 36px;
}

.home_4_plus::before,
.home_4_plus::after {
    content: "";
    position: absolute;

    left: 50%;
    top: 50%;

    background: #ff1f10;

    transform: translate(-50%, -50%);
}

.home_4_plus::before {
    width: 14px;
    height: 4px;
}

.home_4_plus::after {
    width: 4px;
    height: 14px;
}


/* HOVER PRODOTTI */

.home_4_box:hover img {
    transform: scale(1.04);
}

.home_4_box:hover::before {
    opacity: 1;
}

.home_4_box:hover::after {
    opacity: 0;
}

.home_4_box:hover .home_4_box_txt {
    transform: translateY(-54px);
}

.home_4_box:hover .home_4_line {
    background: #fff;
}

.home_4_box:hover .home_4_action {
    opacity: 1;
    transform: translateY(0);
}


/* CALL TO ACTION */

.home_4_cta {
    position: relative;
    overflow: hidden;

    height: 270px;

    border-radius: 14px;

    background-image: url("./Immagini/banner-call-servizi.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;

    display: flex;
    align-items: center;

    padding: 34px 36px;
}

.home_4_cta::before {
    content: "";
    position: absolute;
    inset: 0;

    background: rgba(255, 31, 16, 0.08);

    pointer-events: none;
}

.home_4_cta_txt {
    position: relative;
    z-index: 2;
}

.home_4_cta h3 {
    font-size: 28px;
    line-height: 1.05;
    font-weight: 700;

    color: #fff;

    margin-bottom: 28px;
}

.home_4_cta_btn {
    display: inline-block;

    padding: 16px 34px;

    background: #fff;
    color: #ff1f10;

    font-size: 16px;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;

    border-radius: 4px;

    transition: all 0.25s ease;
}

.home_4_cta_btn:hover {
    background: #1d1d22;
    color: #fff;
}


/* HOME 5 */

.home_5 {
    width: 100%;
    position: relative;
    overflow: visible;

    background-color: #d9dde3;
    background-image: url("./Immagini/sfondo-banner-2.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;

    color: #fff;

    padding: 42px 0;

    z-index: 3;
    isolation: isolate;
}

.home_5::before {
    content: "";
    position: absolute;

    left: 0;
    top: 0;

    width: 63%;
    height: 100%;

    background-image:
        linear-gradient(rgba(255, 31, 16, 0.78), rgba(255, 31, 16, 0.78)),
        url("./Immagini/img-sinistra.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;

    clip-path: polygon(0 0, 82% 0, 100% 100%, 0 100%);

    z-index: 1;
    pointer-events: none;
}

.home_5_int {
    width: 90%;
    max-width: 1400px;
    min-height: 280px;
    margin: 0 auto;

    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
}

.home_5_txt {
    width: 52%;
    max-width: 680px;

    position: relative;
    z-index: 3;
}

.home_5_icon {
    width: 42px;
    height: auto;
    margin-bottom: 18px;
}

.home_5 h2 {
    font-size: 42px;
    line-height: 1.05;
    font-weight: 700;

    color: #fff;
}

.home_5_line {
    width: 60px;
    height: 3px;

    background: #fff;

    margin-top: 18px;
    margin-bottom: 28px;
}

.home_5_btn {
    display: inline-block;

    padding: 16px 30px;

    background: #fff;
    color: #ff1f10;

    font-size: 16px;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;

    border-radius: 4px;

    transition: all 0.25s ease;
}

.home_5_btn:hover {
    background: #1d1d22;
    color: #fff;
}

.home_5_persona {
    position: absolute;

    right: 10%;
    bottom: -42px;

    width: auto;
    height: 460px;

    z-index: 4;
    pointer-events: none;
}


/* HOME 6 */

.home_6 {
    width: 100%;
    background: #eef1f7;
    padding: 85px 0 95px;
}

.home_6_int {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 52px;
    align-items: start;
}

.home_6_sx h2 {
    font-size: 34px;
    line-height: 1.15;
    font-weight: 700;
    color: #1d1d22;
}

.home_6_sx .linea_rossa {
    margin-top: 10px;
    margin-bottom: 22px;
}

.home_6_sx p {
    color: #1d1d22;
    margin-bottom: 24px;
}

.home_6_sx p strong {
    font-weight: 700;
}

.home_6_btn {
    display: inline-block;

    padding: 16px 28px;

    background: #ff1f10;
    color: #fff;

    font-size: 16px;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;

    border-radius: 4px;

    transition: all 0.25s ease;
}

.home_6_btn:hover {
    background: #d9180d;
}

.home_6_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.home_6_card,
.home_6_card_spacer {
    min-height: 220px;
    border-radius: 16px;
}

.home_6_card {
    position: relative;
    overflow: hidden;

    background: #1a1a1e;
    color: #fff;
    text-decoration: none;

    padding: 30px 26px 28px;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.home_6_card::after {
    content: "";
    position: absolute;

    left: 0;
    bottom: 24px;

    width: 85%;
    height: 110px;

    background-image: url("./Immagini/freccia-scura.png");
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: contain;

    pointer-events: none;
    z-index: 1;
}

.home_6_card_icon {
    width: 42px;
    height: auto;
    margin-bottom: 34px;

    position: relative;
    z-index: 2;
}

.home_6_card h3 {
    font-size: 21px;
    line-height: 1.15;
    font-weight: 700;
    color: #fff;

    margin-bottom: 12px;

    position: relative;
    z-index: 2;
}

.home_6_card p {
    font-weight: 400;
    color: #fff;

    position: relative;
    z-index: 2;
}

.home_6_card_spacer {
    visibility: hidden;
    pointer-events: none;
}


/* HOME 7 */

.home_7 {
    width: 100%;
    position: relative;
    overflow: hidden;

    background: #fff;

    padding: 85px 0 95px;
}

.home_7::before {
    content: "";
    position: absolute;

    right: 0;
    top: 18px;

    width: 1550px;
    height: calc(100% - 18px);

    background-image: url("./Immagini/sfondo_carosello.jpg");
    background-repeat: no-repeat;
    background-position: top right;
    background-size: contain;

    z-index: 1;
    pointer-events: none;
}

.home_7_int {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;

    position: relative;
    z-index: 2;
}

.home_7_titolo {
    text-align: center;
    margin-bottom: 55px;
}

.home_7_titolo h2 {
    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
    color: #1d1d22;
}

.home_7_titolo .linea_rossa {
    margin: 12px auto 0;
}

.home_7_carousel {
    width: 100%;

    display: flex;
    align-items: center;
    gap: 28px;
}

.home_7_viewport {
    width: 100%;
    overflow: hidden;

    cursor: grab;
    touch-action: pan-y;
    user-select: none;
}

.home_7_viewport.home_7_grabbing {
    cursor: grabbing;
}

.home_7_track {
    display: flex;
    align-items: center;

    transition: transform 0.45s ease;
    will-change: transform;
}

.home_7_track.home_7_no_transition {
    transition: none;
}

.home_7_logo {
    height: 85px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    user-select: none;
    pointer-events: none;
}

.home_7_logo img {
    max-width: 100%;
    max-height: 75px;

    width: auto;
    height: auto;

    display: block;

    user-select: none;
    pointer-events: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
}

.home_7_arrow {
    width: 46px;
    height: 46px;

    border: 2px solid #1d1d22;
    border-radius: 50%;

    background: #fff;

    position: relative;

    cursor: pointer;
    flex: 0 0 46px;

    transition: all 0.25s ease;
}

.home_7_arrow:hover {
    background: #ff1f10;
    border-color: #ff1f10;
}

.home_7_arrow::before {
    content: "";
    position: absolute;

    left: 50%;
    top: 50%;

    width: 11px;
    height: 11px;

    border-top: 3px solid #1d1d22;
    border-right: 3px solid #1d1d22;

    transition: all 0.25s ease;
}

.home_7_arrow:hover::before {
    border-color: #fff;
}

.home_7_prev::before {
    transform: translate(-35%, -50%) rotate(-135deg);
}

.home_7_next::before {
    transform: translate(-65%, -50%) rotate(45deg);
}

/* FOOTER */

footer {
    width: 100%;
    position: relative;
    overflow: visible;
    z-index: 4;
    background-color: #1a1a1e;
    color: #fff;
}


/* BANNER CONTATTI FOOTER */

.footer_contatti_banner {
    width: 90%;
    max-width: 1050px;

    margin: 0 auto;
    margin-bottom: -58px;

    position: relative;
    z-index: 6;

    background: rgba(255, 31, 16, 0.95);

    transform: translateY(-50%);
}

.footer_contatti_banner_int {
    width: 100%;

    display: grid;
    grid-template-columns: 1fr 1fr 1.15fr;
    align-items: center;
    gap: 42px;

    min-height: 116px;

    padding: 24px 46px;
}

.footer_contatti_item {
    display: flex;
    align-items: center;
    gap: 18px;

    color: #fff;
}

.footer_contatti_icon {
    width: 58px;
    height: 58px;

    flex: 0 0 58px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.footer_contatti_icon img {
    width: 100%;
    height: auto;

    display: block;
}

.footer_contatti_txt {
    flex: 1;
}

.footer_contatti_txt h4 {
    font-size: 22px;
    line-height: 1.15;
    font-weight: 600;

    color: #fff;

    margin-bottom: 5px;
}

.footer_contatti_txt p {
    font-size: 15px;
    line-height: 1.35;
    font-weight: 600;

    color: #fff;
}

.footer_contatti_txt a {
    color: #fff;
    text-decoration: none;

    transition: all 0.25s ease;
}

.footer_contatti_txt a:hover {
    color: #1a1a1e;
}


/* FOOTER PRINCIPALE */

.footer_int {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;

    padding-top: 75px;
    padding-bottom: 55px;
}

.footer_top {
    width: 100%;
    margin-bottom: 42px;
}

.footer_logo {
    width: 30%;
    max-width: 360px;
}

.footer_logo img {
    width: 100%;
    height: auto;
}

.footer_grid {
    width: 100%;

    display: grid;
    grid-template-columns: 1.35fr 1.15fr 1fr 1.15fr;
    gap: 65px;
    align-items: start;
}

.footer_col {
    color: #fff;
}

.footer_col h4,
.footer_testi h4 {
    font-size: 16px;
    line-height: 1.25;
    font-weight: 600;

    color: #fff;

    margin-bottom: 8px;
}

.footer_col p,
.footer_testi p,
.footer_col li,
.footer_piva,
.footer_social span {
    font-size: 16px;
    line-height: 1.45;
    font-weight: 500;

    color: rgba(255, 255, 255, 0.82);
}

.footer_social p {
    font-size: 14px;
}

.footer_col a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.82);

    transition: all 0.25s ease;
}

.footer_col a:hover {
    color: #ff1f10;
}

.footer_dati {
    display: flex;
    align-items: flex-start;
    gap: 14px;

    margin-bottom: 13px;
}

.footer_dati_img {
    width: 18px;
    flex: 0 0 18px;

    padding-top: 2px;
}

.footer_dati_img img {
    width: 100%;
    height: auto;
}

.footer_testi {
    flex: 1;
}

.footer_piva {
    margin-top: 28px;
    margin-bottom: 24px;
}

.footer_social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer_social span {
    font-weight: 800;
    color: #fff;
}

.footer_linkedin {
    width: 24px;
    height: 24px;

    border-radius: 50%;

    background: #fff;
    color: #1a1a1e !important;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    text-decoration: none;
}

.footer_linkedin:hover {
    background: #ff1f10;
    color: #fff !important;
}

.footer_orari_head {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 18px;
}

.footer_orari_icon {
    width: 22px;
    flex: 0 0 22px;
}

.footer_orari_icon img {
    width: 100%;
    height: auto;
}

.footer_orari_head h4 {
    margin-bottom: 0;
}

.footer_orari h5 {
    font-size: 14px;
    line-height: 1.25;
    font-weight: 800;

    color: #fff;

    margin-bottom: 4px;
}

.footer_orari p {
    margin-bottom: 14px;
}

.footer_menu {
    list-style: none;
}

.footer_menu li {
    margin-left: 0;
    margin-bottom: 7px;
}

.footer_bmp {
    margin-top: 34px;
}

.footer_bmp p {
    font-weight: 800;
    color: #fff;

    margin-bottom: 14px;
}

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

.footer_azienda h4 {
    font-size: 15px;
    line-height: 1.25;
    font-weight: 800;

    color: #fff;

    margin-bottom: 8px;
}

.spazio_pre_footer {
    width: 100%;
    height: 100px;
}

body .wpie-switch-descr {
    margin-top: 3px !important;
    margin-bottom: 15px;
}

/* MEDIA FOR TABLET AND MOBILE DEVICE */

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

    .home_1 {
        height: 620px;
        max-height: 620px;
        background-position: center center;
    }

    .home_1::after {
        right: 50%;

        width: 920px;
        height: 648px;

        opacity: 0.78;
    }

    .home_1_logo {
        width: 300px;
        max-width: 85vw;
        margin-bottom: 38px;
    }

    .home_1 h1 {
        font-size: 30px;
        line-height: 1.25;
        margin-bottom: 32px;
    }

    .home_1_btn {
        padding: 16px 24px;
        font-size: 14px;
    }


    /* HOME 2 MOBILE */

    .home_2::after {
        width: 650px;
        height: 342px;
        opacity: 0.45;
    }

    .home_2_int {
        padding-top: 65px;
        padding-bottom: 65px;

        display: block;
    }

    .home_2_sx {
        width: 100%;
        margin-bottom: 48px;
    }

    .home_2_sx h2 {
        font-size: 30px;
        line-height: 1.2;
    }

    .linea_rossa {
        margin-top: 8px;
    }

    .home_2_img {
        margin-top: 36px;
    }

    .home_2_dx {
        width: 100%;
        padding-top: 0;
    }

    .home_2_dx h4 {
        max-width: 100%;
        font-size: 21px;
        line-height: 1.35;
        margin-bottom: 22px;
    }

    .home_2_dx p {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .home_2_btn {
        padding: 16px 34px;
        font-size: 14px;
    }

    .home_2_dx_logo {
        width: 70%;
        max-width: 280px;

        margin-top: 42px;
        margin-left: 0;
    }


    /* HOME 3 MOBILE */

    .home_3 {
        padding: 55px 0;
    }

    .home_3_int {
        grid-template-columns: 1fr;
        gap: 55px;
        text-align: center;
    }

    .home_3_item {
        width: 100%;
        text-align: center;
    }

    .home_3_num {
        font-size: 42px;
    }

    .home_3_small {
        font-size: 16px;
    }

    .home_3_line {
        margin-left: auto;
        margin-right: auto;
    }


    /* HOME 4 MOBILE */

    .home_4 {
        padding: 60px 0 70px;
    }

    .home_4::before {
        width: 1300px;
        background-size: 1300px auto;
    }

    .home_4_titolo {
        margin-bottom: 40px;
    }

    .home_4_titolo h2 {
        font-size: 30px;
    }

    .home_4_titolo p br {
        display: none;
    }

    .home_4_grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .home_4_box,
    .home_4_cta {
        height: 260px;
    }

    .home_4_box_txt {
        left: 24px;
        bottom: 24px;
    }

    .home_4_box_txt h3 {
        font-size: 24px;
    }

    .home_4_box:hover .home_4_box_txt {
        transform: translateY(-54px);
    }

    .home_4_plus {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
    }

    .home_4_plus::before {
        width: 13px;
        height: 4px;
    }

    .home_4_plus::after {
        width: 4px;
        height: 13px;
    }

    .home_4_cta {
        padding: 32px 30px;
    }

    .home_4_cta h3 {
        font-size: 27px;
    }


    /* HOME 5 MOBILE */

    .home_5 {
        overflow: hidden;
        padding: 60px 0 0;
    }

    .home_5::before {
        width: 100%;
        height: 72%;

        clip-path: polygon(0 0, 100% 0, 100% 82%, 0 100%);
    }

    .home_5_int {
        display: block;
        min-height: auto;
    }

    .home_5_txt {
        width: 100%;
        max-width: 100%;

        text-align: center;

        padding-bottom: 40px;
    }

    .home_5_icon {
        margin-left: auto;
        margin-right: auto;
    }

    .home_5 h2 {
        font-size: 31px;
    }

    .home_5_line {
        margin-left: auto;
        margin-right: auto;
    }

    .home_5_persona {
        position: relative;

        right: auto;
        bottom: auto;

        width: 330px;
        height: auto;
        max-width: 90%;
        margin: 0 auto;
    }


    /* HOME 6 MOBILE */

    .home_6 {
        padding: 65px 0 70px;
    }

    .home_6_int {
        display: block;
    }

    .home_6_sx {
        width: 100%;
        margin-bottom: 36px;
    }

    .home_6_sx h2 {
        font-size: 30px;
    }

    .home_6_sx p {
        margin-bottom: 20px;
    }

    .home_6_grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .home_6_card,
    .home_6_card_spacer {
        min-height: 220px;
    }

    .home_6_card {
        padding: 30px 26px 28px;
    }

    .home_6_card_spacer {
        display: none;
    }

    .home_6_card::after {
        left: 0;
        bottom: 24px;

        width: 85%;
        height: 110px;

        background-position: left bottom;
    }

    .home_6_card_icon {
        width: 42px;
        margin-bottom: 34px;
    }

    .home_6_card h3 {
        font-size: 21px;
    }


    /* HOME 7 MOBILE */

    .home_7 {
        padding: 65px 0 70px;
    }

    .home_7::before {
        top: 16px;
        width: 950px;
        height: calc(100% - 16px);
        background-position: top right;
        opacity: 0.9;
    }

    .home_7_titolo {
        margin-bottom: 38px;
    }

    .home_7_titolo h2 {
        font-size: 30px;
    }

    .home_7_carousel {
        gap: 12px;
    }

    .home_7_arrow {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .home_7_arrow::before {
        width: 9px;
        height: 9px;
    }

    .home_7_logo {
        height: 70px;
    }

    .home_7_logo img {
        max-height: 60px;
    }

/* FOOTER MOBILE */


.footer_contatti_banner {
    width: 90%;
    max-width: 100%;

    margin-bottom: -42px;

    transform: translateY(-42px);
}

.footer_contatti_banner_int {
    display: block;

    min-height: auto;

    padding: 32px 26px;
}

.footer_contatti_item {
    width: 100%;

    gap: 16px;

    margin-bottom: 26px;
}

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

.footer_contatti_icon {
    width: 54px;
    height: 54px;

    flex-basis: 54px;
}

.footer_contatti_icon img {
    width: 100%;
}

.footer_contatti_txt h4 {
    font-size: 20px;
}

.footer_contatti_txt p {
    font-size: 14px;
    line-height: 1.4;
}


.footer_int {
    padding-top: 60px;
    padding-bottom: 45px;
}

.footer_top {
    margin-bottom: 38px;
}

.footer_logo {
    width: 260px;
    max-width: 85%;
}

.footer_grid {
    grid-template-columns: 1fr;
    gap: 40px;
}

.footer_col h4,
.footer_testi h4 {
    font-size: 15px;
}

.footer_col p,
.footer_testi p,
.footer_col li,
.footer_piva,
.footer_social span {
    font-size: 14px;
}

.footer_piva {
    margin-top: 24px;
    margin-bottom: 22px;
}

.footer_bmp {
    margin-top: 28px;
}

}



.c3p-toolbar-preventivo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 30px;
	margin-left: 18px;
	padding: 0 18px;

	border-radius: 4px;
	background-color: #ed1c24;
	color: #ffffff !important;

	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;

	transition:
		background-color 180ms ease,
		transform 180ms ease;
}

.c3p-toolbar-preventivo:hover,
.c3p-toolbar-preventivo:focus-visible {
	background-color: #c9141b;
	color: #ffffff !important;
	text-decoration: none;
	transform: translateY(-1px);
}

.ancora {
    position: absolute;
    top: -50px;
}




/* Stabilizza Groovy Menu durante il caricamento */
.gm-navbar {
    min-height: 85px;
}

.gm-logo,
.gm-logo a {
    min-height: 65px;
}

.gm-logo img {
    width: auto;
    height: 65px;
}

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

    .gm-navbar {
        min-height: 64px;
    }

    .gm-logo,
    .gm-logo a {
        min-height: 44px;
    }

    .gm-logo img {
        width: auto;
        height: 44px;
    }
}



.grecaptcha-badge {
    z-index: 999 !important;
}