/* © 2025 - WidderItalia.it */

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

:root {
  --font-corpo: "Lato", sans-serif;
  --section-background: #FFF;
  --bianco: #FFFFFF;
  --main: #6B84F5;
  --main-light: #D2D8F6;
  --blu: #001165;
  --grigio-chiaro: #DADADA;
  --grigio-medio: #8C8C8C;
  --nero: #2B2B2B;
}

.main-title {
  color: var(--main);
}

/*
.btn-main{
  background:var(--main);
  border-color:var(--main);
  color:var(--bianco);
}

.btn-main:hover {
  background:var(--main);
  border-color:var(--main);
  color:var(--bianco);
}

.cookie-banner {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  max-width: 350px;
  z-index: 1050;
  background: var(--bianco);
  color: var(--nero);
  border-radius: 1rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.cookie-banner a {
  color: var(--main);
  text-decoration: underline;
}

@media (max-width: 575px) {
  .cookie-banner {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
} */

.cookie-manager {
  display: none;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  max-width: 500px;
  z-index: 2000;
  background: #fff;
  color: #333;
  font-size: 0.75rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookie-manager.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.cookie-manager.closing {
  display: block;
  opacity: 0;
  transform: translateY(30px);
}

.cookie-manager .accordion-button::after {
  display: none !important;
}


@media (max-width: 575px) {
  .cookie-manager {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
}

.cookie-manager .badge {
  font-size: 0.8rem;
  padding: 0.4em 0.6em;
}

.cookie-manager .btn-primary {
  background-color: var(--main);
  border-color: var(--main);
  color: var(--bianco);
}

.cookie-manager .btn-primary:hover {
  background-color: var(--main);
}

.cookie-manager .btn-secondary {
    background-color: #eaedf0;
    color: #333;
    border: none !important;
}

.accordion-button::after {
  margin-left: 1rem !important;
}


*, *:before, *:after {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-box-sizing: border-box !important;
  -moz-box-sizing: border-box !important;
  -ms-box-sizing: border-box !important;
  box-sizing: border-box !important;
  margin: 0;
  padding: 0;
  font-family: var(--font-corpo)!important;
}

*:focus-visible {
    outline: none;
}

html {
  font-family: var(--font-corpo)!important;
  font-size: 16px;
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 100px;
}

article [id] {
  scroll-margin-top: 130px;
}

body {
  background: var(--section-background) !important;
  margin: 0;
}

a {
  text-decoration: none !important;
  cursor: pointer !important;
}

a:hover {
  cursor: pointer !important;
}

button {
  cursor: pointer !important;
}

header {
  width: 100%;
  height: 100px;
  position: sticky;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  z-index: 999;
  background: #fff;
  box-shadow: 0 0 20px rgba(0,0,0,.2);
}
header .header-content {
  width: 100%;
  padding: 0 4rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1440px) {
  header .header-content {
    padding: 0 1rem;
  }
}
header .header-content .logo {
  display: inline;
  height: 50px;
}
header .header-action {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
}
header .nav {
  align-self: stretch;
  margin: 20px;
  height: 80px;
  padding: 10px 40px;
  background: rgba(255, 255, 255, 1);
  box-shadow: 15px 30px 120px rgba(0, 0, 0, 0.35);
  border-radius: 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  display: inline-flex;
}
header .demo {
  height: auto;
  padding: 1rem 2rem;
  border-radius: 10rem;
  justify-content: center;
  align-items: center;
  gap: 10px;
  display: inline-flex;
  background: transparent;
  color: #ffffff;
  background: #6B84F5;
  font-size: 18px;
  font-weight: 500;
  transition: .3s;
}

header .nav-item {
  color: #2b2b2b;
  font-size: 18px;
  font-weight: 500;
}
header .nav-item:hover, header .nav-item:active {
  text-decoration: underline !important;
}
header .active {
  font-weight: 600;
}
header #menu-toggle-open {
  display: none;
  vertical-align: middle;
  padding: 8px;
}
.offcanvas-custom {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100%;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  z-index: 1000;
  display: inline-flex;
  justify-content: flex-end;
}
.offcanvas-custom a {
  color: #FFF;
}
.offcanvas-custom .content {
  width: 100vw;
  padding: 40px 20px;
  height: 100%;
  background: rgb(25 25 112);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
.offcanvas-custom .overlay {
  background: rgb(0 0 0 / 0.2);
  opacity: 0;
  width: 100vw;
  height: 100%;
  position: fixed;
  right: 0;
  visibility: hidden;
  z-index: 1;
  transition: .3s;
  transition-delay: .3s;
  cursor: pointer;
}
.offcanvas-custom a.close-x {
  position: absolute;
  height: 28px;
  top: 48px;
  right: 40px;
}
.offcanvas-custom ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  gap: 20px;
  display: flex;
  flex-direction: column;
}
.offcanvas-custom ul li a {
  display: block;
  text-decoration: none;
}
.offcanvas-custom.show {
  transform: translateX(0);
}

.offcanvas-custom.closing {
  transform: translateX(100%);
}

.offcanvas-custom .overlay {
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  width: 100vw;
  height: 100%;
  position: fixed;
  right: 0;
  visibility: hidden;
  z-index: 1;
  transition: opacity 0.3s ease-in-out;
  cursor: pointer;
}

.offcanvas-custom.show .overlay {
  visibility: visible;
  opacity: 1;
}

section.top {
  background: #dadde1;
  padding: 20px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  min-height: 160px;
  border-bottom: 1px solid var(--grigio-chiaro);
  max-width: 100%;
}

.top h1 {
  font-size: 3.5rem;
  font-weight: 500;
}

section#chi-siamo {
  padding: 5rem 1rem;
}

