/*
Theme Name: GrowAI
Description: Template GrowAI
Version: 1.0
Author: Sebastiano Cullemi
Author URI: https://www.sebastianocullemi.com/
*/
@import url("https://use.typekit.net/wht1shj.css");
@font-face {
    font-family: "Elza Text", sans-serif;
    font-weight: 400;
    font-style: normal; 
}
@font-face {
    font-family: "Elza Text", sans-serif;
    font-weight: 600;
    font-style: normal;
}
:root {
    --blue: #000F7F;
    --gradient: linear-gradient(90deg, #000F7F 0%, #D8B2FD 100%);
}
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text; /* Safari / Chrome */
  background-clip: text;
  -webkit-text-fill-color: transparent; /* Safari */
  color: transparent; /* fallback */
}
body{
    margin:0;
    padding: 0;
    font-family: "Elza Text", sans-serif;
    font-weight: 400;
}
#popup-parliamone { position: fixed; inset: 0; z-index: 99999; }
#popup-parliamone .popup-overlay { position: absolute; inset: 0; }
#popup-parliamone .popup-content { position: relative; z-index: 1; }

button.hamburger {
    display: none;
}

/* HEADER */
.contHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0px;
    transition: all 0.2s ease-in-out;
}
.contLogoHeader {
    width: 20%;
}
.contButtonHeader {
    width: 20%;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-end;
}
header ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 32px;
    justify-content: center;
}
.contMenu {
    width: 60%;
    display: flex;
    justify-content: center;
}
.contButtonHeader a {
    display: flex;
    padding: 12px 20px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    background: rgba(0, 15, 127, 0.90);
    color: #FFF;
    text-align: center;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    text-decoration: none;
}
header#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background-color: transparent;
    transition: all 0.2s ease-in-out;
}
header.is-scrolled {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    background-color: rgba(255, 255, 255, 0.5) !important;
}
header.is-scrolled  .contHeader {
    padding: 8px 0px;
}
/* END HEADER */

 





/* MENU */
header ul li a{
    color: var(--blue);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%; /* 16px */
    text-decoration: none;
}
header ul{
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
}
/* END MENU */



/* CSS */
:root {
  --hamb-size: 56px;
  --line-w: 22px;
  --line-h: 2px;
  --line-gap: 7px;
  --radius: 999px;
}

.hamburger {
  width: var(--hamb-size);
  height: var(--hamb-size);
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
  transition: transform .18s ease, box-shadow .18s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

.hamburger:active { transform: scale(.98); }
.hamburger:focus-visible { outline: 3px solid rgba(0,0,0,.25); outline-offset: 3px; }

.hamburger__lines {
  position: relative;
  width: var(--line-w);
  height: calc(var(--line-gap) * 2 + var(--line-h));
  display: block;
}

.hamburger__lines::before,
.hamburger__lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: var(--line-w);
  height: var(--line-h);
  background: var(--gradient);
  border-radius: 999px;
  transition:
    transform .22s ease,
    top .22s ease,
    opacity .18s ease;
}
.mobile-menu a {
    font-weight: 600;
    color: #0F4987;
}
/* 2 linee (top & bottom) */
.hamburger__lines::before { top: 0; }
.hamburger__lines::after  { top: calc(var(--line-gap) * 2); }

/* Stato aperto -> X */
.hamburger.is-open .hamburger__lines::before {
  top: calc(var(--line-gap));
  transform: rotate(45deg);
}
.hamburger.is-open .hamburger__lines::after {
  top: calc(var(--line-gap));
  transform: rotate(-45deg);
}

/* Menu (esempio) */
.mobile-menu {
  position: fixed;
  inset: 72px 16px auto 16px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}

.mobile-menu a {
  display: block;
  padding: 12px 10px;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
}

.mobile-menu a:hover { background: rgba(0,0,0,.05); }

button.hamburger {
    position: fixed;
    right: 20px;
    top: 12px;
}

