@charset "UTF-8";

html {
  font-size: 16px;
}

body {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
  overflow-x: hidden !important;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.1;
  font-weight: 500;
}
/*font*/
.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}

/* Menu */
#mod-menu1 {
    display: flex;
    align-items: center;
    gap: 2rem;
}

#mod-menu1 > li {
    position: relative;
}

#mod-menu1 > li > a,
#mod-menu1 > li > button .mod-menu__heading {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: .3px;
    transition: all .3s ease;
    position: relative;
    text-transform: uppercase;
}

/* Linea animata */

#mod-menu1 > li > a::after,
#mod-menu1 > li > button .mod-menu__heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #e20613;
    transition: width .3s ease;
}

/* Hover */
#mod-menu1 > li:hover > a,
#mod-menu1 > li:hover > button .mod-menu__heading {
    color: #e20613;
}

#mod-menu1 > li:hover > a::after,
#mod-menu1 > li:hover > button .mod-menu__heading::after {
    width: 100%;
}

/* Voce attiva 
#mod-menu1 > li.active > a,
#mod-menu1 > li.current > a {
    color: #e20613;
}

#mod-menu1 > li.active > a::after,
#mod-menu1 > li.current > a::after {
    width: 100%;
}
*/
/*sottomenu desk mobile*/
/* ===== DESKTOP ===== */
/* BASE */
#mod-menu1 .deeper {
    position: relative;
    display: inline-flex;
    align-items: center;
}

/* SUBMENU: stato base SEMPRE nascosto */
#mod-menu1 .mod-menu__sub {
    position: absolute;
    top: 100%;
    left: 0;

    min-width: 240px;

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

    transition: all .25s ease;

    z-index: 9999;

    /* IMPORTANTISSIMO: annulla eventuali display Joomla */
    display: block !important;
    pointer-events: none;
}

/* HOVER ATTIVO */
@media (min-width: 992px) {

    #mod-menu1 .deeper:hover > .mod-menu__sub,
    #mod-menu1 .deeper:focus-within > .mod-menu__sub {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

}

#mod-menu1 .mod-menu__sub[aria-hidden="true"] {
    display: block !important;
}

/*sotto menu*/
ul.mod-menu__sub{background-color: #000; padding: 20px 10px;}
ul.mod-menu__sub li{
    padding: 10px 5px;
}
ul.mod-menu__sub li a, ul.mod-menu__sub li a:link{
    text-decoration: none; color: #fff; text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-bottom: 4px;
}
/* linea animata */
ul.mod-menu__sub li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 0;
    height: 2px;
    background: #e20613;

    transition: width .3s ease;
}

/* hover */
ul.mod-menu__sub li a:hover::after {
    width: 100%;
}






.header-area:has(#mod-menu1:hover) {
    background: #000;
}




























.navbar .logo {
  position: relative;
}
.w-100px {
  width: 100px;
}
img {
  max-width: 100%;
  height: auto;
}

/**/

.carousel-item:before,
.imgarticolo:before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background:#834121;
  opacity: 0.5;
  z-index: 1;
}

.header-area{
  z-index: 1020;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #00000078;
}
#cmslideh {
    height: 85vh;
    overflow: hidden;
    background: #000;
}

#cmslideh .carousel-inner,
#cmslideh .carousel-item {
    height: 100%;
}

/* TRANSIZIONE MODERNA */
#cmslideh .carousel-item {
    opacity: 0;
    transform: scale(1.12);
    transition:
        opacity 1.8s ease,
        transform 7s ease;

    display: block;
    position: absolute;
    inset: 0;
}

/* slide attiva */
#cmslideh .carousel-item.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

/* immagini */
#cmslideh .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    filter:
        brightness(.82)
        contrast(1.05)
        saturate(1.1);
}

/* overlay cinematografico */
#cmslideh::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.15),
            rgba(0,0,0,.35)
        );

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