section#chi-siamo h2 {
  font-size: 4rem;
  line-height: 1.25;
  font-weight: 600;
}

section#chi-siamo .team {
  display: grid;
  grid-template-columns: .5fr 1fr 1fr .5fr;
  row-gap: 2rem;
  column-gap: 0;
  font-size: 1.25rem;
  margin: 2rem 0;
}

section#chi-siamo p {
  font-size: 1.25rem !important;
}

section#chi-siamo p:last-child {
  margin-bottom: 0;
}

.team-single {
  padding: 0 0 2rem;
}

.team-single img {
  width: 100%;
  border-bottom: 1px solid #DEDEDE;
  margin-bottom: 1rem;
}

.team-single h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

.team-single span {
  font-size: 1rem;
  font-weight: 400;
}

section#socialstream {
  background: linear-gradient(180deg, #000000BF 80%, #000000 100%), url("../img/motherboard.webp") black 100% / cover no-repeat;
  color: var(--bianco) !important;
}

section#socialstream .container {
  gap: 4rem;
  padding: 6rem 1rem;
}

section#socialstream .container .devices {
  gap: 2rem;
}

section#socialstream .container .devices div {
  padding: 1rem;
  border-radius: 1rem;
  border: 2px solid var(--bianco);
  width: 10rem;
  height: 10rem;
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
  font-size: 1.25rem;
}

section#socialstream .container .devices div img {
  height: 75px;
  width: 100%;
  object-fit: contain;
}

section#socialstream .container img.logo {
  max-width: 600px;
  width: 80%;
  margin: auto;
}

section#socialstream .container .quote .text {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 600;
  font-style: italic;
}

section#socialstream .container .quote .author {
  font-size: 1.5rem;
  line-height: 2.5;
  font-weight: 500;
}

section#socialstream .container .features {
  row-gap: 4rem;
}

section#socialstream .container .features .single-feature {
  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: 600;
  text-transform: uppercase;
}

section#socialstream .container .features .single-feature img {
  margin-bottom: 1rem;
}

section.clienti {
  background: var(--section-background);
  padding: 5rem 0 1rem;
  max-width: 100%;
  font-size: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

section.clienti .title {
  font-size: 4rem;
  line-height: 1.25;
  font-weight: 600;
  margin-bottom: 3rem;
}

.content-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

section.clienti div.single {
  width: auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

section.clienti div.single img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border-radius: 3px;
}

section.clienti div.single .content {
  max-width: 100%;
  padding-left: 8px;
  padding-right: 8px;
  padding-bottom: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5%;
}

.single {
  background: var(--section-background);
  border-radius: 8px;
}

section.clienti .content-container a {
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  color: var(--main);
  border: 1.5px solid transparent;
  background: var(--section-background);
  border-radius: 16px;
  overflow: hidden;
}

section.clienti .content-container .site-card {
  transition: .2s linear;
  padding: 1rem;
  height: auto;
}

section.clienti .content-container .site-card:hover {
  transition: .2s linear;
}

section.clienti .content-container button {
  padding: 12px 24px;
  width: 100%;
  border-radius: 5px;
  border: none;
  color: var(--nero);
  background: var(--grigio-chiaro);
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer !important;
  transition: .2s linear;
}

section.clienti .content-container .site-card:hover button {
  background: var(--main);
  color: var(--bianco);
  transition: .2s linear;
}

section.clienti .site-card .content .logo img.logo {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 30px;
}

section.clienti .site-card .data {
  padding-bottom: 0 !important;
  padding-top: 8px;
  height: 100%;
  justify-content: center;
}

.scopri-socialstream {
  padding: 1.5rem;
}

.top {
  position: relative;
  overflow: hidden;
}

.details .address {
  font-size: 1rem;
  font-style: italic;
  font-weight: 400;
  color: var(--grigio-medio);
}

.details .website {
  font-size: 1rem;
  font-weight: 500;
  color: var(--main);
  text-decoration: underline;
  margin-top: .25rem;
}

button.clienti {
  padding: 12px 24px;
  width: 100%;
  border-radius: 5px !important;
  border: none;
  color: var(--nero);
  background: var(--grigio-chiaro);
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer !important;
  transition: .2s linear;
}

button.clienti:hover {
  background: var(--main);
  color: var(--bianco);
  transition: .2s linear;
}

.cta {
  align-items: center;
  background: hsla(0, 0%, 100%, .94);
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  opacity: 0;
  transition: opacity .1s linear;
  flex-direction: column;
  gap: 20px;
}

.cta:hover {
  opacity: 1;
  transition: opacity .2s ease-in-out;
}

.cta span {
  font-size: 1.25rem;
  font-weight: 600;
}

ul.breadcrumb {
  padding-top: 10px;
  list-style: none;
}

ul.breadcrumb li {
  display: inline;
  font-size: 1rem;
}

ul.breadcrumb li+li:before {
  padding: 8px;
  color: black;
  content: "/\00a0";
}

ul.breadcrumb li a {
  color: var(--nero);
  opacity: 80%;
  text-decoration: none;
}

ul.breadcrumb li a:hover {
  opacity: 100%;
  text-decoration: underline;
}

.h100nav {
  height: calc(100vh - 100px);
  height: calc(100dvh - 100px);
}

.hero {
  background: linear-gradient(230deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 1) 90%), url("../img/socialstream-technology.webp") lightgray 50% / cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
  border-bottom: 1px solid var(--grigio-chiaro);
}