/* Riduci motion */
@media (prefers-reduced-motion: reduce) {
  .hamburger, .hamburger__lines::before, .hamburger__lines::after {
    transition: none !important;
  }
}





/* ELEMENTS */
.label {
    border-radius: 40px;
    background: rgba(19, 99, 184, 0.05);
    display: flex;
    padding: 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: #0F4987;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    width: max-content;
    margin: 0 auto;
}
.cta{
    background: var(--gradient);
    display: flex;
    padding: 16px 32px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%; /* 20px */
    text-decoration: none;
    border-radius: 8px;
    width: max-content;
}
.sezione{
    position: relative;
    padding: 144px 0px;
}
.titleSection{
    color: #000F7F;
    text-align: center;
    font-size: 64px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%; /* 64px */
    margin: 0px;
}
.contHeroSection {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 90%;
    margin: 0 auto;
    align-items: center;
    margin-bottom: 72px;
}
.contHeroSection h2 span{
  background: var(--gradient);
  -webkit-background-clip: text; /* Safari / Chrome */
  background-clip: text;
  -webkit-text-fill-color: transparent; /* Safari */
  color: transparent; /* fallback */

}
/* END */



/* HERO */
.hero{
    margin-top: 220px;
    text-align: center;
    position: relative;

}
.titlePage{
    color: #000F7F;
    text-align: center;
    font-size: 80px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%; /* 80px */
    margin: 0px;
}
.titlePage span {
  background: var(--gradient);
  -webkit-background-clip: text; /* Safari / Chrome */
  background-clip: text;
  -webkit-text-fill-color: transparent; /* Safari */
  color: transparent; /* fallback */
}
.testo p, p{
    color: #0F4987;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 28.8px */
}
.contHero {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 70%;
    margin: 0 auto;
    align-items: center;
    margin-bottom: 72px;
}
.contImgHero {
    position: relative;
}
img.imgHero1 {
    width: 90%;
    margin: 0 auto;
}
img.imgHero2 {
    position: absolute;
    bottom: 60px;
    z-index: 2;
    left: 0;
}
img.imgHero3 {
    position: absolute;
    bottom: -90px;
    right: calc(40% - 337px);
}
img.imgHero4 {
    position: absolute;
    right: 0px;
    top: 100px;
}
.shapeHero1 {
    position: absolute;
    top: -280px;
    left: 0;
    z-index: -1;
}
.shapeHero2{
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}
/* END */



/* SEZIONE 2 */
.sezione.sezione2 h2{
    background: var(--gradient);
    -webkit-background-clip: text; /* Safari / Chrome */
    background-clip: text;
    -webkit-text-fill-color: transparent; /* Safari */
    color: transparent; /* fallback */
}
.card h3{
    color: #0F4987;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 25.2px */
    margin: 0px;
}
.card p{
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 19.2px */
    color: #0F4987;
    margin: 0px;
}
.cards{
    display: inline-flex;
    align-items: center;
    gap: 30px;
}
.card {
    display: flex;
    padding: 64px 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    border-radius: 16px;
    border: 1px solid rgba(0, 15, 127, 0.20);
    background: #FFF;
    box-shadow: 0 20px 48px 9px rgba(45, 54, 67, 0.08);
    position: relative;
    overflow: hidden;
}
img.shapecard {
    position: absolute;
    left: 0;
    top: -144px;
    width: 230px;
    z-index: 0;
}
.singleBullet p {
    margin: 0px;
    font-size: 18px;
}
.singleBullet img {
    height: 30px;
}
.imghalf{
    box-shadow: 0 47.194px 94.389px 18.878px rgba(45, 54, 67, 0.08);
}
/* END */




