/* ! custom variables */
:root {
  --black: #000;
  --color0: rgba(127,127,127,1);
  --color1: #A751BA;
  --color2: #F7B808;
  --color3: #51B77A;
  --color4: #0499E2;
  --padding-top: 300px;
  --padding-bottom: 130px;
}
/**/

/* ! fonts */
@font-face {
  font-family: 'Brittany';
  src: url('../../fonts/BrittanySignature.ttf') format('opentype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Supreme';
  src: url('../../fonts/Supreme-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Supreme';
  src: url('../../fonts/Supreme-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Supreme';
  src: url('../../fonts/Supreme-Extrabold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: 'Supreme';
  src: url('../../fonts/Supreme-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: 'Supreme';
  src: url('../../fonts/Supreme-MediumItalic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
}
/**/

/* ! generics */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: var(--black);
  line-height: 1.2em;
}
html {
  scroll-behavior: smooth;
}
html.no-smooth {
  scroll-behavior: auto !important;
}
#intro .paragraph p:first-child span.word:first-of-type,
.intro-online .paragraph p:first-child span.word:first-of-type,
.intro-identita .paragraph p:first-child span.word:first-of-type,
.intro-comunicazione .paragraph p:first-child span.word:first-of-type,
.intro-consulenza .paragraph p:first-child span.word:first-of-type
 {
  padding-left: 120px;
}
main {
  transition: 0.3s ease;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
li {
  list-style: none;
}
body {
  font-family: 'poppins', sans-serif;
  /* transition: background-color 0.5s ease; */
  overflow-x: hidden;
}
 body.scroll-locked {
  overflow: hidden;
  touch-action: none;
  padding-right: 0 !important; 
}
body.scroll-locked-2 {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
}
body.active-black {
  background-color: var(--black)!important;
}
.col-little-title {
  width: 25%;
}
.little-title {
  font-family: 'Supreme', sans-serif;
  font-weight: bold;
  font-size: 24px;
}
.little-title-span {
  width: 115px!important;
  display: block;
}
.paragraph, .paragraph p {
  font-weight: 300;
  font-size: 32px;
}
#team-mobile {
  display: none;
}

.pin-spacer .paragraph p {
  padding-bottom: 40px!important;
}
/**/

/* ! header */
.menu-mobile-exploded {
  height: 100vh;
  transform: translateY(-100vh);
  transition: 0.3s ease;
  position: fixed;
  z-index: 99;
  width: 100%;
  bottom: 0;
  top: 0;
  border: 1px solid rgba(0,0,0,0.2);
}
.menu-mobile-exploded.active {
  transform: translateY(0);
}
header {
  position: fixed;
  height: 72px;
  width: 100%;
  background-color: #fff;
  z-index: 100;
  transition: 0.5s ease;
}
header.blur, footer.blur {
  filter: blur(3px);
  pointer-events: none;
}
.header-container, .footer-container {
  margin: 0 auto;
  max-width: 1400px;
  padding-left: 20px;
  padding-right: 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo, .header-logo-white {
  max-width: 153px;
}
.menu-cs ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    transform: translateY(3px);
}
.menu-cs ul li a {
  font-family: 'Supreme', sans-serif;
  font-weight: 300;
  font-size: 24px;
}
a.contatti {
  font-weight: bold;
  font-size: 16px;
  transform: translateY(7px);
  
  display: flex;
}
.menu-mobile-cs {
  display: none;
}
/**/

/* ! Home */
.home-cs {
    height: 100vh;
    transition: 0.5s ease;
    display: flex;
    align-items: end;
    padding-bottom: 120px;
}
.home-cs.active-black {
  background-color: var(--black);
}
.main-title {
  max-width: 1100px;
  font-size: 48px;
  font-weight: bold;
}
.second-title {
  padding-top: 10px;
  padding-bottom: 70px;
  font-weight: 300;
  font-size: 32px;
}
.payoff {
  font-family: 'Brittany', sans-serif;
  font-size: 60px;
  font-weight: 400;
  padding-bottom: 80px;
}
/**/

/* ! intro */
.intro {
  margin-top: 50px;
  background-color: var(--black);
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.intro .little-title, .intro .paragraph p {
  padding-bottom: 10px;
  color: #fff;
}
.char {
  display: inline-block;
  color: #444;
  transition: color 0.3s ease;
}
.word {
  display: inline-block;
  white-space: nowrap;
}
#intro .word {
  margin-right: 0.25em;
}
.char {
  display: inline-block;
}
/**/

/* ! second text */
.second-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
}
.second-text .container {
  width: 100%;
  display: flex;
  flex-direction: row; /* o column se il titolo è sopra */
  justify-content: space-between;
  align-items: start;
}
.col-little-title {
  width: 25%;
}
.text-wrapper {
  position: relative;
  width: 75%; /* così combacia con .paragraph */
  min-height: 300px;
}
.paragraph.text1,
.paragraph.text2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.paragraph .line {
  display: flex;
  flex-wrap: wrap;
}
/**/

/* ! team */
.team {
  display: flex;
  align-items: center;
  padding-top: 70px;
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.team-container {
  min-height: 598px;
  max-width: 1232px;
  margin: 0 auto;
}
.team-container-slide {
  display: flex;
  gap: 58px;
  height: 598px;
  will-change: transform;

  /* aggiornamenti */
  width: calc(100vw * 2); /* 2 slide */
}
.slide-cs {
  /* width: 1232px; */
  width: 100vw;
	flex-shrink: 0;
  display: flex;
  gap:19px;
  position: relative;
}
.img-text-1, .img-text-2 {
  width: 238px;
  position: absolute;
}
.img-text-1 {
  top: -7%;
  left: -3%;
}
.img-text-2 {
  bottom: -50px;
  right: 0px;
}
.team-col-wrapper{
  display: flex;
  gap: 20px;
}
.team-col-1, .team-col-2, .team-col-3 {
  border-radius: 8px 0 8px 0;
  overflow: hidden;
}
.team-col-1 {
  /* flex-basis: 28%; */
  width: 350px;
  transition: 0.4s ease;
}
.team-col-2 {
  /* flex-basis: 37%; */
  width: 450px;
  transition: 0.4s ease;
}
.team-col-3-container {
  position: relative;
}
.team-col-3 {
  /* flex-basis: 31%; */
  width: 400px;
  padding-bottom: 60px;

  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  gap: 40px;
}
.team-name {
  font-size: 40px;
  font-weight: bold;
  padding-bottom: 20px;
}
.team-arrow {
  rotate: -90deg;
  cursor: pointer;
}
.team-socials-container {
  display: flex;
  gap: 15px;
}
.team-social {
  font-family: 'Supreme', sans-serif;
  font-size: 16px;
  font-weight: 500;
  font-style: italic;
}
a.team-social {
  transform: translateY(4px);
}
.team-plus {
  font-size: 20px;
  position: relative;
  top: 2px;
}
.ending-title-team {
  font-size: 48px;
  font-weight: bold;
  width: 100%;
  padding-top: 220px;
}
/*per accordion dentro team*/
.team-col-3 .text {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.4s ease, opacity 0.4s ease;
}
.team-col-3 .text.visible {
	max-height: 500px;
	opacity: 1;
  overflow: unset;
}
.team-arrow.rotated {
	transform: rotate(90deg);
	transition: transform 0.3s ease;
}
/* .team-col-3 .text {
  max-height: 100%;
  overflow-y: auto;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.team-col-3 .text.visible {
  opacity: 1;
} */
/**/

/* ! placeholder */
#placeholder {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/**/

/* ! online */
#online, .sipario-section {
  position: relative;
  background-color: white;
  overflow: hidden;
  height: 100vh;
}
.online-title {
  font-size: 200px;
  font-weight: 800;
  display: flex;
  flex-wrap: wrap;
  color: var(--black);
  transition: color 0.3s ease;
}
.online-subtitle {
  font-family: 'Brittany', sans-serif;
  font-size: 80px;
  font-weight: 300;
  position: relative;
  left: 450px;
  top: -20px;
  transition: color 0.3s ease;
}
.online-subtitle.comunicazione-subtitle {
  left: 850px;
}
.bg-black {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: black;
  transform: translateX(100%);
  z-index: 0;
}
.section-mask {
  position: relative;
  z-index: 2;
  color: black;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  height: 100vh;
}

.char {
  display: inline-block;
  position: relative;
  z-index: 3;
  transition: color 0.1s linear;
}


.gallery-cs-mobile {
  display: none;
}
.gallery-cs {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
}

.gallery-cs .container {
  transform: translateY(-140px);
  transition: 0.5s ease;
}
.gallery-cs .container.new-transform {
  transform: translateY(-20px);
}
.gallery-row {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.gallery-pic {
  overflow: hidden;
  border-radius: 0 20px 0 20px;
  width: 32.5%;
  display: flex;
  align-items: center;
}
.gallery-pic a {
  display: flex;
  justify-self: center;
  align-items: center;
  height: 100%;
  width: 100%;
  overflow: hidden;
  height: 195px;
}
.fancybox-slide--image .fancybox-content {
    background-color: transparent!important;
}

/**/

/* ! intro online e intro-identità e intro-consulenza */
.intro-online, .intro-identita, .intro-consulenza, .intro-comunicazione {
  background-color: var(--black);
  /* padding-top: 240px!important; */
  padding-top: 180px!important;
  z-index: 1!important;
  position: relative;
}
.intro-consulenza {
  padding-bottom: 120px;
  /* height: 130vh!important; */
}
#intro-comunicazione {
    box-sizing: content-box;
    /* padding-bottom: 0px!important; */
    z-index: 1;
    position: relative;
}
.intro-identita, .intro-comunicazione {
  background-color: #fff;
}
.intro-online .little-title {
  color: var(--color1);
}
.intro-identita .little-title {
  color: var(--color2);
}
.intro-comunicazione .little-title {
  color: var(--color3);
}
.intro-consulenza .little-title {
  color: var(--color4);
}
.intro-online p, .intro-online span, .intro-online .intro-online-cta,
.intro-consulenza p, .intro-consulenza span, .intro-consulenza .intro-online-cta {
  color: #fff;
}
.intro-online .container-online-intro-titles p, .intro-identita .container-online-intro-titles p {
  color: #838383;
}
.container-intro-accordion {
  display: flex;
  justify-content: space-between;
  padding-top: 120px;
}
.intro-title-accordion, .intro-accordion {
  flex-basis: 50%;
}
.intro-accordion-row-title {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
.intro-accordion-row-title span {
  font-family: 'Supreme', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.6em;
}
.intro-online .intro-arrow, .intro-consulenza .intro-arrow {
  filter: invert(1);
}
.intro-accordion-row-text p {
  padding-bottom: 18px;
  font-family: 'Supreme', sans-serif;
  font-weight: 300;
  font-size: 24px;
}
.intro-online-cta {
  font-family: 'Supreme', sans-serif;
  font-size: 24px;
  font-weight: 500;
  padding-top: 70px;
}
.text-action {
  font-family: 'Supreme', sans-serif;
  font-weight: 500;
  font-size: 24px;
  font-style: italic;
  line-height: 1.6em;
  text-decoration: none;
  color: #fff;
  position: relative;
  transition: 0.4s ease;
}
.text-action.n2, .text-action.n3 {
  color: var(--back);
}
.text-action:hover {
  color: var(--color1);
}
.text-action.n2:hover {
  color: var(--color2);
}
.text-action.n3:hover {
  color: var(--color3);
}
.text-action.n4:hover {
  color: var(--color4);
}
.text-action::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color1);
}
.text-action.n2::after {
  background-color: var(--color2);
}
.text-action.n3::after {
  background-color: var(--color3);
}
.text-action.n4::after {
  background-color: var(--color4);
}
/**/

/* ! identità */
#identita {
	background-color: black;
	color: white;
	position: relative;
	overflow: hidden;
}

#identita .bg-white {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	background-color: white;
	transform: translateX(100%);
	z-index: 1;
}

#identita .section-mask {
	position: relative;
	z-index: 2;
}



