:root {
  --primary: #080808;
	--primary-hover: #1D1D1A;
	--secondary: #31322D;
  --secondary-hover: #CCCCCC;
  --text-color: #fff;
  --font-title: 'Bodoni Moda', serif;
  --font-text: 'Hanken Grotesk', sans-serif;
}

html, body {
  scroll-behavior: auto;
}

body {
	overflow: hidden;
  position: relative;
  font-family: var(--font-text);
	font-variation-settings:
	"wdth" 100,
	"YTLC" 500;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
  color: var(--text-color);
  margin: 0;
}

p {
  font-family: var(--font-text);
}

*:focus, *:hover {
  outline: none;
  outline-offset: unset;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: all .3s ease-in-out;
}

a[href="#!"] {
  cursor: default;
}

a:hover {
  text-decoration: none;
}

a.iubenda-tp-btn.iubenda-cs-preferences-link {
  display: none !important;
}

button.iubenda-tp-btn.iubenda-cs-preferences-link {
  display: none !important;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-title);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.2;
  position: relative;
  color: var(--text-color);
  margin: 0;
}

h1 {
  font-size: 34px;
}

h2 {
  font-size: 30px;
}

img {
  max-width: 100%;
  object-fit: cover;
}

.abslink {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 2;
}

.absimg {
  position: absolute;
  pointer-events: none;
}

.cta-primary {
  margin: 0 auto;
  width: fit-content;
  background: var(--primary);
  color: #fff;
  padding: 10px 14px;
  border-radius: 4px;
  letter-spacing: 1px;
	transition: all .3s ease-in-out;
}

.cta-primary:hover {
  background: var(--primary-hover);
}

.cta-text {
  color: var(--primary);
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  padding: 4px 8px;
	transition: all .3s ease-in-out;
}

.cta-text:hover {
  border-top: 1px solid var(--primary);
  border-bottom: 1px solid var(--primary);
}

.container {
  position: relative;
  width: 1400px;
  max-width: 100%;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.flex {
  display: flex;
}

.cta-standard {
  display: block;
  position: relative;
  margin: 30px 0 0;
  font-weight: 500;
  background: var(--secondary);
  width: fit-content;
  padding: 10px 60px 10px 18px;
  border-radius: 100px;
  box-shadow: 0 10px 20px 1px #eee;
}

.cta-standard:before {
  content: "➤";
  position: absolute;
  right: 0px;
  top: 0px;
  color: #fff;
  line-height: 1;
  width: 17px;
  height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  padding: 14px;
  border-radius: 100px;
  transition: all 0.3s ease-in-out;
}

.cta-standard:hover:before {
  background: var(--secondary-hover);
  color: var(--text-color);
}

/* Inizio Header */

#header {
  position: relative;
  display: none;
}

.site-header {
  padding: 24px 0;
}

.site-header .flex {
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
}

.header-cta {
  text-align: center;
  background: var(--primary);
  color: #fff;
  padding: 10px 14px;
  width: fit-content;
  text-wrap: nowrap;
  font-size: 18px;
  font-weight: 400;
  font-family: var(--font-text);
  border-radius: 4px;
  cursor: pointer;
  letter-spacing: 1px;
  transition: all .3s ease-in-out;
}

.header-cta:hover {
  color: var(--primary);
  background: #fff;
}

:not(.home) .header-cta:hover {
  background: var(--primary-hover);
  color: #fff;
}

/* Fine Header */

/* Inizio Nav */

.desktop-nav {
  display: block;
}

.mobile-nav {
  display: none;
}

.hamburger {
  display: none;
}

.site-header .intro-logo {
  flex-grow: 1;
  max-width: 180px;
}

.site-header .header-tools {
  flex-grow: 1;
  max-width: fit-content;
  gap: 20px;
}

.site-header .nav {
  flex-grow: 2;
}

.nav ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.nav .menu {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.nav .menu li {
  display: flex;
  align-items: center;
  padding: 0 20px;
  font-weight: 500;
  font-size: 18px;
  height: 46px;
  cursor: pointer;
}

.nav .menu li a {
  color: var(--text-color);
  transition: all .3s ease-in-out;
}

.nav .menu li:hover a {
  color: var(--primary-hover);
}

.nav .menu > li ul {
  top: 46px;
  width: 200px;
  position: absolute;
  border-radius: 8px;
  opacity: 0;
  background: var(--primary-hover);
  pointer-events: none;
  transition: all .3s ease-in-out
}

.menu-item-has-children:hover .sub-menu {
  pointer-events: initial;
  opacity: 1;
  z-index: 1;
}

.nav .menu > li ul > li {
  font-weight: 400;
}

.nav .menu li:not(.shop-menu) {
  position: relative;
}

.nav .menu > li ul.sub-menu li:first-child {
  margin-top: 6px;
}

.nav .menu > li ul.sub-menu li:last-child {
  margin-bottom: 6px;
}

.nav .menu li ul.sub-menu li {
  padding: 0;
  margin: 8px 0;
  height: initial;
  font-size: 20px;
}

.nav .menu li ul.sub-menu li a {
  color: #fff;
  padding: 0 10px;
  transition: all .3s ease-in-out;
}

.nav .menu li ul.sub-menu li:hover a {
  margin-left: 4px;
}

.menu-item-has-children:before {
  content: '➤';
  position: absolute;
  right: 4px;
  font-size: 12px;
  transform: rotate(90deg);
  transition: all .3s ease-in-out;
}

.menu-item-has-children:hover:before {
  color: var(--primary-hover);
}

.nav .menu li.menu-item-has-children, .menu-item-has-children:before {
  cursor: default;
}

/* Fine Nav */

/* Inizio Cerca */

.search-icon-wrapper {
  position: relative;
  display: inline-block;
}

#search-icon {
  cursor: pointer;
  width: 24px;
}

#search-icon img {
  display: block;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

#search-icon img:hover {
  filter: brightness(5);
}