.hero-content {
  width: 100%;
  min-height: 600px;
  height: calc(100vh - 100px);
  padding: 120px 64px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  align-content: center;
  gap: 48px;
}

.hero h1 {
  color: #FFF;
  font-size: 5rem;
  line-height: 1.25;
  font-weight: 600;
}

.hero .sub-title {
  color: #FFF;
  font-size: 3.5rem;
  line-height: 1.25;
  font-weight: 400;
}

.hero img.socialstream {
  max-width: 600px;
}

.hero button {
  padding: .75rem 2rem;
  border-radius: 5rem;
  background: var(--main);
  color: var(--bianco);
  border: none;
  font-size: 1.25rem;

span.subtitle {
  font-size: 1.5rem;
  color: #FFF;
}

.dettagli {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 16px;
  gap: 12px;
}

.text {
  align-items: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.name {
  font-size: 1.5rem;
  color: var(--nero);
  font-weight: 600;
  display: inline-block;
}

.name.single-theme {
  font-size: 1.75rem;
}

.grey {
  color: var(--grigio-medio);
}

.theme {
  font-size: 1rem;
}

.price {
  font-size: 1.25rem;
  color: #333333;
}

.price b {
  color: var(--main);
  font-size: 1.3rem;
}

.pack{
  color: var(--grigio-medio);
  font-weight: 400;
}

.button-right {
  align-items: right;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.button-right .buy {
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer !important;
  transition: .1s linear;
  color: var(--bianco);
  background: var(--main);
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.button-right .openModal {
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer !important;
  transition: .1s linear;
  color: var(--main);
  background: var(--section-background);
  display: flex;
  justify-content: center;
  gap: 8px;
  width: 29.8%;
}

.button-right .openModal:hover {
  background: var(--main);
  color: var(--bianco);
  transition: .1s linear;
}

.top:hover {
  cursor: pointer;
}

.modalWrapper {
  display: none;
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  margin-top: 0;
  padding: 0;
  align-content: center;
}

.modal {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  border-bottom: 0px solid var(--grigio-medio);
  height: 80px;
}
}

.modal-top {
  margin-right: 15px;
  gap: 8px;
  display: flex;
  flex-direction: row;
}

.modal-top a {
  text-decoration: none;
  color: var(--bianco)
}

.buy {
  font-size: 1rem;
  padding: 8px 20px;
  background: var(--main);
  border: none;
  border-radius: 4px;
  color: var(--bianco);
  font-weight: 600;
}

.modalContent {
  display: flex;
  flex-direction: column;
  top: 0;
  position: relative;
  margin: 0;
  width: 100dvw;
  height: 100dvh;
  background-color: white;
}

.closeModal {
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: calc(2.5vw - 12px);
  color: #fff;
  width: 20px;
  height: 20px;
  display: flex;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
}

.loader {
  border: 8px solid #f3f3f3;
  border-radius: 50%;
  border-top: 8px solid #6B84F5;
  width: 120px;
  height: 120px;
  position: absolute;
  top: calc(50% - 60px);
  left: calc(50% - 60px);
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.iframeContent {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}

.modalContent {
  position: relative;
}

.vertical-button {
  display: inline-flex;
  position: absolute;
  top: 17px;
  right: 50vw;
  transform: translateX(50%);
  padding: 16px 32px;
  border-radius: 16px;
  font-size: 18px;
  line-height: 20px;
  font-weight: 500;
  background-color: rgb(107 132 245 / 85%);
  border: 2px solid rgb(107 132 245);
  color: white;
  cursor: pointer;
  text-align: center;
  width: max-content;
  justify-content: center;
  z-index: 1;
}
span.only-desktop {
  display: contents;
}

.whatsapp-circle {
  width: 64px;
  height: 64px;
  background-color: #25D366; /* WhatsApp Green */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: fixed;
  bottom: 32px;
  right: 32px;
  text-decoration: none;
}

.whatsapp-circle svg {
  fill: #fff;
  width: 50%;
}

.modal {
  height: 100vh !important;
}

@media (max-width: 1024px) {
  .hero {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 1) 60%), url("../img/socialstream-technology-tablet-mobile.webp") lightgray top center / cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    border-bottom: 1px solid var(--grigio-chiaro);
  }

  .hero-content {
    width: 100%;
    min-height: auto;
    height: auto;
    padding: 50vw 2rem 6rem !important;
  }

  .hero-content h1 {
    text-align: center !important;
    font-size: 8vw;
    text-shadow: 0 0 12px black;
  }

  .hero .sub-title {
    font-size: 7vw;
    text-align: center !important;
  }

  .hero img.socialstream {
    width: 80vw;
  }

  .hero-content div {
    align-content: center !important;
    align-items: center !important;
  }
}

@media (max-width: 991px) {
  .vertical-button {
    right: calc(1.5rem * .5);
    width: 100px;
    top: 20px;
    background-color: rgb(107 132 245);
    padding: 13px;
    transform: none;
    border-radius: 12px;
  }
  span.only-desktop {
    display: none;
  }
}

.logo img {
  width: 100px;
  height: auto;
}

.info {
  text-align: left;
}

.info p {
  margin: 5px 0;
}

section#contatti h1 {
  font-size: 4rem;
  line-height: 1.25;
  font-weight: 600;
}

section#contatti h2 {
  font-size: 2rem;
  line-height: 1.25;
  font-weight: 400;
  color: var(--main);
}