.text-red{color: #e20613;}
.bg-red{background-color: #e20613;}
/**/
/* contenitore */
.showcase-slider {
    padding: 80px 0;
}

/* item base */
.showcase-slider .item {
    border-radius: 24px;
    overflow: hidden;

    transform: scale(.82);
    opacity: .45;

    transition: all .6s ease;
}

/* immagine */
.showcase-slider .item img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

/* slide centrale attiva */
.showcase-slider .owl-item.active.center .item {
    transform: scale(1);
    opacity: 1;
}

/* laterali */
.showcase-slider .owl-item.active .item {
    transform: scale(.88);
    opacity: .7;
}

/* spacing */
.showcase-slider .owl-stage-outer {
    overflow: visible;
}



@media (width >= 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1500px;
  }
}




.showcase-slider .owl-stage-outer {
    overflow: visible;
}

.showcase-slider {
    overflow: hidden;
}
.showcase-slider .center .item {
    transform: scale(1);
    opacity: 1;
}
/*

.showcase-slider {
    width: 100%;
    overflow: hidden;
    padding: 60px 0;
}

.showcase-slider .owl-stage-outer {
    overflow: visible;
}

.showcase-slider .item {
    height: 500px;
    border-radius: 24px;
    overflow: hidden;

    transform: scale(.85);
    opacity: .5;

    transition: all .5s ease;
}

.showcase-slider .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.showcase-slider .center .item {
    transform: scale(1);
    opacity: 1;
}
*/
.full-width {
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw)
}

.img-border{
border-radius: 24px;
  overflow: hidden;
  transform: scale(.82);
  transition: all .6s ease;
  }

  .cta-secondarie {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background-color: #ffffff;
    color: #e20613;
    border: 2px solid #e20613;
    /*border-radius: 999px;*/
    border-radius: 15px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(226, 6, 19, 0.08);
}

.cta-secondarie:hover {
    background-color: #e20613;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(226, 6, 19, 0.25);
}

.cta-secondarie:active {
    transform: translateY(0);
}

.cta-secondarie:focus-visible {
    outline: 3px solid rgba(226, 6, 19, 0.25);
    outline-offset: 4px;
}








.feature-card {
    height: 100%;
    text-align: center;
    padding: 24px;
    background: #fff;
    border-radius: 20px;
    transition: all .3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.feature-image {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #222;
}

.feature-card p {
    margin: 0;
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}
/*versione cerchio img


.feature-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 50%;
    margin-bottom: 20px;
    transition: all .3s ease;
}

.feature-card:hover .feature-image {
    background: #e20613;
    transform: scale(1.08);
}




*/
.process-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 900px;
}

.process-list li {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    position: relative;
    padding-bottom: 40px;
}

.process-list li:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 28px;
    top: 70px;
    width: 2px;
    height: calc(100% - 40px);
    background: #e5e7eb;
}

.step-number {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #111827;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 1px;
}

.step-content h3 {
    margin: 0 0 8px;
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
}

.step-content p {
    margin: 0;
    color: #6b7280;
    line-height: 1.7;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .process-list li {
        gap: 18px;
        padding-bottom: 30px;
    }

    .step-number {
        width: 48px;
        height: 48px;
        font-size: 0.9rem;
    }

    .process-list li:not(:last-child)::after {
        left: 23px;
        top: 60px;
    }

    .step-content h3 {
        font-size: 1.1rem;
    }
}

/*blocco full col-md-6 allineato container*/
.content-left{
   /* max-width: 660px;*/
    max-width: 760px;
    margin-left: auto;
}
.content-right{
   /* max-width: 660px;*/
    max-width: 760px;
    margin-right: auto;
}
/*ul chisiamo*/
.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    padding: 1rem 1.25rem;
    margin-bottom: .75rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 12px;
    color: #fff;
    backdrop-filter: blur(10px);
    transition: all .3s ease;
}

.service-list li:hover {
    background: rgba(255,255,255,.14);
    transform: translateX(6px);
}

.service-list li::after {
    content: "\F144"; /* arrow-up-right */
    font-family: "bootstrap-icons";

    position: absolute;
    top: 50%;
    right: 1rem;

    width: 42px;
    height: 42px;

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

    transform: translateY(-50%);

    border-radius: 50%;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);

    color: #fff;
    font-size: 1rem;

    transition: all .3s ease;
}