:not(.home) #search-icon img:hover {
  filter: brightness(1.5);
}

.fullscreen-search {
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #354493ee;
  z-index: -100;
  transition: all 0.3s ease-in-out;
}

.search-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 600px;
  text-align: center;
  padding: 0 10px;
}

.search-container input[type="text"] {
  width: 80%;
  padding: 10px;
  font-size: 26px;
  border: none;
  border-radius: 0px;
  border-bottom: 1px solid #fff;
  background: transparent;
  color: #fff;
}

.search-container input[type="text"]::placeholder {
  color: #fff;
}

.search-container button {
  background: none;
  border: none;
  cursor: pointer;
  background-color: transparent !important;
}

.search-container img {
  width: 35px;
  position: relative;
  top: 16px;
  filter: brightness(10);
}

.close-btn {
  position: absolute;
  top: calc(50% + -80px);
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

.risultati {
  padding: 30px 15px;
  border-bottom: 1px solid var(--giallo);
}

.risultati h2 {
  margin-top: 0;
  margin-bottom: 10px;
}

.risultati a {
  color: var(--primary);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}

.risultati a:hover {
  border-bottom: 1px solid var(--primary);
}

/* Fine Cerca */

/* Inizio Home */

.main-home {
  position: relative;
  height: 100vh;
}

.main-home:before {
  content: 'Presto online...';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 60px;
  font-family: var(--font-title);
  background: #000000cf;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

img.main {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}

/* .main-home {
  padding: 140px 0;
} */

.testo-main {
  width: 60%;
}

.testo-main h1 {
  width: 50%;
  font-size: 50px;
  margin: 0 0 60px 0;
  line-height: 1;
}

.testo-main h1 strong {
  color: var(--primary);
}

.testo-main h3 {
  font-weight: 300;
  font-size: 22px;
  line-height: 1.3;
  width: 80%;
  margin-bottom: 60px;
}

.cta-main {
  width: fit-content;
  gap: 40px;
  justify-content: flex-start;
  align-items: center;
}

.header-img {
  position: absolute;
  right: 200px;
}

.header-img-wrap {
  position: relative;
  transform: rotate(45deg);
  overflow: hidden;
  width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  border: 8px solid #fff;
}

.header-img-wrap img {
  transform: rotate(-45deg);
  width: 520px;
  height: 520px;
  overflow: initial;
}

.header-img:before {
  content: '';
  position: absolute;
  top: -320px;
  right: -320px;
  width: 700px;
  height: 700px;
  background: #3063AD;
  background: linear-gradient(90deg, var(--primary-hover) 0%, var(--secondary) 100%);
  z-index: -1;
  border-radius: 50px;
  transform: rotate(45deg);
}

/* .header-img:after {
  content: '';
  position: absolute;
  top: 70px;
  right: 70px;
  background: transparent;
  width: 340px;
  height: 340px;
  border-radius: 20px;
  transform: rotate(45deg);
  border: 10px solid #fff;
} */

.services-home {
  padding: 140px 0;
}

.services-home h3, .services-home .subtitle {
  text-align: center;
  margin-bottom: 20px;
}

.services-home h3 {
  font-size: 32px;
}

.services-home h3 strong {
  color: var(--primary);
}

.service-card {
  padding: 80px 0 0;
  gap: 25px;
  align-items: flex-start;
  justify-content: space-between;
}

.single-card.start {
  width: 16%;
  background: var(--primary-hover);
  color: #fff;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
  height: 180px;
  justify-content: flex-end;
}

.single-card {
  width: 28%;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 10px 20px 1px #eee;
  flex-direction: column;
  justify-content: space-between;
  height: 280px;
}

.single-card .title-card {
  margin-bottom: 20px;
  color: var(--primary-hover);
}

.single-card .text-card {
  color: #555;
}

.single-card .cta-card {
  position: relative;
  font-weight: 600;
  background: var(--bg);
  width: fit-content;
  padding: 10px 60px 10px 18px;
  border-radius: 100px;
  box-shadow: 0 10px 20px 1px #eee;
}

.single-card .cta-card:before {
  content: '➤';
  position: absolute;
  right: 0px;
  top: 0px;
  background: var(--secondary);
  padding: 14px;
  color: var(--text-color);
  border-radius: 100px;
  line-height: 1;
  width: 17px;
  height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease-in-out;
}

.single-card .cta-card:hover:before {
  background: var(--tertiary-hover);
}

.advantage-home {
  padding: 100px 0;
  background: var(--bg);
}

.advantage-home h3 {
  text-align: center;
  font-size: 32px;
}

.advantage-home h3 strong {
  color: var(--primary);
}

.advantage-wrap {
  padding: 80px 0 0;
  align-items: center;
  justify-content: center;
  gap: 120px;
}

.advantage-wrap .advantage-img {
  position: relative;
}

.advantage-img:before {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -200px;
  width: 450px;
  height: 300px;
  background: var(--secondary-hover);
  background: linear-gradient(0deg, var(--tertiary-hover) 0%, var(--secondary-hover) 100%);
  border-radius: 50px;
  z-index: 0;
}

.text-advantage ol {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 50px;
  font-size: 18px;
}

.text-advantage li {
  position: relative;
}

.text-advantage span {
  position: relative;
  z-index: 1;
}

.text-advantage li:before {
  content: '-';
  font-size: 20px;
  font-weight: 400;
  position: absolute;
  left: -40px;
  top: 50%;
  width: 40px;
  height: 40px;
  object-fit: contain;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.text-advantage li:first-child:before {
  content: url(/wp-content/themes/gstart/assets/img/analisi.svg);
}

.text-advantage li:nth-child(2):before {
  content: url(/wp-content/themes/gstart/assets/img/strategia.svg);
}

.text-advantage li:nth-child(3):before {
  content: url(/wp-content/themes/gstart/assets/img/formazione.svg);
}

.text-advantage li:last-child:before {
  content: url(/wp-content/themes/gstart/assets/img/branding.svg);
}

.text-advantage strong {
  display: block;
  font-size: 22px;
  color: var(--primary);
  position: relative;
  z-index: 1;
}

.advantage-img img {
  position: relative;
  border-radius: 8px;
  border-radius: 50px;
  border: 8px solid #fff;
  z-index: 1;
}

.bandi-home {
  padding: 140px 0 100px;
}

.bandi-home h3 {
  text-align: center;
  font-size: 32px;
}

.bandi-home h3 strong {
  color: var(--primary);
}

.bandi-slider {
  padding: 80px 0 0;
}

.bandi-slider .slick-list {
  padding-bottom: 30px;
}

.bandi-slider .card-bando {
  margin: 0 20px;
  padding: 30px;
  height: 600px;
  background: #fff;
  color: var(--primary-hover);
  box-shadow: 0 10px 20px 1px #3063AD30;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.bandi-slider .card-bando h4 {
  color: var(--primary);
}

.card-bando .cta-card {
  min-width: fit-content;
  border: 2px solid var(--secondary);
  color: var(--primary);
  font-size: 18px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 4px;
  transition: all .3s ease-in-out;
}

.card-bando .cta-card:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  color: #fff;
}

.card-bando img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  min-height: 280px;
  margin-bottom: 20px;
  border-radius: 4px;
  flex-grow: 1;
}

.card-bando .info-bando {
  flex-grow: 1;
}

.info-bando .summary {
  color: #555;
}

.cta-bando {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.label-bando {
  position: relative;
  color: var(--tertiary);
  line-height: 1.1;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
}

.label-bando:before {
  content: '';
  position: absolute;
  left: -14px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--tertiary);
  width: 10px;
  height: 10px;
  border-radius: 100px;
  animation: pulse 2s infinite ease-in-out alternate;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(.6);
  }
  50% {
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    transform: translate(-50%, -50%) scale(.6);
  }
}