section#contatti .icona-social {
  width: 4rem;
  height: 4rem;
  border-radius: 5rem;
  text-align: center;
  color: var(--main) !important;
  border: 1px solid var(--main);
  display: flex;
  justify-content: center;
  align-items: center;
}

section#contatti .icona-social a {
  color: var(--main) !important;
}

i.contact-icon {
  border-radius: 5rem;
  width: 8rem;
  height: 8rem;
  aspect-ratio: 1/1;
  text-align: center;
  font-size: 4rem;
  background: var(--main);
  color: var(--bianco);
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-prontoeasy-contact {
  color: var(--main)!important;
  background-color: transparent !important;
  border: 1px solid var(--main)!important;
  padding: 0.5rem 1.5rem !important;
  font-size: 1rem !important;
  border-radius: 5rem !important;
  font-weight: 600 !important;
  transition: .3s;
}

.btn-prontoeasy-contact:hover {
  color: var(--bianco)!important;
  background-color: var(--main) !important;
  transition: .3s;
}

section#faq, section#faq-page {
  color: var(--nero);
}

section#faq h2, section#faq-page h1 {
  font-size: 4rem;
  line-height: 1.25;
  font-weight: 600;
}

h1.h1-title {
  font-size: 4rem;
  line-height: 1.25;
  font-weight: 600;
}

.faq-accordion {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  padding: 1rem 2rem;
  cursor: pointer;
  background: #eaedfb;
  border-radius: 1rem;
  font-size: 1rem;
}

.faq-question {
  font-weight: 500;
  position: relative;
  font-size: 1.375rem;
  padding-right: 1.5rem;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 700;
  font-size: 1.5rem;
}

.faq-item.active .faq-question::after {
  content: '−';
}

.faq-item.active .faq-question {
  font-weight: 700;
}

.faq-answer {
  display: none;
  margin-top: 1rem;
}

.faq-item.active .faq-answer {
  display: block;
}


section#report .report-content {
  background: var(--main-light);
}

section#report .content {
  gap: 2rem;
}

section#report .content img.logo {
  max-width: 200px;
}

section#report .content h2 {
  font-size: 2.75rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--blu);
}

section#report .content button {
  padding: .75rem 2rem;
  border-radius: 5rem;
  background: var(--main);
  color: var(--bianco);
  border: none;
  font-size: 1.125rem;
}

section#report .image {
  position: relative;
  max-height: 640px;
}

section#report .image img {
  object-fit: contain;
}


section#prontoeasy {
  background: var(--main-light);
}

section#prontoeasy .content {
  gap: 2rem;
}

section#prontoeasy .content img.logo {
  max-width: 200px;
}

section#prontoeasy .content h2 {
  font-size: 2.75rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--blu);
}