/* SEZIONE 3 */
.halfSezione h3{
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 48px */
    color: #000F7F;
    margin: 0px;
}
.halfSezione {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.bullet {
    display: flex;
    flex-direction: column;
}
.singleBullet {
    display: flex;
    align-items: center;
    align-content: center;
    gap: 16px;
}
.sezionesingola {
    display: flex;
    align-items: center;
    gap: 124px;
}
.halfSezione p {
    text-align: left;
}
.number {
    display: flex;
    width: 64px;
    height: 64px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    border-radius: 16px;
    background: #FFF;
    box-shadow: 0 20px 48px 9px rgba(45, 54, 67, 0.08);
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    background: linear-gradient(180deg, rgba(110, 10, 206, 0.12) 0%, #4941E5 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.sezioni {
    display: flex;
    flex-direction: column;
    gap: 160px;
}
p.number {
    margin: 0px;
}
.singleBullet p {
    margin: 0px;
}
.testoSezionesingola p{
    font-size: 18px;
}
.bullet {
    gap: 16px;
}
p.number {
    margin-bottom: 16px;
}
/* base */
.sezionesingola{
  display: flex;
}

/* dispari = normale (testo a sinistra, immagine a destra) */
.sezionesingola.is-normal{
  flex-direction: row;
}

/* pari = reverse (immagine a sinistra, testo a destra) */
.sezionesingola.is-reverse{
  flex-direction: row-reverse;
}

.sezione4 {
    position: relative;
}
.sezione4 .testo{
    width: 70%;
    margin: 0 auto;
}
.sezione4 .cards {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.sezione4 .card {
    width: calc(50% - 90px);
    padding: 32px;
    display: flex;
    align-items: flex-start;
}
.sezione4 p{
    text-align: left;
}
.back4{
    background: linear-gradient(180deg, rgba(19, 99, 184, 0.05) 0%, rgba(19, 99, 184, 0.00) 100%);
    height: 620px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: -1;
}
.testo p {
    text-align: center;
}
/* END */



/* PRICING */
.cardprice{
    display: flex;
    padding: 56px 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    flex: 1 0 0;
    border-radius: 16px;
    border: 1px solid rgba(0, 15, 127, 0.20);
    background: #FFF;
    box-shadow: 0 20px 48px 9px rgba(45, 54, 67, 0.08);
    position: relative;
}
.labelPricing {
    border-radius: 40px;
    background: linear-gradient(90deg, #000F7F 0%, #D8B2FD 100%), rgba(19, 99, 184, 0.05);
    display: flex;
    padding: 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    margin: 0px;
    position: absolute;
    top: -24px;
    width: 130px;
    left: calc(50% - 75px);
}
.titlePricing{
    color: #0F4987;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 28.8px */
}
.pricePricing{
    color: #0F4987;
    text-align: center;
    font-size: 56px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 67.2px */
    text-align: center;
}
.pricePricing span{
    font-size: 24px;
}
.pricePricing {
    display: flex;
}
.sezione5 .singleBullet{
    font: 16px;
}
.sezione5 .bulletPricing {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-radius: 16px;
    border: 1px solid rgba(0, 15, 127, 0.20);
    background: linear-gradient(180deg, rgba(19, 99, 184, 0.05) 0%, rgba(19, 99, 184, 0.00) 100%), #FFF;
    display: flex;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
}
h4.titlePricing {
    margin: 0px;
    text-align: center;
}
.pricing {
    display: flex;
    gap: 32px;
    width: 70%;
    margin: 0 auto;
}
.sezione5 .singleBullet p {
    font-size: 16px;
}
.sezione5 .singleBullet img {
    height: 28px;
}
a.cta.ctaPricing {
    width: calc(100% - 64px);
}
h4.titlePricing {
    margin: 0px;
    text-align: center;
    margin: 0 auto;
}
.pricePricing {
    display: flex;
    margin: 0 auto;
}
.cardCustom {
    border-radius: 16px;
    border: 5px solid #000F7F;
    background: #FFF;
    box-shadow: 0 20px 48px 9px rgba(45, 54, 67, 0.08);
}
.imghalf{
    width: 100%;
}
.sezioni {
    width: 80%;
    margin: 0 auto;
}
.testoPricing p {
    margin: 0px;
    font-size: 18px;
    text-align: center;
    width: 70%;
    margin: 0 auto;
}
.testoPricing {
    width: 100%;
}
.bulletPricing {
    margin: 24px 0px;
}
.halfSezione {
    width: 50%;
}
/* END */



.faq-item{
    border-radius: 16px;
    background: #FFF;
    box-shadow: 0 20px 48px 9px rgba(45, 54, 67, 0.08);
    padding: 32px;
}

.faq-question{
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  padding:16px 0;
  background:transparent;
  border:0;
  text-align:left;
  cursor:pointer;
}
.faq-question-text{
    color: #0F4987;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 28.8px */
}
.faq-icon{
  font-size:32px;
  line-height:1;
  color: #0F4987;
  transition:transform .25s ease;
}
.faq-accordion {
    width: 70%;
    margin: 0 auto;
}
.faq-answer{
  overflow:hidden;
  height:0;
  transition:height .25s ease;
}
.faq-item {
    margin-bottom: 24px;
}
.faq-item.is-open .faq-icon{transform:rotate(45deg);}

.faq-answer-inner{padding:0 0 16px 0;}
.faq-answer-inner{
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 24px */
    color: #0F4987;
}
.banner {
    display: inline-flex;
    padding: 120px 80px 120px 352px;
    align-items: center;
    gap: 46px;
    border-radius: 32px;
    background: #FFF;
    box-shadow: 0 20px 48px 9px rgba(45, 54, 67, 0.08);
    position: relative;
    overflow: hidden;
    width: 50%;
    margin: 0 auto;
    margin-bottom: 120px;
}
.banner img {
    position: absolute;
    left: 0;
    z-index: 1;
    top: 0;
    bottom: 0;
}
.contBanner{
    position: relative;
}
.titleBanner {
    color: #000F7F;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    margin: 0px;
    text-align: left;
}
.contBanner {
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    align-items: flex-start;
    gap: 24px;
}





/* FOOTER */
footer p {
    font-size: 16px;
    text-align: left;
}
.footerone img {
    height: 40px;
}
footer{
    padding: 48px 0px 70px 0px;
    background: linear-gradient(180deg, rgba(19, 99, 184, 0.05) 0%, rgba(19, 99, 184, 0.00) 100%);
}
a.cta2 {
    color: #0F4987;
    text-decoration: none;
    border: 1px solid #0F4987;
    padding: 12px 24px;
    margin-top: 8px;
    display: inline-block;
    border-radius: 8px;
    font-weight: 600;
}
footer h4 {
    color: #000F7F;
    margin-top: 0px;
    font-size: 16px;
}
.footerthree ul {
    padding: 0px;
    list-style: none;
}
.footerthree ul li a {
    color: #0F4987;
    text-decoration: none;
    margin-bottom: 8px;
    display: inline-block;
}
/* END FOOTER */



.sezione2 .card::after {
    content: "";
    position: absolute;
    left: -90px;
    height: 170px;
    width: 170px;
    top: -100px;
    background: rgba(110, 10, 206, 0.20);
    filter: blur(72px);
}


/* VARIE */
a#back-to-top {
    background: var(--gradient);
    font-size: 22px;
    color: #fff;
    text-decoration: none;
    height: 40px;
    width: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    display: flex;
    right: 16px;
    bottom: 16px;
    position: fixed;
    align-content: center;
}
/* END VARIE */


/* ANIMATION */
.cards {
  perspective: 900px;
}
.card {
  transform-style: preserve-3d;
  will-change: transform, opacity;
}
.card .shapecard {
  transform-origin: 50% 50%;
  will-change: transform, opacity, filter;
  pointer-events: none;
}
.sezionesingola .imghalf {
  display: block;
  width: 100%;
  height: auto;
  will-change: transform, opacity, clip-path;
}
.imgWrap {
  overflow: hidden;
  border-radius: 16px; /* stessa del round che usi nel clip */
}
.imgWrap .imghalf{
  display: block;
  width: 100%;
  height: auto;
  will-change: transform, opacity;
}
/* Necessario per il fallback stabile (niente clip-path) */
.sezionesingola .imgWrap,
.sezionesingola .halfSezione.imgWrap {
  overflow: hidden;
  border-radius: 16px;
}
.sezionesingola .imghalf {
  display: block;
  width: 100%;
  height: auto;
  will-change: transform, opacity;
}
.pricing .cardprice {
  will-change: transform, opacity;
  transform: translateZ(0);
}
.pricing {
  perspective: 900px;
}

.pricing .cardprice {
  transform-style: preserve-3d;
  will-change: transform;
}

.pricing .cardprice .ctaPricing {
  will-change: transform;
}
.faq-answer { overflow: hidden; }
.faq-icon { display: inline-block; will-change: transform; }
.faq-answer-inner { will-change: transform, opacity; }

.banner { will-change: transform, opacity; }
.banner .shapelogo { will-change: transform, opacity; }
.banner .cta { will-change: transform, opacity; }
/* END */





.popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.popup[hidden] {
  display: none;
}

.popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.popup-content {
    position: relative;
    max-width: 520px;
    margin: 10vh auto;
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    transform: translateY(20px);
    opacity: 0;
    transition: all .25s ease;
    border: 3px solid #000F7F;
}

.popup.is-open .popup-content {
  transform: translateY(0);
  opacity: 1;
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: 0;
  background: none;
  font-size: 24px;
  cursor: pointer; 
}
h2#popup-title {
    color: #000F7F;
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    margin: 0px;
}
h2#popup-title span {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
} 
label {
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    margin-bottom: 16px;
    display: inline-block;
    width: calc(100% - 16px);
}
.popup-content form p {
    text-align: left;
    margin: 0px;
}
.popup-content form {
    margin-top: 24px;
}
.popup-content form input, .popup-content form textarea {
    width: 100%;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #000F7F;
    font-family: "Elza Text", sans-serif;
    font-size: 16px;
    color: #000F80;
}
.wpcf7-not-valid-tip {
    color: #a41b1b !important;
    font-size: 14px !important;
    font-weight: normal !important;
    display: block !important;
    padding: 6px 17px !important;
    margin-top: 8px !important;
    width: max-content !important;
    border-radius: 48px !important;
    background: #fef1f1;
    border: 1px solid #dc3232;
    line-height: 100%;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner {
    background: var(--gradient);
    color: #fff;
    font-weight: 600;
    font-size: 23px;
    border: 1px solid #000F7F;;
}
textarea.wpcf7-form-control.wpcf7-textarea {
    height: 100px;
}
.wpcf7-response-output {
    background: #fff9e9;
    color: #b18000;
    padding: 8px;
    display: inline-block;
    border: 1px solid #b18000;
    border-radius: 24px;
}
.wpcf7 form.sent .wpcf7-response-output {
    background: #e5efe6;
    color: #097013;
}
.wpcf7-response-output {
    margin-top: 24px !important;
}


/* RESPONSIVE */

/* SMALL DESKTOP */
@media only screen and (min-width : 1025px) and (max-width : 1198px) {

}
/* IPAD */
@media (min-width: 768px) and (max-width: 1024px) {

}

/* IPAD LANDSCAPE */
@media (min-width: 768px) and (max-width: 1024px) and (orientation:landscape) {

}

/* IPAD PORTRAIT */
@media (min-width: 768px) and (max-width: 1024px) and (orientation:portrait){

}

/* SMARTPHONE */
@media only screen and (min-width: 320px) and (max-width: 812px) {
.contHero {
    width: 100%;
}
p.label {
    font-size: 16px;
    width: auto;
}
.titlePage {

    font-size: 40px;
}
.testo p, p {
    font-size: 20px;
}
img.shapeHero1 {
    width: 350px;
    left: -70px;
    top: -330px;
}
img.shapeHero2 {
    width: 400px;
}
img.imgHero1 {
    width: 100%;
    margin: 0 auto;
}
img.imgHero2 {
    width: 60%;
}
img.imgHero3 {
    width: 60%;
}
img.imgHero4 {
    width: 60%;
}
img.imgHero3 {
    position: absolute;
    bottom: -20px;
    right: calc(40% - 50px);
}
img.imgHero4 {
    position: absolute;
    right: 0px;
    top: 60px;
}
h2.titleSection {
    width: auto;
    font-size: 40px;
}
.testo {
    width: auto;
}
.cards {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    flex-direction: column;
}
.card {
    display: flex;
    padding: 40px 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    border-radius: 16px;
    border: 1px solid rgba(0, 15, 127, 0.20);
    background: #FFF;
    box-shadow: 0 20px 48px 9px rgba(45, 54, 67, 0.08);
    position: relative;
    overflow: hidden;
}
.card img {
    height: 50px;
}
.sezione {
    position: relative;
    padding: 72px 0px 0px;
}
.sezionesingola {
    display: flex;
    flex-direction: column !important;
}
.halfSezione {
    width: 100%;
}
.sezioni {
    width: 90%;
    margin: 0 auto;
}
.sezionesingola {
    gap: 32px;
}
.sezioni {
    display: flex;
    flex-direction: column;
    gap: 100px;
}
div#comeFunziona {
    padding-bottom: 100px;
}
.sezione4 .testo {
    width: 100%;
    margin: 0 auto;
}
.sezione4 .card {
    width: calc(100% - 90px);
    padding: 32px;
    display: flex;
    align-items: flex-start;
}
.sezione4 .card h3 {
    font-size: 22px;
}
.sezione4 .card img {
    margin: 0 auto;
}
.pricing {
    display: flex;
    gap: 32px;
    width: 100%;
    margin: 0 auto;
    flex-direction: column;
}
.faq-accordion {
    width: 100%;
    margin: 0 auto;
}
.faq-question-text {
    color: #0F4987;
    font-size: 19px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}
.faq-item {
    border-radius: 16px;
    background: #FFF;
    box-shadow: 0 20px 48px 9px rgba(45, 54, 67, 0.08);
    padding: 18px;
}
.faq-answer-inner {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    color: #0F4987;
}
.banner {
    display: flex;
    padding: 40px;
    align-items: center;
    gap: 46px;
    border-radius: 32px;
    background: #FFF;
    box-shadow: 0 20px 48px 9px rgba(45, 54, 67, 0.08);
    position: relative;
    overflow: hidden;
    width: 70%;
    margin: 0 auto;
    margin-bottom: 120px;
    flex-direction: column;
    margin-top: 120px;
}
.banner img {
    display: none;
}
.banner img {
    display: none;
}
.contBanner {
    width: 90%;
}
.contBanner a {
    width: auto;
    text-align: center;
    font-size: 16px;
}
.titleBanner {
    color: #000F7F;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    margin: 0px;
    text-align: center;
}
.pricePricing {
    font-size: 32px;
}
.sezione5 .singleBullet p {
    font-size: 14px;
    text-align: left;
    font-weight: 600;
}
.testoPricing p {
    margin: 0px;
    font-size: 16px;
    text-align: center;
    width: 100%;
    margin: 0 auto;
}
.titlePricing {
    font-size: 20px;
}
div#perchiè {
    padding-bottom: 72px;
}
.footerone, .footertwo, .footerthree {
    margin-bottom: 30px;
}
footer .col-md-1 {
    display: none;
}
.contMenu .menu-mainmenu-container {
    display: none;
}
.contButtonHeader{
    display: none;
}
.hero {
    margin-top: 150px;
}
header .contHeader {
    padding: 8px 0px;
}
#mobileMenu .ctaMobile.contButtonHeader {
    display: block !important;
}
#mobileMenu .ctaMobile.contButtonHeader {
    display: flex !important;
    flex-direction: row;
    width: 100%;
    gap: 8px;
}
#mobileMenu .ctaMobile.contButtonHeader a {
    width: 100%;
    color: #fff;
}
button.hamburger {
    display: block;
}
}