.full-cta-home {
  padding: 80px 0 40px;
  color: #fff;
}

.wrap-fch {
  position: relative;
  align-items: center;
  justify-content: center;
  background: #3063AD;
  background: linear-gradient(90deg, rgba(48, 99, 173, 1) 0%, rgba(156, 213, 238, 1) 100%);
  border-radius: 6px;
}

.wrap-fch:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: #3063AD;
  background: linear-gradient(-90deg, rgba(48, 99, 173, 1) 0%, rgba(156, 213, 238, 1) 100%);
  border-radius: 10px;
  transform: skew(5deg, 5deg);
  z-index: -1;
}

.text-fch {
  font-size: 100px;
  width: 70%;
  font-weight: 800;
  line-height: 1;
  padding: 40px 40px 40px 80px;
}

.wrap-fch .cta-primary {
  position: relative;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
  height: 130px;
  width: 230px;
  margin-left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
}

.wrap-fch .cta-primary:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  border: 2px solid var(--primary);
  border-radius: 4px;
  transition: all .3s ease-in-out;
}

.wrap-fch .cta-primary:hover:before {
  border-color: var(--primary-hover);
}

.process-home {
  padding: 140px 0;
}

.process-home h3 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 32px;
}

.process-home h3 strong {
  color: var(--primary);
}

.process-home .text-process {
  text-align: center;
}

.steps-wrap {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 40px 0px;
}

.steps {
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 50px;
  width: 50%;
}

.steps .step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  width: 70%;
}

.steps .step h4 {
  color: var(--primary);
}

.steps .step:before {
  position: absolute;
  left: -30%;
  font-size: 80px;
  font-weight: 900;
  font-family: 'Poppins', sans-serif;
  color: var(--primary-hover);
}

.steps .step1:before {
  content: '1';
  left: -27%;
}

.steps .step2:before {
  content: '2';
  left: -29%;
}

.steps .step3:before {
  content: '3';
  left: -29%;
}

.steps .step4:before {
  content: '4';
}

.steps .step:after {
  content: '';
  position: absolute;
  left: -12%;
  width: 20px;
  height: 0;
  border: 2px dashed var(--secondary);
}

.steps-video {
  border-radius: 40px;
  border: 6px solid var(--secondary);
}

.steps-video video {
  border-radius: 34px;
  display: block;
}

.process-home .cta-primary {
  margin: 20px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Fine Home */

/* Inizio Newsletter */



/* Fine Newsletter */

/* Inizio Pagina */

.page-standard {
  margin: 20px 0 80px;
}

.page-standard:has(.sidebar) .content-page {
  width: 70%;
}

.page-standard .sidebar {
  width: 30%;
}

.content-page {
  margin: 60px 0 0;
}

.content-page ul {
  list-style: circle;
  padding-left: 20px;
  margin: 4px 0 18px;
}

.title-page {
  background: var(--bg);
  padding: 18px 0;
}

.title-page h1 {
  font-weight: 700;
}

.content-page h3 {
  color: var(--primary);
  font-weight: 400;
}

.page-policy {
  font-size: 18px;
}

.page-policy ul {
  padding-left: 20px;
}

.page-policy h1.title.title-page {
  margin-bottom: 50px;
}

.page-policy table {
  width: 100%;
  text-align: left;
}

.page-policy tr:nth-child(even) {
  background: var(--bg);
}

.page-policy thead {
  background: var(--text-color);
  color: #fff;
}

.page-policy th, .page-policy td {
  font-size: 16px;
  padding: 4px;
}

/* Fine Pagina */

/* Inizio Azienda */

.page-azienda {
  margin: 20px 0 80px;
  text-align: center;
}

.page-azienda .content-page {
  margin: 100px auto 40px;
  max-width: 70%;
}

.page-azienda .content-page h3 {
  color: var(--text-color);
}

.page-azienda .content-page h3 strong {
  color: var(--primary);
}

.ginfo {
  padding: 80px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 80px;
}

.ginfo .info {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  max-width: 68%;
  margin: 0 auto;
  background: var(--bg);
  padding: 20px 30px;
  border-radius: 8px;
  box-shadow: 0 10px 20px 1px #eee;
}

.ginfo .info h4 {
  color: var(--primary);
}

.ginfo .text-info {
  text-align: left;
}

.ginfo .info:before {
  content: 'G';
  position: absolute;
  top: -30px;
  left: -64px;
  font-size: 50px;
  font-weight: 600;
  font-style: italic;
  font-family: 'Poppins', sans-serif;
  color: var(--primary-hover);
}

.ginfo .info:after {
  content: 'come';
  position: absolute;
  top: 26px;
  left: -62px;
  font-style: italic;
}

.testimonials-wrap {
  margin: 100px 0;
}

.testimonials-wrap h3 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 32px;
}