section#prontoeasy .content button {
  padding: .75rem 2rem;
  border-radius: 5rem;
  background: var(--main);
  color: var(--bianco);
  border: none;
  font-size: 1.125rem;
}

section#prontoeasy .image {
  position: relative;
}

section#prontoeasy img.socialstream-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  max-width: 200px;
  padding: .5rem;
  background: var(--bianco);
  border: 1px solid black;
  border-radius: .5rem;
}

section#la-nostra-formula {
  padding: 4rem 1rem;
  gap: 2rem;
}

section#la-nostra-formula .first {
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

section#la-nostra-formula .first img {
  width: 300px;
  max-width: 80%;
}

section#la-nostra-formula .first .bookmark-icon {
  height: 4rem;
  fill: var(--main);
}

section#la-nostra-formula .first h2 {
  font-size: 3rem;
  font-style: italic;
  font-weight: 500;
}

section#la-nostra-formula .arrow-down {
  height: 3rem;
  fill: var(--main);
}

section#la-nostra-formula .formula {
  display: flex;
  flex-direction: row;
  align-content: center;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

section#la-nostra-formula .formula span.divider {
  font-size: 5rem;
  font-weight: 700;
  color: var(--main);
}

section#la-nostra-formula .formula img.image-formula {
  width: 30%;
}

/*section#la-nostra-formula .formula .stats .perc20 {
  font-size: 6rem;
  line-height: 1;
  font-weight: 600;
  color: var(--main);
} */

section#la-nostra-formula .chart-clienti {
  width: 70%;
  margin: auto;
}

section#la-nostra-formula .formula .stats .nuovi-clienti {
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 600;
}

section#la-nostra-formula .formula .stats button.consulenza {
  margin-top: 2rem;
  padding: .75rem 2rem;
  width: 100%;
  border-radius: 1rem;
  border: none;
  color: var(--bianco);
  background: var(--main);
  font-weight: 500;
  font-size: 1.3rem;
  cursor: pointer !important;
  transition: .2s linear;
}

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

  section#la-nostra-formula .formula .stats .perc20 {
    font-size: 4.5rem;
  }

  section#la-nostra-formula .formula .stats .nuovi-clienti {
    font-size: 1.75rem;
  }

  section#la-nostra-formula .formula .stats button.consulenza {
    padding: .5rem 1rem;
    font-size: 1rem;
  }

}

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

  section#la-nostra-formula .formula {
    flex-direction: column;
    gap: 1rem;
    max-width: 575px
  }

  section#la-nostra-formula .formula img.image-formula {
    width: 100%;
  }

  section#la-nostra-formula .formula .stats .perc20 {
    font-size: 8rem;
  }

  section#la-nostra-formula .formula .stats .nuovi-clienti {
    font-size: 4rem;
  }

  section#la-nostra-formula .formula .stats button.consulenza {
    margin-top: 1rem;
    padding: 2vw 5vw;
    font-size: 1.5rem;
  }

  section#la-nostra-formula .first h2 {
    font-size: 3.5rem;
  }

  #report button.consulenza {
    width: calc(100vw - 8rem);
  }


}

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

  section#la-nostra-formula .formula .stats .perc20 {
    font-size: 15vw;
  }

  section#la-nostra-formula .formula .stats .nuovi-clienti {
    font-size: 8vw;
  }

  section#la-nostra-formula .formula .stats button.consulenza {
    margin-top: 1rem;
    padding: 2vw 5vw;
    font-size: 4vw;
  }

  section#la-nostra-formula .first h2 {
    font-size: 2.875rem;
  }

  #report button.consulenza {
    width: calc(100vw - 4rem);
    font-size: 4.125vw !important;
  }

}

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

  section#la-nostra-formula .formula .stats .perc20 {
    font-size: 25vw;
  }

  section#la-nostra-formula .formula .stats .nuovi-clienti {
    font-size: 9vw;
  }

  section#la-nostra-formula .formula .stats button.consulenza {
    margin-top: 1rem;
    padding: 3vw 6vw;
    font-size: 4.75vw;
  }

  section#la-nostra-formula .first h2 {
    font-size: 8vw;
  }

}

section#ilpostogiusto {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.75) 100%), url("../img/ilpostogiusto-bg.webp") lightgray center center / cover no-repeat;
  min-height: calc(100vh - 100px);
  padding: 5rem 1rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  color: var(--bianco) !important;
}

section#ilpostogiusto .logo-port {
  position: absolute;
  top: 2rem;
  left: 2rem;
  display: block;
}

section#ilpostogiusto .logo-land {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60vw;
  display: none;
}

section#ilpostogiusto div {
  gap: 1rem;
  width: 100%;
}

section#ilpostogiusto h2.ilpostogiusto {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0 !important;
}

section#ilpostogiusto span {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
}