.container-intro-online-identity {
  display: flex;
  overflow: hidden;
  min-height: 100vh;
  position: relative;
}
.identity {
  width: 100vw;
  background-color: #fff;
  transition: 0.5s ease!important;
}
body.active-black .identity {
  background-color: var(--black);
}
.identity.active-white {
  background-color: #fff;
  transition: 0.5s ease!important;
}
.identity-title {
  color: var(--black);
  transition: 0.5s ease;
}
body.active-black .identity-title {
  color: #fff;
}
body.active-black .identity-img {
  filter: invert(1);
}
.active-white .identity-title {
  color: var(--black);
}
.active-white .identity-img {
  filter: invert(0);
}
.section-title  {
  font-size: 200px;
  font-weight: 800;
  /* padding-top: 1110px; */
  padding-top: 1220px;
  width: 100vw;
  text-align: center;
  transform: translateX(-259px);
}
/* .identity-img {
  filter: invert(1);
} */
.section-subtitle-img {
  max-width: 550px;
  margin: 0 auto;
  transform: translate(-464px,-50px);
}
.intro-identity .little-title, .identity-title-accordion {
  color: var(--color2);
}
.intro-identity {
  padding-top: var(--padding-top);
  padding-bottom: var(--padding-bottom);
  width: 100vw;
}
/**/