.testimonials-wrap h3 strong {
  color: var(--primary);
}

.testimonials-slider {
  padding: 10px 0;
  margin: 60px 0;
}

.testimonial-item {
  text-align: center;
  padding: 10px 0;
}

h4.testimonial-name {
  font-size: 24px;
  color: var(--primary);
}

.testimonial-role {
  color: #555555;
  margin: 10px 0 0;
}

.testimonial-description {
  max-width: 50%;
  margin: 20px auto;
  background: var(--bg);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 10px 20px 1px #eee;
}

.pre-cta {
  margin: 0 0 30px;
}

/* Fine Azienda */

/* Inizio Formazione */

.formazione-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 100px;
}

.page-formazione .content-page h3 {
  color: var(--text-color);
}

.page-formazione .content-page h3 strong {
  color: var(--primary);
}

.formazione-wrap .content-page h4 {
  font-size: 22px;
  color: var(--primary-hover);
}

.corsi-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  margin: 0 0 40px;
  font-size: 16px;
}

.corsi-wrap > div {
width: 50%;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 10px 20px 1px #eee;
}

.corsi-wrap ul {
  padding-left: 20px;
  list-style: circle;
  margin-bottom: 0;
}

.more-content h4 {
  margin: 40px 0 4px;
}

/* Fine Formazione */

/* Inizio Finanza Agevolata */

.finanza-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 100px;
}

.page-finanza .content-page h3 {
  color: var(--text-color);
}

.page-finanza .content-page h3 strong {
  color: var(--primary);
}

.finanza-wrap .content-page h4 {
  font-size: 22px;
  color: var(--primary-hover);
}

.bando-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  margin: 0 0 40px;
  font-size: 16px;
  color: #555;
}

.bando-wrap > div {
  width: 50%;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 10px 20px 1px #eee;
}

.bando-wrap h4 {
  margin-bottom: 10px;
}

.bando-wrap ul {
  padding-left: 20px;
  list-style: circle;
  margin: 10px 0 0;
  color: var(--text-color);
}

.cta-standard ~ h3, .cta-standard ~ h4 {
  margin: 26px 0 4px;
}

.metodo-bandi {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  align-items: start;
  margin: 30px 0 0;
}

.single-metodo {
  background: var(--bg);
  padding: 20px;
  color: #555;
  font-size: 16px;
  border-radius: 8px;
  box-shadow: 0 10px 20px 1px #eee;
}

.single-metodo h5 {
  color: var(--primary);
  font-size: 22px;
  font-weight: 400;
  margin: 0 0 10px;
}

.content-page .single-metodo ul {
  color: var(--text-color);
  margin: 10px 0px 0;
}

.more-content h4 {
  margin: 40px 0 4px;
}

.finanza-wrap .how-work ul {
  list-style: disc;
  margin: 20px 0;
}

.finanza-wrap .how-work ul li::marker {
  color: var(--primary);
}

.bandi-finanza {
  padding: 30px 0 0;
}

.bandi-finanza-slider {
  padding: 20px 0 0;
}

.bandi-finanza-slider .slick-list {
  padding-bottom: 30px;
  max-width: 890px;
}

.bandi-finanza-slider .card-bando {
  margin: 0 10px;
  padding: 30px;
  height: 580px;
  background: #fff;
  color: var(--primary-hover);
  box-shadow: 0 10px 10px 1px #3063AD30;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.bandi-finanza-slider .card-bando h4 {
  color: var(--primary);
}

.bandi-finanza-slider .card-bando a:has(img) {
  width: 100%;
}

.bandi-finanza-slider .card-bando img {
  min-height: 280px;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 4px;
  flex-grow: 1;
}

.card-bando .cta-card {
  min-width: fit-content;
  border: 2px solid var(--secondary);
  color: var(--primary);
  font-size: 18px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 4px;
  transition: all .3s ease-in-out;
}

.card-bando .cta-card:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  color: #fff;
}

.card-bando .info-bando {
  flex-grow: 1;
}

.info-bando .summary {
  color: #555;
}

.cta-bando {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Fine Finanza Agevolata */

/* Inizio Branding */

.branding-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 100px;
}

.page-branding .content-page h3 {
  color: var(--text-color);
}

.page-branding .content-page h3 strong {
  color: var(--primary);
}

.branding-wrap .content-page h4 {
  font-size: 22px;
  color: var(--primary-hover);
}

.cta-standard ~ h3, .cta-standard ~ h4 {
  margin: 26px 0 4px;
}

.services-brand {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  align-items: start;
  margin: 30px 0 0;
}

.single-service-brand {
  background: var(--bg);
  padding: 20px;
  color: #555;
  font-size: 16px;
  border-radius: 8px;
  box-shadow: 0 10px 20px 1px #eee;
}

.single-service-brand h5 {
  color: var(--primary);
  font-size: 22px;
  font-weight: 400;
  margin: 0 0 10px;
}

.content-page .single-service-brand ul {
  color: var(--text-color);
  margin: 10px 0px 0;
}

.more-content h4 {
  margin: 40px 0 4px;
}