section#ilpostogiusto button {
  background-color: transparent;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.5;
  border: 2px solid var(--bianco);
  border-radius: 5rem;
  padding: 0.75rem 2rem 0.75rem 2rem;
  color: var(--bianco) !important;
  margin-top: 1rem;
}

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

  section#ilpostogiusto .logo-port {
    display: none;
  }

  section#ilpostogiusto .logo-land {
    display: block;
  }

  section#ilpostogiusto a, section#ilpostogiusto a button {
    width: 100% !important;
  }

  section#ilpostogiusto a button {
    font-size: 1.25rem;
    padding: 0.5rem 1rem;
  }

  section#ilpostogiusto h2.ilpostogiusto {
    font-size: 11vw;
  }

  section#ilpostogiusto span {
    font-size: 1.3rem;
  }

}

.smm {
  padding: 2rem;
  box-shadow: 0 0 2rem rgba(0, 0, 0, .1);
}

.smm-bg {
  background: var(--main-light);
}


@media (max-width: 767px) {
  .smm .smm-cta, .smm .smm-cta .btn-prontoeasy {
    width: 100%;
  }
}

footer {
  background: #2b2b2b;
  padding: 4rem 1rem;
  color: var(--bianco) !important;
  position: relative;
}

.smm-box {
  z-index: 99;
  width: 100%;
  min-height: 120px;
  height: 100%;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  /* position: absolute;
  top: -2.5rem;
  left: 50%;
  transform: translateX(-50%); */
  background: var(--bianco);
  background: linear-gradient(90deg,rgba(255, 255, 255, 1) 0%, rgba(210, 216, 246, 1) 100%);
  color: var(--nero);
  border-radius: 1rem;
  box-shadow: 0 .125rem 2rem rgba(0,0,0,.1);
}

#marchio-socialstream p {
  font-size: 0.875rem;
}

img.marchio-registrato {
  width: 150px;
  height: 120px;
  object-fit: contain;
}


@media (max-width: 991.98px) {
  img.marchio-registrato {
    width: 200px;
    height: auto;
    padding: 2rem 0;
  }
}

footer .content {
  max-width: 1320px;
  margin: auto;
}

footer .content .loghi {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2rem;
  padding-bottom: 3rem;
}

footer .content .loghi a {
  display: flex;
}

footer .content .loghi img {
  width: 150px;
  object-fit: contain;
}

footer .content .legal {
  gap: 1rem;
}

footer .content .legal .logo-widder {
  width: 200px;
}

footer .content .numero-verde {
  width: 200px;
  max-width: 40vw;
  object-fit: contain;
}

footer .legal p {
  margin-bottom: 0;
}

footer .legal a {
  color: var(--bianco);
  text-decoration: underline !important;
}

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

  footer .content .legal .logo-widder {
    width: 50%;
  }

}

@media (max-width: 1100px) {
  header .nav-item {
      font-size: 1rem;
  }
  
  header .demo {
    font-size: 1rem;
  }
}

@media only screen and (min-width: 993px) and (max-width: 1200px) {
  section.clienti {
    grid-template-columns: 1fr 1fr 1fr;
  }
  section#chi-siamo .team {
    grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (min-width: 601px) and (max-width: 1024px) {
  .dtop {
    display: none !important;
  }

  #menu-toggle-open {
    display: block !important;
  }

  section.clienti .content-container {
    grid-template-columns: 1fr 1fr;
    padding: 0px 20px 80px 20px;
    gap: 20px;
  }

  section#chi-siamo .team {
    grid-template-columns: 1fr;
  }

  section#chi-siamo .team .team-single img {
    height: 400px !important;
    object-fit: contain;
    margin: auto;
  }

  .menu, .start {
    display:none;
  }

  .navbar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 100%;
    align-items: center;
  }

  .hamburger-menu {
    display: block;
  }

  .sidebar {
    width: 400px;
  }

  section.clienti div.single .content{
    width: 100%;
    height: 100%;
    padding: 16px 8px;
  }

  section.clienti div.single img{
    height: 80%;
    aspect-ratio: auto;
  }

  div .content{
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .dettagli {
    align-items: center;
  }

  .text {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
  }

  .content .site-card {
    padding-top: 6%;
  }

  .name {
    font-size: 1.5rem;
  }

  .content button {
    color: var(--bianco);
    background-color: var(--main);
  }

  .content button:hover {
    color: var(--bianco);
    background-color: var(--main);
  }

  .button-right {
    display: flex;
    flex-direction: row;
    gap: 8px;
    width: 75%;
    gap: 8px;
    width: 100%;
    flex-wrap: nowrap;
  }

  .button-right .openModal {
    width: 44%;
  }

  .button-right .openModal:hover {
    background: var(--section-background);
    color: var(--main);
    transition: .1s linear;
  }

  .content .site-card:hover {
    transform: translateY(0px);
    transition: .0s ease-in-out;
    box-shadow: 0 0px 0px rgb(0 0 0 / 0%);
  }

  section.clienti .site-card button {
    background: var(--main);
    color: var(--bianco);
    transition: .1s linear;
  }

  ul.breadcrumb li a {
    color: var(--main);
    opacity: 80%;
    text-decoration: none;
  }

  ul.breadcrumb li a:hover {
    opacity: 100%;
    text-decoration: none;
  }
}