/* ! comunicazione */
#comunicazione {
  height: 100vh;
  display: flex;
  align-items: center;
  /* padding-top: 120px; */
}
.titles-container {
  position: relative;
  left: 100px;
}


.container-intro-identity-comunicazione{
  display: flex;
  overflow: hidden;
}
.section-title.comunicazione-title {
  transform: translateX(285px);
  padding-top: 1110px;
}
.section-subtitle-img.comunicazione-img {
  transform: translateX(716px);
}
.container-intro-comunicazione-consulenza{
  display: flex;
  overflow: hidden;
}
.intro-comunicazione {
  width: 100vw;
  /* padding-top: var(--padding-top); */
  /* padding-bottom: var(--padding-bottom); */
}
.intro-comunicazione .little-title {
  color: var(--color3);
}
.section-subtitle-img.consulenza-img {
  transform: translateX(-109px);
}
/**/

/* ! consulenza */
.consulenza-subtitle, .identita-subtitle {
  left: 0;
}
/**/

/* ! form */
.form-cs {
  padding-top: var(--padding-top);
  padding-bottom: var(--padding-bottom);
  transition: 0.5s ease;
}
.form-shortcode {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 125px;
    border: 1px solid#e3e3e3;
    border-radius: 25px 0 25px 0;
    box-shadow: 0 4px 20pxrgba(0, 0, 0, 0.1);
    position: fixed;
    z-index: 99;
    top: 100px;
    left: 50%;
    /* right: 0; */
    transform: translateX(-50%);
    /* margin-bottom: -480px; */
    background: #fff;
    display: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    width: 100%;
}
.form-shortcode.active {
  display: block;
}
.close-cs {
  position: absolute;
  top: 40px;
  right: 40px;
  cursor: pointer;
}
form#wpforms-form-152 {
  display: flex;
  flex-direction: column;
  align-items: center;
}
div#wpforms-152 {
    justify-content: center;
}
.form-title-text {
  text-align: center;
  font-family: 'Brittany', sans-serif;
  font-size: 80px;
  font-weight: 400;
}
.form-title-cs {
  text-align: center;
}
.form-title-cs-mobile {
  display: none;
}
.form-subtitle-cs {
  font-family: 'Supreme', sans-serif;
  font-size: 40px;
  font-weight: 500;
  font-style: italic;
  text-align: center;
  padding-top: 20px;
  cursor: pointer;
}
.form-subtitle-cs:hover {
  text-decoration: underline;
}
div.wpforms-container-full, div.wpforms-container-full * {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.form-input-cs {
  width: 48%!important;
}
input, textarea {
  max-width: 100%!important;
  border: none!important;
  border-bottom: 1px solid gray!important;
}
.form-message-cs {
  width: 1000%!important;
}
.form-btn-cs {
  font-family: 'Supreme', sans-serif!important;
  font-size: 24px!important;
  font-weight: 500!important;
  font-style: italic!important;
  text-decoration: underline!important;
  color: var(--black)!important;
  background-color: transparent!important;
  padding-top: 40px!important;
}
div.wpforms-container-full button[type=submit]:hover {
  background: transparent!important;
}
/**/

/* ! privacy page */
.privacy-title {
  font-weight: 400;
  font-size: 40px;
  padding-bottom: 50px;
}
.privacy-saluto {
  font-size: 22px;
  padding-bottom: 10px;
}
.privacy-p {
  font-size: 14px;
  line-height: 1.3em;
  padding-bottom: 60px;
}
.privacy-domanda {
  font-size: 22px;
  padding-bottom: 15px;
}
/**/

/* ! footer */
footer {
  padding-top: 80px;
  padding-bottom: 80px;
  transition: 0.3s ease;
}
footer a {
  display: block;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.footer-firma {
  font-size: 20px;
  padding-bottom: 15px;
}
.address, .footer-email, .footer-phone {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.3em;
}
.footer-privacy a, .footer-cookie a {
  font-size: 12px;
}
.footer-email {
  padding-bottom: 15px;
}
.footer-privacy {
  padding-bottom: 24px;
}
/**/

/* ! utilities */
.container {
  max-width: 1160px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}
.cta_1 {
  font-family: 'Supreme', sans-serif;
  font-size: 24px;
  font-weight: 500;
  text-decoration: underline;
  font-style: italic;
}
.highlight {
  color: red;
}
.w-fluid {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.color2 {
  color: var(--color2);
}
.color3 {
  color: var(--color3);
}
.color4 {
  color: var(--color4);
}
.bg-color-black {
  background-color: var(--black);
}

/* garantisce da 1200 a 1300 px */
@media screen and (max-width: 1300px) {
  .comunicazione-title {
    font-size: 170px;
  }
  .img-text-1 {
    left: 10px;
  }
  .img-text-2 {
    right: 10px;
  }
}

/* garantisce da 1000 a 1200 px*/
@media screen and (max-width: 1200px) {
  .slide-cs {
    padding-inline: 13px;
    gap: 15px;
    height: 60vh;
  }
  .team-col-wrapper {
    gap: 14px;
  }
  .team-col-1 {
    width: 270px;
  }
  .team-col-2 {
    width: 370px;
  }
  .img-text-1 {
    top: -8%;
    left: 2%;
  }
  .img-text-2 {
    right: 20px;
    bottom: -80px;
  }
  .ending-title-team {
    padding-left: 60px;
  }
  .comunicazione-title {
    font-size: 140px;
  }
  .online-subtitle.comunicazione-subtitle {
    left: 670px;
  }
  .online-title {
    font-size: 140px;
  }
}

@media screen and (max-width: 1025px) {
  .online-subtitle {
    left: 270px;
    top: 0px;
  }
  /* .intro-consulenza {
    height: 100vh!important;
  } */
}

@media screen and (max-width: 1010px) {
  .gallery-row {
    justify-content: center;
  }
}

/* garantisce da 767 a 1000 px*/
@media screen and (max-width: 1000px) {
  .menu-cs, a.contatti {
    display: none;
  }
  .menu-mobile-cs {
    display: block;
    cursor: pointer;
  }
  header {
    height: auto;
  }
  /* .header-container {
    height: 40px;
  } */
  figure.wp-block-image.size-full {
    width: 114px;
  }
  .team-col-1 {
    width: 220px;
  }
  .team-col-2 {
    width: 230px;
  }
  .team-col-3 {
    width: 250px;
  }
  .text.visible {
    font-size: 14px;
  }
  #online, .sipario-section {
    height: 100vh;
    display: flex;
    align-items: center;
  }
  .online-subtitle {
    font-size: 60px;
    left: 110px;
    top: 0px;
  }
  .intro-accordion-row-title {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    padding-bottom: 10px;
  }
  .intro-accordion-row-title span {
    font-size: 28px;
    line-height: 1em;
  }
  .intro-online-cta {
    padding-top: 20px;
  }
  .online-title {
    font-size: 110px;
  }
  .online-subtitle.comunicazione-subtitle {
    left: 610px;
  }
  .form-shortcode {
    width: 95%;
  }

    /* menu tablet / mobile */
  #menu-header-menu-mobile {
    background: white;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 82px;
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: 60px;
  }
  .menu-mobile-cs img {
    position: relative;
    top: 5px;
    transition: 0.3s ease;
  }
  .menu-mobile-cs.active img {
	  transform: rotate(-90deg);
  }
  /*  */
}

@media screen and (max-width: 766px) {
  div#intro-consulenza, #intro-comunicazione, #intro-identita,
  #intro-online {
    /* padding-top: 170px!important; */
    padding-top: 130px!important;
  }
  .header-container, .footer-container {
    margin: 0;
    max-width: 100vw;
  }
  .menu-mobile-cs span {
    font-weight: 600;
  }
  .home-cs {
    padding-bottom: 180px;
  }
  .main-title {
    font-size: 26px;
  }
  .second-title {
    font-size: 24px;
    padding-bottom: 30px;
  }
  .payoff {
    font-size: 30px;
  }
  .cta_1 {
    font-size: 16px;
  }
  .little-title {
    font-size: 20px;
  }
  .paragraph, .paragraph p {
    font-weight: 300;
    font-size: 20px;
  }
  .little-title-span {
    width: 300px!important;
    display: block;
  }
  .pin-spacer .paragraph p {
    padding-bottom: 40px!important;
    padding-bottom: 0!important;
  }
  .second-text .container {
    flex-direction: column;
    justify-content: center;
    align-items: start;
  }
  .text-wrapper {
    width: 100%;
  }
  .col-little-title .little-title {
    padding-bottom: 50px;
  }
  .line {
    padding-bottom: 20px;
  }
  .img-text-1 {
    top: 0;
  }
  /* .slide-cs {
    padding-top: 90px;
    display: block;
  }
  .team-container-slide {
    height: auto;
    flex-direction: column;
  }
  .team-col-3 {
    width: 90%;
  }
  .team-name {
    padding-top: 20px;
    font-size: 32px;
  } */
  #team {
    display: none;
  }
  #team-mobile {
    display: block;
    padding-inline: 15px;
    margin-top: 50px;
  }
  figure.corsive-title {
    width: 160px;
  }
  .row-imgs {
    display: flex;
    gap: 10px;
  }
  .row-imgs figure:first-child {
    width: 45%;
    border-radius: 5px 0 5px 0;
    overflow: hidden;
  }
    .row-imgs figure:last-child {
    width: 55%;
    border-radius: 5px 0 5px 0;
    overflow: hidden;
  }
  .team-name-mobile {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    align-items: end;
  }
  .team-socials-container-mobile {
    padding: 20px 0 40px;
    margin-top: -30px;
    transition: 0.3s ease;
  }
  .team-socials-container-mobile.mt0 {
    margin-top: 0px;
    transition: 0.3s ease;
  }