ul.brand-list {
  list-style: disc;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

ul.brand-list li::marker {
  color: var(--primary);
}

/* Fine Branding */

/* Inizio Bandi e fondi */

.page-bandi-fondi .content-page h3 {
  color: var(--text-color);
}

.page-bandi-fondi .content-page h3 strong {
  color: var(--primary);
}

.bandi-finanza-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 10px 0;
}

.bandi-finanza-grid .card-bando {
  margin: 10px;
  padding: 30px;
  height: 580px;
  background: #fff;
  color: var(--primary-hover);
  box-shadow: 0 10px 10px 1px #3063AD30;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.bandi-finanza-grid .card-bando img {
  max-height: 220px;
  min-height: 280px;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 4px;
  flex-grow: 1;
}

.bandi-finanza-grid .card-bando a:has(img) {
  width: 100%;
}

/* Fine Bandi e fondi */

/* Inizio Bando */

.single-bando .title-page {
  text-align: center;
}

.single-bando-wrap .bando-content {
  margin: 60px 0 0;
}

.bando-start {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  margin: 0 0 80px;
}

.bando-start img {
  position: relative;
  width: 30%;
  border-radius: 20px;
  border: 6px solid var(--secondary);
}

.bando-start .bando-desc {
  width: 50%;
}

.bando-desc h4 {
  font-size: 22px;
  color: var(--primary);
}

.bando-desc p, .bando-desc ul {
  margin: 8px 0 24px;
}

.bando-desc p {
  border-bottom: 2px dashed var(--secondary);
  padding-bottom: 24px;
}

.bando-desc p:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.bando-desc ul {
  padding-left: 20px;
  list-style: circle;
}

.bando-desc ul:not(:last-child) {
  border-bottom: 2px dashed var(--secondary);
  padding-bottom: 24px;
}

.agevolazioni-wrap {
  margin: 0 auto 80px;
  width: 70%;
}

.agevolazioni-wrap h3 {
  text-align: center;
  font-size: 32px;
}

.agevolazioni-columns {
  width: fit-content;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  margin: 30px auto 0;
  background-color: var(--primary-hover);
  border-radius: 8px;
  color: #fff;
}

.agevolazione-column {
  position: relative;
  flex: 1;
  text-align: center;
  padding: 20px;
}

.agevolazione-column:nth-child(2):before {
  content: '';
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
  background: var(--primary);
  height: 40px;
  width: 2px;
}

.agevolazione-column:nth-child(3):before {
  content: '';
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
  background: var(--primary);
  height: 40px;
  width: 2px;
}

.bando-divider {
  width: 10%;
  border: none;
  height: 2px;
  background: var(--secondary);
}

.bandi-correlati {
  padding: 60px 0 80px;
}

.bandi-correlati h3 {
  text-align: center;
  font-size: 32px;
}

.bandi-single-bando {
  padding: 20px 0 0;
}

.bandi-single-bando .slick-list {
  padding-bottom: 30px;
}

.bandi-single-bando .card-bando {
  margin: 0 10px;
  padding: 30px;
  height: 580px;
  background: #fff;
  color: var(--primary-hover);
  box-shadow: 0 10px 10px 1px #3063AD30;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.bandi-single-bando .card-bando h4 {
  color: var(--primary);
}

.bandi-single-bando .card-bando img {
  min-height: 280px;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 4px;
  flex-grow: 1;
}

.bandi-single-bando .card-bando a:has(img) {
  width: 100%;
}

/* Fine Bando */

/* Inizio Policy */

.policy-wrap {
  margin-bottom: 60px;
}

.info-box {
  background: #eee;
  border-left: 4px solid var(--primary);
  padding: 15px;
  margin: 20px 0;
  border-radius: 4px;
}

.info-box strong {
  color: var(--primary);
}

.privacy-container table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.privacy-container th {
  background: var(--primary);
  color: white;
  font-weight: 600;
}

.privacy-container th, .privacy-container td {
  padding: 12px;
  text-align: left;
  border: 1px solid #ddd;
}

.page-policy .content-page h2 {
  position: relative;
  color: var(--primary);
  font-size: 30px;
  margin-bottom: 0;
}

.page-policy .content-page h4 {
  font-size: 24px;
  margin: 40px 0 10px;
}

.page-policy .content-page p, .page-policy .content-page ul {
  margin: 0;
}

.page-policy .content-page a {
  color: var(--primary);
  transition: all .3s ease-in-out;
}

.page-policy .content-page a:hover {
  margin-left: 4px;
}

/* Fine Policy */

/* Inizio FAQ */

.page-faq {
  margin: 20px 0 80px;
}

.faq-wrap {
  margin: 60px 0;
}

.page-faq .content-faq {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

.page-faq .faq-category-title {
  margin-bottom: 20px;
  color: var(--primary);
  font-size: 28px;
}

.page-faq .faq-item {
  margin-bottom: 15px;
}

.page-faq .faq-question {
  position: relative;
  display: block;
  width: 100%;
  padding: 18px 10px 18px 40px;
  font-size: 18px;
  text-align: left;
  background: var(--bg);
  color: var(--text-color);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all .3s ease-in-out;
}

.page-faq .faq-question.active {
  background: var(--primary);
  color: #fff;
}

.page-faq .faq-question:hover {
  background: var(--secondary);
}

.page-faq .faq-question.active:hover {
  background: var(--primary);
}

.page-faq .faq-question::before {
  content: '+';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: bold;
}

.page-faq .faq-question[aria-expanded="true"]::before {
  content: '-';
  transform: translateY(-50%) rotate(0deg);
}

.page-faq .faq-answer {
  overflow: hidden;
  height: 0;
  transition: all .3s ease-in-out;
  padding: 0 14px;
  border-bottom: 2px solid var(--primary);
  margin-top: -1px;
  border-radius: 8px;
  font-size: 18px;
}

/* Fine FAQ */

/* Inizio Partner */

.partner-wrap {
  margin: 60px 0;
}

/* Fine Partner */

/* Inizio Parlano di noi */

.page-recensioni {
  margin: 20px 0 80px;
  text-align: center;
}

.page-recensioni .testimonials-wrap {
  margin: 60px 0 100px;
}

/* Fine Parlano di noi */

/* Inizio Contatti */

body:not(.logged-in).woocommerce-account .title-page {
  display: none;
}

.page-contatti {
  margin: 20px 0 40px;
}

.page-contatti .contact-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 100px;
  margin: 60px 0 0;
}