@media only screen and (max-width: 992px) {
  .footer-row {
    flex-direction: column !important;
  }
  .footer-row .divider {
    display: none;
  }
}


@media only screen and (max-width: 767px) {
  section#socialstream .container .quote .text {
    font-size: 4.5vw;
  }
  section#socialstream .container .quote .author {
    font-size: 3vw;
  }
  section.clienti .content-container {
    grid-template-columns: 1fr !important;
  }
}


@media screen and (max-width: 600px) {
  .dtop {
    display: none !important;
  }

  #menu-toggle-open {
    display: block !important;
  }

  .menu, .start {
    display:none;
  }

  .navbar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 100%;
    align-items: center;
  }

  .hamburger-menu {
    display: block;
  }

  .sidebar {
    right: -400px;
    width: 400px;
  }

  section.clienti div.single .content{
    width: 100%;
    height: 50%;
    padding: 16px 8px;
  }

  section.clienti div.single img{
    height: 80%;
    aspect-ratio: auto;
  }

  section.clienti .content-container {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 5vw;
  }

  .scopri-socialstream {
    padding: 0 !important;
  }

  section#chi-siamo .team {
    grid-template-columns: 1fr;
  }

  section#chi-siamo .team .team-single img {
    height: 300px !important;
    object-fit: contain;
  }

  .team-single h3 {
    font-size: 6vw;
    margin-bottom: 1vw;
  }

  .team-single span {
    font-size: 4vw;
  }

  section#chi-siamo h2 {
    font-size: 9vw;
  }

  section#faq h2, section#faq-page h1 {
    font-size: 9vw;
  }

  section#contatti h1 {
    font-size: 9vw;
  }

  h1.h1-title {
    font-size: 12vw;
  }

  .faq-item {
    padding: 1rem 1.125rem;
  }

  .faq-question {
    font-size: 1.125rem;
  }

  section.clienti .title {
    font-size: 9vw;
    margin-bottom: 4vw;
  }

  section#chi-siamo p {
    font-size: 4vw !important;
  }

  section#prontoeasy .content h2 {
    font-size: 8vw;
  }

  section#prontoeasy .content button {
    font-size: 4.5vw;
  }

  section#prontoeasy .content {
    gap: 5vw;
  }

  section#report .content h2 {
    font-size: 6vw;
  }

  section#report .content button {
    font-size: 3.75vw;
  }

  section#report .content {
    gap: 5vw;
  }

  section#socialstream .container {
    gap: 10vw;
  }

  section#socialstream .container .devices {
    gap: 5vw;
  }

  section.clienti .content-container .site-card {
    padding: 0;
  }

  button.clienti {
    margin: 0;
    padding: 12px;
    font-size: 4.5vw;
    width: calc(100vw - 2rem);
  }

  section#socialstream .container .quote .text {
    font-size: 5.75vw;
  }

  section#socialstream .container .quote .author {
    font-size: 4vw;
  }

  section#socialstream .container .devices div {
    width: 30vw;
    height: 30vw;
    padding: 0;
    font-size: 3.75vw;
    border-radius: 4vw;
  }

  section#socialstream .container .devices div img {
    height: 15vw;
    width: 100%;
    object-fit: contain;
  }

  section#socialstream .container .features .single-feature {
    font-size: 6vw;
  }

  .hero-content {
    padding: 45vw 1rem 3rem !important;
  }

  .hero-content div {
    align-content: center !important;
    align-items: center !important;
  }

  .hero h1 {
    font-size: 8vw;
    text-align: center !important;
  }

  .hero .sub-title {
    font-size: 7vw;
    text-align: center !important;
  }

  .hero a {
    width: 100%;
  }

  .hero button {
    font-size: 4vw;
    width: 100%;
  }

  div .content{
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .dettagli {
    align-items: center;
  }

  .text {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
  }

  .content .site-card {
    padding-top: 6%;
  }

  .name {
    font-size: 1.5rem;
  }

  .content button {
    color: var(--bianco);
    background-color: var(--main);
  }

  .content button:hover {
    color: var(--bianco);
    background-color: var(--main);
  }

  .button-right {
    display: flex;
    flex-direction: row;
    gap: 8px;
    width: 75%;
    gap: 8px;
    width: 100%;
    flex-wrap: nowrap;
  }

  .button-right .openModal {
    width: 44%;
  }

  .button-right .openModal:hover {
    background: var(--section-background);
    color: var(--main);
    transition: .1s linear;
  }

  .content .site-card:hover {
    transform: translateY(0px);
    transition: .0s ease-in-out;
    box-shadow: 0 0px 0px rgb(0 0 0 / 0%);
  }

  section.clienti .site-card button {
    background: var(--main);
    color: var(--bianco);
    transition: .1s linear;
  }

  ul.breadcrumb li a {
    color: var(--main);
    opacity: 80%;
    text-decoration: none;
  }

  ul.breadcrumb li a:hover {
    opacity: 100%;
    text-decoration: none;
  }
}