/* accordion team member mobile */
.team-member-mobile .text {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}
.team-member-mobile .text.active {
  max-height: 500px; /* regola secondo il contenuto */
  opacity: 1;
}
.team-arrow-mobile {
  cursor: pointer;
  transition: transform 0.3s ease;
}
.team-arrow-mobile.rotated {
  transform: rotate(-90deg);
}
/**/
  .online-title {
    font-size: 80px;
  }
  .online-subtitle {
    font-size: 32px;
    left: 70px;
  }
  .container-intro-accordion {
    display: block;
  }
  .container-intro-accordion {
    padding-top: 80px;
  }
  .little-title.intro-title-accordion {
    /* font-size: 16px; */
    padding-bottom: 30px;
  }
  .intro-accordion-row-title {
    padding-bottom: 38px;
  }
  .intro-accordion-row.active .intro-accordion-row-text {
    margin-top: -25px;
  }
  .text-action {
    font-size: 16px;
  }
  .online-title.comunicazione-title {
    font-size: 70px;
  }
  .online-subtitle.comunicazione-subtitle {
    left: 360px;
  }
  .online-title.consulenza-title {
    font-size: 50px;
  }
  .form-title-cs, .form-title-text {
    display: none;
  }
  .form-title-cs-mobile {
    display: block;
    font-family: 'Brittany', sans-serif;
    font-size: 40px;
    font-weight: 400;
    text-align: center;
  }
  .form-subtitle-cs {
    font-size: 24px;
  }
  #intro .paragraph p:first-child span.word:first-of-type, .intro-online .paragraph p:first-child span.word:first-of-type, .intro-identita .paragraph p:first-child span.word:first-of-type, .intro-comunicazione .paragraph p:first-child span.word:first-of-type, .intro-consulenza .paragraph p:first-child span.word:first-of-type {
    padding-left: 55px;
  }
  .form-shortcode {
    padding: 50px 15px;
    top: 12px;
  }
  .form-input-cs {
    width: 100%!important;
  }
  .intro-online-cta {
    font-size: 20px;
  }
  .gallery-cs {
    display: none;
  }
  .gallery-cs-mobile {
    display: block;
    padding-top: 40px;
    transition: 0.5s ease;
  }
  .gallery-cs-mobile.new-transform {
    padding-top: 210px;
  }
  .gallery-swiper {
    width: 100%;
    overflow: hidden;
  }
  .gallery-swiper .swiper-slide {
    width: 100%;
  }
  .swiper-pagination {
    margin-top: 20px;
    text-align: center;
  }
  .swiper-slide {
    display: flex!important;
    justify-content: center!important;
  }
  .gallery-pic {
    width: 90%;
    height: 185px;
  }
  .swiper {
    height: 225px;
  }
  #online-anchor .swiper-pagination-bullet {
    background-color: var(--color1)!important;
  }
    #identita-anchor .swiper-pagination-bullet {
    background-color: var(--color2)!important;
  }
    #comunicazione-anchor .swiper-pagination-bullet {
    background-color: var(--color3)!important;
  }
  /* .swiper-pagination-bullet {
    background-color: #fff!important;
  } */
    .bullet-black .swiper-pagination-bullet {
    background-color: var(--black)!important;
  }
  .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    left: 5%!important;
    width: 90%!important;
    display: flex;
    justify-content: flex-end;
  }
  .swiper-pagination-bullet {
    border-radius: 0px !important;
  }
  #online-anchor span.swiper-pagination-bullet {
    opacity: 0.6!important;
  }
  #online-anchor span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1!important;
  }

  /* footer */
  .footer-row {
    display: block;
    text-align: center;
  }
  .footer-firma {
    font-size: 14px;
  }
  .address, .footer-email, .footer-phone {
    font-size: 12px;
  }
  a.footer-privacy, a.footer-cookie {
    font-size: 12px;
    font-weight: 300;
    padding-bottom: 0;
  }
  .footer-email {
    padding-top: 15px;
  }
  a.footer-phone {
    padding-bottom: 15px;
  }
  .footer-col-3 {
    display: flex;
    justify-content: center;
    gap: 18px;
  }
  /* ** */

}