.page-contatti .content-page {
  margin: 0;
  width: 50%;
}

.page-contatti .form {
  width: 50%;
}

.page-contatti h3 {
  color: var(--primary);
}

.page-contatti .content-page a {
  transition: all .3s ease-in-out;
}

.page-contatti .content-page a:hover {
  margin-left: 4px;
  color: var(--primary);
}

/* Fine Contatti */

/* Inizio Sidebar */

.sidebar {
  margin: 60px 0 0;
}

.sidebar .sidebar-wrap > div {
  margin: 0 0 25px;
  padding: 20px;
  background: var(--bg);
}

.sidebar .sidebar-wrap > div:has(.custom-html-widget) {
  background: none;
}

.sidebar ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.sidebar ul li::marker {
  color: var(--primar y);
}

.sidebar ul li a {
  font-size: 17px;
  transition: all .3s ease-in-out;
}

.sidebar ul li a:hover {
  margin-left: 4px;
  color: var(--primary);
}

.sidebar h4 {
  font-size: 24px;
  border-bottom: 1px solid var(--text-color);
  padding: 0 0 6px 0;
}

.sidebar .cta-sidebar {
  position: relative;
  background: var(--secondary);
  border: 4px solid #fff;
  box-shadow: 0 0 0px 2px var(--secondary);
  text-align: center;
  padding: 20px 10px;
  border-radius: 8px;
  transition: all .3s ease-in-out;
}

.sidebar .cta-sidebar span {
  color: var(--text-color);
  transition: all .3s ease-in-out;
}

.sidebar .cta-sidebar:hover {
  background: var(--tertiary-hover);
  box-shadow: 0 0 0px 2px var(--tertiary-hover);
}

.sidebar .cta-sidebar:hover span {
  color: var(--text-color);
}

.cta-sidebar strong {
  font-size: 20px;
}

.sidebar a {
  font-size: 17px;
  transition: all .3s ease-in-out;
}

.sidebar a:hover {
  margin-left: 4px;
  color: var(--primary);
}

/* Fine Sidebar */

/* Inizio Footer */

footer {
  color: var(--text-color);
  padding: 80px 0 0;
  background: var(--bg);
}