/* Blog */
.blog-section {
  padding: 4rem 1rem;
}

.blog-section h1 {
  font-size: 4.5rem;
  line-height: 1.25;
  font-weight: 600;
}

section#blog a {
  color: inherit;
}

section.featured-section {
  background: #FAFAFA;
}

section.featured-section a {
  color: inherit;
}

.blog-featured img {
  width: 100%;
  aspect-ratio: 5/3;
  object-fit: cover;
  overflow: hidden;
}

.blog-post img {
  width: 100%;
  aspect-ratio: 5/3;
  object-fit: cover;
}

.article-img {
  border-radius: 1rem;
  overflow: hidden;
}

.blog-featured .article-img img {
  transition: .3s;
}

.blog-featured:hover .article-img img {
  transform: scale(1.05);
  transition: .3s;
}

.blog-post .article-img img {
  transition: .3s;
}

.blog-post:hover .article-img img {
  transform: scale(1.05);
  transition: .3s;
}

.blog-post h3 {
  font-size: 1.75rem;
  font-weight: 600;
}

.blog-post-date {
  font-size: 0.875rem;
  color: var(--grigio-medio);
}

.blog-post p {
  font-size: 1rem;
}

.image-wrapper {
  position: relative;
}

.meta-article {
  border-top: 1px solid var(--grigio-chiaro);
  border-bottom: 1px solid var(--grigio-chiaro);
}

.category-label {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgb(107 132 245 / 50%);
  color: var(--bianco);
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}


.category-label-page {
  background: var(--main);
  color: var(--bianco);
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-weight: 600;
}
.btn-prontoeasy {
  color: var(--main)!important;
  background-color: transparent !important;
  border: 1px solid var(--main)!important;
  padding: 0.5rem 1.5rem !important;
  font-size: 1rem !important;
  border-radius: 5rem !important;
  font-weight: 600 !important;
  transition: .3s;
}

.btn-prontoeasy:hover {
  color: var(--bianco)!important;
  background-color: var(--main) !important;
  transition: .3s;
}

.blog-featured:hover .btn-prontoeasy, .blog-post:hover .btn-prontoeasy {
  color: var(--bianco)!important;
  background-color: var(--main) !important;
  transition: .3s;
}

.smm .btn-prontoeasy {
  color: var(--bianco)!important;
  background-color: var(--main) !important;
  transition: .3s;
}

div.breadcrumb a {
  color: var(--nero) !important;
}

div.breadcrumb i {
  padding-left: .5rem;
  padding-right: .5rem;
}

.most-recent h2 {
  font-weight: 600;
}

section#blog h2 {
  font-size: 3rem;
  line-height: 1.25;
  font-weight: 600;
}

section.featured-section h2 {
  font-size: 3rem;
  line-height: 1.25;
  font-weight: 600;
}

.shadow-pe {
  box-shadow: 0 .125rem 1rem rgba(0, 0, 0, .1);
}

.card-header.header-indice {
  background: var(--main);
  color: var(--bianco);
  font-weight: 600;
  font-size: 1.25rem;
}

#collapseIndice ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}

#collapseIndice ul li {
  margin-bottom: 1rem;
}

#collapseIndice ul li:last-child {
  margin-bottom: 0!important;
}

#collapseIndice ul li a {
  color: var(--nero) !important;
  font-weight: 500;
}

.card-cta {
  background: var(--main-light) !important;
  color: var(--blu) !important;
}

.card-cta h3 {
  font-weight: 900 !important;
}

.card-cta p {
  font-weight: 600 !important;
}

.card-cta .btn-prontoeasy {
  color: var(--bianco)!important;
  background-color: var(--blu) !important;
  border-color: var(--blu) !important;
}

@media (min-width: 1200px) {
  .sticky-xl-top {
    top: 130px !important;
    z-index: 9 !important;
  }
}

@media screen and (max-width: 600px) {
  section#blog h2 {
    font-size: 8vw;
  }

  section.featured-section h2, .most-recent h2 {
    font-size: 9vw;
  }

  .blog-section h1 {
    text-align: center !important;
    font-size: 12vw;
  }

  .btn-prontoeasy {
    color: var(--bianco)!important;
    background-color: var(--main) !important;
    border: 1px solid var(--main)!important;
    padding: 0.5rem 1.5rem !important;
    font-size: 1rem !important;
    border-radius: 5rem !important;
    font-weight: 600 !important;
    transition: .3s;
  }
}