/*hero-parallax */
.hero-parallax {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.hero-image {
     position: absolute;
    inset: 0;
    width: 100%;
    height: 120%;
    object-fit: cover;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.com-content-article .article-content {



    position: relative;
    background: #fff;
    margin-top: -120px;
    border-radius: 20px 20px 0 0;
    z-index: 20;
    padding: 3rem;
}

/*pag interne come lavoriamo*/
.step-orizzontale .process-timeline{
    position:relative;
    display:flex;
    justify-content:space-between;
    gap:2rem;
}

.step-orizzontale .process-line{
    position:absolute;
    top:40px;
    left:10%;
    right:10%;
    height:2px;
    background:#d9d9d9;
    z-index:1;
}

.step-orizzontale .process-step{
    position:relative;
    z-index:2;
    flex:1;
    text-align:center;
}

.step-orizzontale .step-number{
    width:80px;
    height:80px;
    margin:0 auto 1.5rem;
    border-radius:50%;
    background:#fff;
    border:2px solid #000;
    color:#000;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.5rem;
    font-weight:700;
    transition:.3s;
}

.step-orizzontale .process-step:hover .step-number{
    background:#000;
    color:#fff;
    transform:translateY(-8px);
}

.step-orizzontale .process-step h3{
    font-size:1.1rem;
    margin-bottom:.75rem;
}

.step-orizzontale .process-step p{
    font-size:.95rem;
    color:#666;
}
@media (max-width: 991px){

    .step-orizzontale .process-timeline{
        flex-direction:column;
        gap:3rem;
    }

    .step-orizzontale .process-line{
        width:2px;
        height:100%;
        left:40px;
        right:auto;
        top:0;
    }

    .step-orizzontale .process-step{
        text-align:left;
        padding-left:100px;
    }

    .step-orizzontale .step-number{
        position:absolute;
        left:0;
        top:0;
        margin:0;
    }

}


/*problemi*/
.problem-card{
    display:flex;
    gap:1.5rem;
    padding:2rem;
    background:#fff;
    border-radius:20px;
    border:1px solid rgba(0,0,0,.08);
    transition:.3s;
}

.problem-card:hover{
    transform:translateX(10px);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.problem-icon{
    width:70px;
    height:70px;
    flex-shrink:0;
    border-radius:18px;
    background:#f5f7fa;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.75rem;
    color:var(--bs-primary);
}

.problem-card h3{
    font-size:1.2rem;
    margin-bottom:.75rem;
}

.problem-card p{
    margin:0;
    color:#666;
}


/*btn mobile*/
.call-pulse{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#28a745;
    color:#fff;
    border-radius:50%;
    position:relative;
    text-decoration:none;
}

.call-pulse::before{
    content:'';
    position:absolute;
    inset:0;
    border-radius:50%;
    background:#28a745;
    animation:pulse 2s infinite;
    z-index:-1;
}
/*x menu mobile*/
.animated-toggler{
    width:42px;
    height:42px;
    background:none;
    border:none;
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:6px;
}

.animated-toggler span{
    display:block;
    width:28px;
    height:2px;
    background:#fff;
    border-radius:5px;
    transition:.3s;
}

/* menu aperto */
.animated-toggler[aria-expanded="true"] span:nth-child(1){
    transform:translateY(8px) rotate(45deg);
}

.animated-toggler[aria-expanded="true"] span:nth-child(2){
    opacity:0;
}

.animated-toggler[aria-expanded="true"] span:nth-child(3){
    transform:translateY(-8px) rotate(-45deg);
}


/*menu mobile*/
#navmobile {
    padding: 20px;
}

/* Liste */
#navmobile ul,
#navmobile li {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Voci principali */
#navmobile li {
    border-bottom: 1px solid rgba(255,255,255,.08);
}

/* Link */
#navmobile a,
#navmobile .mod-menu__toggle-sub {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 56px;
    padding: 0;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
}

/* Stato attivo */
#navmobile .current > a,
#navmobile .active > a {
    color: #e20613;
    font-weight: 600;
}

/* Submenu */
#navmobile .mod-menu__sub {
    margin: 0;
    padding: 0 0 10px 20px;
    position: relative;
    display:block;
    visibility: unset;

    top: unset;
    left: unset;
    min-width: unset;
    z-index: unset;
    opacity: unset;
    width: 100%;
    pointer-events: unset;
}

/* Voci submenu */
#navmobile .mod-menu__sub a {
    min-height: 44px;
    font-size: 15px;
    color: #cfcfcf;
}

/* Hover */
#navmobile a:hover,
#navmobile .mod-menu__toggle-sub:hover {
    color: #e20613;
}

/* Freccia */
#navmobile .icon-chevron-down {
    opacity: .7;
    font-size: 12px;
    transition: transform .3s ease;
}

#navmobile li {
    border-bottom: 0;
}

#navmobile li + li {
    margin-top: 8px;
}
#navmobile #mod-menu1 .deeper{width: 100%; display:block!important;}


@media only screen and (min-device-width : 320px) and (max-device-width : 568px)  { 
    .process-list{display: none;}
}