footer > div {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.widget-footer > .container > div {
  width: 33.3%;
  margin-bottom: 50px;
}

.title-widget {
  font-weight: 600;
  font-size: 26px;
}

.widget-footer ul {
  list-style: none;
  padding-left: 0;
}

.widget-footer ul li a {
  font-size: 17px;
  transition: all .3s ease-in-out;
}

.widget-footer ul li a:hover {
  margin-left: 4px;
  color: var(--primary);
}

.widget-footer p {
  font-size: 17px;
  line-height: 1.7;
}

.widget-footer p a {
  transition: all .3s ease-in-out;
}

.widget-footer p a:hover {
  margin-left: 4px;
  color: var(--primary);
}

.copyright {
  background: var(--bg);
  padding: 8px 0;
  color: var(--text);
  font-size: 14px;
}

.copyright .flex {
  align-items: flex-start;
  justify-content: space-between;
}

.copyright .copy-policy {
  text-align: right;
}

.copy-policy a {
  transition: all .3s ease-in-out;
}

.copy-policy a:hover {
  color: var(--primary-hover);
}

a.wa-widget-button {
  position: fixed;
  right: 15px;
  bottom: 20px;
  background: #3fd83a;
  z-index: 7;
  width: 50px;
  height: 50px;
  padding: 4px 4px 4px 4px;
  border-radius: 50%;
  box-shadow: 0 2px 14px -3px #000000a3;
  transition: all .3s ease-in-out;
}

a.wa-widget-button.at-bottom {
  bottom: 40px;
}

svg.wa-messenger-svg-whatsapp.wa-svg-icon * {
  fill: #FFF;
}

.widget-footer img {
  width: 90%;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  display: block;
}

.widget-footer .footer-widget p:has(img) {
  margin: 0;
}

.social-list {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  margin: 30px 0 0;
}

.social-list img {
  position: relative;
  top: 0;
  width: 28px;
  height: 28px;
  transition: all .3s ease-in-out;
}

.social-list > a:hover img {
  top: -4px;
}

/* Fine Footer */

@media (max-width: 1200px) {

  

}

@media (max-width: 992px) {

  

}

@media (max-width: 767px) {

  /* Inizio mobile nav */

  .desktop-nav {
    display: none;
  }
  
  .mobile-nav {
    display: block;
  }

  .hamburger {
    display: block;
  }

  html:has(body.menu-open) {
    overflow: hidden;
  }

  .border {
    display: none;
  }

  .social-info {
    display: none;
  }

  .menu-open .social-info {
    display: flex;
    top: 100%;
    transform: translateY(-100%);
    gap: 10px;
    padding: 10px 0;
    z-index: 11;
  }

  .hamburger {
    position: relative;
    top: -4px;
    width: 36px;
    height: 19px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 100;
  }

  .hamburger span {
    display: block;
    height: 3px;
    border-radius: 100px;
    width: 100%;
    background: var(--primary);
    transition: all 0.3s ease-in-out;
  }

  .hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: var(--primary);
  }

  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background: var(--primary);
  }
  
  .nav {
    position: fixed;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100vw;
    /* border-top: 1px solid var(--primary); */
    background: linear-gradient(315deg, var(--primary-hover) 0%, var(--secondary) 100%);
    transform: translateX(100%);
    transition: transform .3s ease-in-out;
    z-index: 100;
    overflow-y: auto;
  }

  .admin-bar .nav {
    height: calc(100% - 102px);
  }

  .nav.open {
    transform: translateX(0);
  }

  .nav .menu {
    flex-direction: column;
    align-items: flex-start;
    padding: 0px 20px 0 14px;
  }

  .nav .menu > .menu-item {
    width: 100%;
    text-align: left;
    margin-bottom: 0px;
    padding: 12px;
    line-height: 1.2;
  }

  .nav.mobile-nav .menu > .menu-item {
    border-bottom: 1px solid var(--bg);
    padding: 10px 0;
    font-weight: 500;
    font-size: 18px;
    height: 50px;
  }

  .nav .menu a {
    position: relative;
    top: 1px;
    width: 100%;
    display: block;
    color: var(--text-color);
  }

  .sub-menu {
    display: block;
    max-height: 0;
    overflow: hidden;
    padding-left: 0;
    background: transparent;
    border: none;
    border-left: 1px solid var(--marrone);
    opacity: 0;
    transition: max-height .3s ease-in;
  }

  .sub-menu.open {
    display: block;
    position: initial;
    width: 100%;
    max-height: 300px;
    margin: 6px 0px;
    background: transparent;
    opacity: 1;
  }

  .menu-item-has-children > a {
    position: relative;
  }

  .menu-item-has-children > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: #333;
  }

  .menu-item-has-children > a::after {
    content: "+";
    position: absolute;
    top: -3px;
    right: 10px;
    font-size: 22px;
    cursor: pointer;
    transition: all .3s ease-in-out;
  }

  .menu-item-has-children.open > a::after {
    content: '-';
  }

  .nav .menu a:hover {
    color: var(--marrone);
  }

  .nav .sub-menu li a {
    padding: 6px 10px;
  }

  .nav.mobile-nav .menu > .icon.menu-item:before {
    content: '';
    position: relative;
    width: 50px;
    height: 50px;
    background-size: 35px;
    background-repeat: no-repeat;
    background-position: 0px 8px;
  }

  .mobile-nav .menu-menu-principale-container, .mobile-nav .menu-menu-mobile-container {
    margin-top: 50px;
  }

  .mobile-nav .menu-item-has-children:before {
    display: none;
  }

  /* Fine mobile nav */

  html {
    overflow-x: hidden;
  }

  .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .nav.desktop-nav {
    display: none;
  }

  .site-header .header-tools {
    display: none;
  }

  .site-header {
    padding: 12px 0 10px;
  }
  
  .site-header .flex {
    justify-content: space-between;
  }
  
  .site-header .intro-logo {
    flex-grow: initial;
    width: 160px;
  }

  .main-home {
    padding: 60px 0;
    display: flex;
    flex-direction: column-reverse;
    gap: 80px;
  }

  .testo-main {
    width: 100%;
  }

  .testo-main h1 {
    width: 100%;
    font-size: 32px;
    margin: 0 0 24px 0;
  }

  .testo-main h3 {
    width: 100%;
    margin-bottom: 30px;
    font-size: 20px;
  }

  .cta-main {
    gap: 20px;
  }

  .header-img {
    position: relative;
    right: -60px;
  }

  .header-img:before {
    top: -40px;
    right: -140px;
    width: 320px;
    height: 320px;
  }

  .header-img-wrap {
    width: 240px;
    height: 240px;
  }

  .services-home {
    padding: 120px 0;
  }

  .services-home h3 {
    font-size: 28px;
  }

  .services-home h3 strong {
    display: block;
  }

  .service-card {
    flex-direction: column;
    padding: 20px 0 0;
  }

  .single-card.start {
    width: 100%;
    height: 120px;
  }

  .single-card {
    width: 100%;
    height: 230px;
  }

  .single-card .title-card {
    font-size: 24px;
  }

  .advantage-home {
    padding: 60px 0;
  }

  .advantage-wrap {
    flex-direction: column;
    padding: 40px 0 0;
    gap: 40px;
  }

  .advantage-home h3 {
    font-size: 28px;
  }

  .advantage-home h3 strong {
    display: block;
  }

  .advantage-img:before {
    bottom: -50px;
    left: -180px;
    width: 300px;
    height: 200px;
  }

  .text-advantage ol {
    padding-left: 70px;
  }

  .bandi-home {
    padding: 80px 0 40px;
  }

  .bandi-home h3 {
    font-size: 28px;
  }

  .bandi-home h3 strong {
    display: block;
  }

  .bandi-slider {
    padding: 40px 0 0;
  }

  .bandi-slider .card-bando {
    margin: 0px 10px;
    padding: 20px;
    height: 500px;
    font-size: 16px;
  }

  .card-bando img {
    min-height: 220px;
    margin-bottom: 15px;
  }

  .bandi-slider .card-bando h4 {
    font-size: 24px;
  }

  .card-bando .cta-card {
    font-size: 16px;
    padding: 8px 12px;
  }

  .cta-bando {
    gap: 40px;
  }

  .label-bando {
    font-size: 12px;
  }

  .label-bando:before {
    left: -12px;
  }

  .full-cta-home {
    padding: 60px 0 20px;
  }
 
  .wrap-fch {
    width: 90%;
    flex-direction: column;
    gap: 20px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(48, 99, 173, 1) 0%, rgba(156, 213, 238, 1) 100%);
    padding-bottom: 30px;
  }

  .wrap-fch:before {
    transform: skew(7deg, 7deg);
  }

  .text-fch {
    font-size: 42px;
    width: 100%;
    padding: 28px;
  }
  
  .wrap-fch .cta-primary {
    margin: 0 auto;
    height: 100px;
    width: 220px;
  }

  .process-home {
    padding: 80px 0 60px
  }

  .process-home h3 {
    font-size: 28px;
  }

  .steps-wrap {
    flex-direction: column-reverse;
    padding: 40px 0px 20px;
  }
  
  .steps-video video {
    height: 400px;
  }

  .steps {
    padding: 20px 0;
    width: 100%;
    gap: 40px;
  }

  .steps .step {
    gap: 8px;
    width: 74%;
  }

  .steps .step:before {
    font-size: 60px;
  }

  .steps .step h4 {
    font-size: 24px;
  }

  .steps .step:after {
    left: -14%;
    width: 18px;
  }

  .steps .step1:before {
    left: -30%;
  }

  .steps .step2:before {
    left: -32%;
  }

  .steps .step3:before {
    left: -32%;
  }

  .steps .step4:before {
    content: '4';
    left: -34%;
  }
 
  .text-step {
    font-size: 16px;
  }

  .title-page {
    padding: 14px 0;
  }

  .title-page h1 {
    font-weight: 700;
    font-size: 32px;
  }

  .page-azienda .content-page {
    margin: 40px auto 20px;
    max-width: 100%;
  }

  .page-azienda .content-page h3 {
    font-size: 28px;
  }

  .ginfo {
    padding: 100px 0 40px;
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 120px;
  }

  .ginfo .info {
    max-width: 100%;
  }

  .ginfo .info h4 {
    margin: 0 auto;
    font-size: 24px;
  }

  .ginfo .text-info {
    text-align: center;
    font-size: 16px;
  }

  .ginfo .info:before {
    top: -90px;
    left: 50%;
    transform: translateX(-50%);
  }

  .ginfo .info:after {
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
  }

  .testimonials-wrap {
    margin: 60px 0 80px;
  }

  .testimonials-wrap h3 {
    margin-bottom: 18px;
    font-size: 28px;
  }

  .testimonials-slider {
    margin: 40px 0;
  }

  h4.testimonial-name {
    font-size: 20px;
  }

  .testimonial-role {
    font-size: 16px;
  }

  .testimonial-description {
    max-width: 100%;
    padding: 15px;
    font-size: 16px;
  }

  .testimonial-description p {
    margin: 10px 0;
  }

  .finanza-wrap {
    flex-direction: column;
    gap: 40px;
  }

  .page-standard:has(.sidebar) .content-page {
    width: 100%;
  }

  .content-page {
    margin: 40px 0 0;
  }

  .page-finanza .content-page h3 {
    font-size: 28px;
  }

  .bando-wrap {
    flex-direction: column;
  }

  .bando-wrap > div {
    width: 100%;
    padding: 18px;
  }

  .metodo-bandi {
    grid-template-columns: repeat(1, 1fr);
  }

  .bandi-finanza-slider .card-bando {
    font-size: 16px;
  }

  .bandi-finanza-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .bandi-finanza-grid .card-bando {
    font-size: 16px;
    height: 520px;
  }

  .bandi-finanza-grid .card-bando img {
    max-height: 280px;
    min-height: 220px;
  }

  .branding-wrap {
    flex-direction: column;
    gap: 40px;
  }

  .services-brand {
    grid-template-columns: repeat(1, 1fr);
  }

  .formazione-wrap {
    flex-direction: column;
    gap: 40px;
  }

  .corsi-wrap {
    flex-direction: column;
  }

  .corsi-wrap > div {
    width: 100%;
  }

  .page-contatti .contact-wrap {
    flex-direction: column;
    gap: 40px;
    margin: 40px 0 0;
  }

  .page-contatti .content-page {
    width: 100%;
  }

  .page-contatti .form {
    width: 100%;
  }

  .single-bando-wrap .bando-content {
    margin: 40px 0 0;
  }

  .bando-start {
    flex-direction: column;
    gap: 40px;
    margin: 0 0 60px;
  }

  .bando-start img {
    width: 100%;
  }

  .bando-start .bando-desc {
    width: 100%;
  }

  .agevolazioni-wrap {
    margin: 0 auto 60px;
    width: 100%;
  }
 
  .agevolazioni-wrap h3 {
    margin-bottom: 18px;
    font-size: 28px;
  }

  .agevolazioni-columns {
    flex-direction: column;
  }

  .agevolazione-column:nth-child(2):before {
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
  }

  .agevolazione-column:nth-child(3):before {
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
  }

  .bandi-correlati {
    padding: 40px 0;
  }

  .bandi-correlati h3 {
    margin-bottom: 18px;
    font-size: 28px;
  }

  .bandi-single-bando .card-bando {
    font-size: 16px;
    height: 520px;
  }

  .bandi-single-bando .card-bando img {
    max-height: 280px;
    min-height: 220px;
  }

  .bandi-single-bando .card-bando h4 {
    font-size: 22px;
  }

  .page-faq .faq-wrap {
    margin: 40px auto 20px;
  }

  .page-faq .content-faq {
    grid-template-columns: 1fr;
    gap: 40px;
  }



  .page-standard .sidebar {
    width: 100%;
    margin: 20px 0 0;
  }

  .sidebar .cta-sidebar {
    padding: 20px 6px;
  }

  .sidebar .sidebar-wrap > div:has(.custom-html-widget) {
    padding: 10px;
  }

  footer {
    padding: 40px 0 0;
  }

  .widget-footer > .container.flex {
    flex-direction: column;
  }

  .widget-footer > .container > div {
    width: 100%;
    margin-bottom: 20px;
  }

  .title-widget {
    font-size: 24px;
  }

  .widget-footer ul, .widget-footer p {
    margin: 4px 0 18px;
  }

  .widget-footer img {
    width: 80%;
    margin: 0;
  }
  
  .social-list {
    align-items: flex-end;
  }

  .copyright {
    padding: 30px 0 10px;
  }

  a.wa-widget-button.at-bottom {
    bottom: 60px;
  }

}

@media (max-width: 576px) {



}