/* ! class for js */
/* 10.06.2025 */
.intro-accordion-row-text {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}
.intro-accordion-row.active .intro-accordion-row-text {
  max-height: 500px; /* regola in base al contenuto massimo */
  opacity: 1;
}
.intro-arrow {
  transition: transform 0.3s ease;
}
.intro-accordion-row.active .intro-arrow {
  transform: rotate(-90deg); /* ruota di 90° verso destra */
  transform-origin: center;
}
/**/
#menu-item-8 a, #menu-item-9 a, #menu-item-10 a, #menu-item-11 a {
  position: relative;
  text-decoration: none;
}
#menu-item-8 a::after,
#menu-item-9 a::after,
#menu-item-10 a::after,
#menu-item-11 a::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -7px;
  width: 0;
  height: 6px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  transition: width 0.3s ease;
  z-index: 1;
}
#menu-item-8 a::after {
  background-image: url('../img/underline_vio.svg');
}

#menu-item-9 a::after {
  background-image: url('../img/underline_ora.svg');
}

#menu-item-10 a::after {
  background-image: url('../img/underline_gre.svg');
}

#menu-item-11 a::after {
  background-image: url('../img/underline_blu.svg');
}
#menu-item-8 a:hover::after, #menu-item-9 a:hover::after, #menu-item-10 a:hover::after, #menu-item-11 a:hover::after {
  width: 100%;
}

/* #menu-item-9 a::after, #menu-item-9 a:hover::after {
  background-color: var(--color2);
}

#menu-item-10 a::after, #menu-item-10 a:hover::after {
  background-color: var(--color3);
}

#menu-item-11 a::after, #menu-item-11 a:hover::after {
  background-color: var(--color4);
} */

#menu-item-8.active a::after, #menu-item-9.active a::after, #menu-item-10.active a::after, #menu-item-11.active a::after {
  width: 100%;
}
/**/



/* FIX DI GRAFICA IN GENERALE */
div#intro-consulenza {
    box-sizing: content-box!important;
    padding-bottom: 300px!important;
    z-index: 1;
    position: relative;
}
/**/


/*POLICY*/
.policy {
  padding-top: 200px;
  overflow: hidden;
}

#cmplz-document i {
    padding-bottom: 50px;
    display: inline-block;
}
#cmplz-document p {
    padding-bottom: 20px;
}

.cmplz-document h2 {
    padding-top: 20px;
    padding-bottom: 10px;
}

#cmplz-document details {
    padding-bottom: 10px;
}
#cmplz-document details:last-child {
  padding-bottom: 60px;
}
/**/
