@charset "UTF-8";
/*
 Theme Name: woolenthread-child
 Template: woolenthread
*/
.gradient-bg {
  position: relative;
  background-color: #ffffff;
  overflow: hidden;
}
.gradient-bg > * {
  position: relative;
  z-index: 1;
}
.gradient-bg:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  height: 200%;
  aspect-ratio: 1;
  background: radial-gradient(circle closest-side, #965077 0%, rgba(150, 80, 119, 0.75) 40%, #ffffff 100%);
  animation: moveX 17.3s infinite ease-in-out, moveY 12.1s infinite ease-in-out;
}
.dark-gradient-bg {
  position: relative;
  background: radial-gradient(circle at bottom left, #C676A2, #26171F99 50%);
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - (var(--fluid-gap) / 2)));
  }
}
@keyframes moveX {
  0%, 100% {
    left: 0;
  }
  50% {
    left: 25%;
  }
}
@keyframes moveY {
  0%, 100% {
    top: 0;
  }
  50% {
    top: -25%;
  }
}
.mousetrack {
  position: relative;
  overflow: hidden;
  background: #fff;
}
.mousetrack::before {
  animation: morphingGlow 10s linear infinite;
  content: "";
  position: absolute;
  width: 150%;
  height: 250%;
  left: var(--x);
  top: var(--y);
  background: radial-gradient(circle closest-side, #965077 0%, rgba(150, 80, 119, 0.75) 40%, #ffffff 100%);
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
  z-index: 1;
}
.mousetrack:hover::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.mousetrack > * {
  position: relative;
  z-index: 2;
  pointer-events: auto;
  /* Re-enable for links inside */
}
html *, body * {
  cursor: none !important;
}
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
}
@media (any-pointer: coarse) {
  .custom-cursor {
    display: none !important;
  }
}
.cursor-dot {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
}
@media (any-pointer: coarse) {
  .cursor-dot {
    display: none !important;
  }
}
.cursor-ring {
  position: absolute;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  /* Puoi usare 2px per un look più "quadrato/meccanico" */
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, border-width 0.2s ease;
}
.cursor-ring::before, .cursor-ring::after {
  content: "";
  position: absolute;
  background: #fff;
}
@media (any-pointer: coarse) {
  .cursor-ring {
    display: none !important;
  }
}
body.cursor-pressing .cursor-ring {
  width: 12px;
  height: 12px;
  border-width: 3px;
}
body.cursor-hover .cursor-ring {
  width: 50px;
  height: 50px;
  border-style: dashed;
}
.return-icon {
  display: inline-block;
  background-image: url(/wp-content/themes/woolenthread-child/assets/svg/return-icon.svg);
  height: clamp(22px, 2.03125vw, 39px);
  background-size: contain;
  width: clamp(25px, 2.2916666667vw, 44px);
  background-repeat: no-repeat;
}
.return-icon.white {
  background-image: url(/wp-content/themes/woolenthread-child/assets/svg/return-icon-white.svg);
}
.slick-next:before, .slick-next:after, .slick-prev:before, .slick-prev:after {
  transition: all 0.25s ease;
  content: "" !important;
  display: inline-block;
  width: 20px;
  height: 2px;
  background-color: #C676A2;
  position: absolute;
  top: 50%;
  transform-origin: left;
  transform: rotate(-45deg);
  right: auto;
  left: 0;
}
.slick-prev:after, .slick-next:after {
  transform: rotate(45deg);
  left: auto;
  right: 0;
}
.slick-next:before, .slick-next:after {
  transform-origin: right;
}
.slick-prev:active:before, .slick-next:active:before {
  transform: rotate(-60deg);
}
.slick-prev:active:after, .slick-next:active:after {
  transform: rotate(60deg);
}
body, html {
  font-family: "TikTok Sans", sans-serif;
  box-sizing: border-box;
  outline: none;
  font-size: clamp(16px, 1.1458333333vw, 22px);
  line-height: clamp(20px, 1.40625vw, 27px);
  color: #fff;
  background-color: #26171f;
  font-weight: 400;
}
#page, #content {
  color: #fff;
  background-attachment: fixed;
  /* The base solid color */
  background-color: #26171f;
  /* The dot: color, shape, and size */
  background-image: radial-gradient(#6C3152 2px, transparent 2px);
  /* The spacing: repeat every 70px */
  background-size: clamp(40px, 3.6458333333vw, 70px) clamp(40px, 3.6458333333vw, 70px);
}
@media only screen and (max-width: 768px) {
  #page, #content {
    background-image: radial-gradient(#6C3152 1px, transparent 1px);
  }
}
.t1 {
  font-size: 60px;
  line-height: 70px;
}
h1, h2, h3 {
  margin: 0;
}
a, span {
  color: #000;
  text-decoration: none;
}
header#masthead {
  background-color: #26171F66;
  border-bottom: 1px solid #fff;
  height: 77px;
  padding: 0 !important;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 100;
}
header#masthead #mobile-navigation .menu-button-container {
  left: 25px;
  padding: 28px 0;
}
header#masthead #mobile-navigation .primary-menu-container {
  background-color: #6C3152;
}
header#masthead #mobile-navigation .primary-menu-container #mobile-menu-list {
  height: calc(100% - 150px);
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
header#masthead #mobile-navigation .primary-menu-container #mobile-menu-list li a {
  font-size: 30px;
  color: #ffffff;
}
header#masthead .site-branding {
  height: 100%;
  position: relative;
  padding-left: 40px;
}
header#masthead .site-branding .site-logo {
  height: 100%;
}
header#masthead .site-branding a, header#masthead .site-branding span {
  height: 100%;
  align-items: center;
  display: flex;
}
header#masthead .site-branding a img, header#masthead .site-branding span img {
  height: clamp(25px, 1.8229166667vw, 35px);
}
header#masthead .primary-navigation li {
  width: 175px;
  height: 76px;
  border-left: 1px solid #fff;
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
}
header#masthead .primary-navigation li a {
  color: #fff;
  font-size: clamp(14px, 0.9375vw, 18px);
  line-height: clamp(14px, 0.9375vw, 18px);
  text-align: center;
  font-weight: 500;
  display: inline-block;
  position: relative;
}
header#masthead .primary-navigation li a:after {
  content: "";
  background: #fff;
  height: 1px;
  max-width: 0;
  width: 100%;
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: -1px;
  transition: all 0.25s ease-in-out;
}
header#masthead .primary-navigation li.current-menu-item a:after, header#masthead .primary-navigation li:hover a:after {
  max-width: 100%;
}
header#masthead .primary-navigation li.current-menu-item {
  background-color: rgba(0, 0, 0, 0.54);
}
::-webkit-scrollbar {
  width: 7px;
  background-color: transparent;
}
::-webkit-scrollbar-thumb {
  background-color: #6C3152;
  border-radius: 0px;
}
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0);
  background-color: transparent;
}
::selection {
  background-color: #6C3152 !important;
  color: #fff !important;
}
h1, .h1 {
  font-size: clamp(40px, 3.90625vw, 75px);
  line-height: clamp(45px, 4.4270833333vw, 85px);
  font-weight: 500;
}
.custom-btn {
  border: 1px solid #965077 !important;
  border-radius: 50px !important;
  padding: 14px 24px 14px 19px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 19px !important;
  background-color: transparent !important;
}
.custom-btn span {
  color: #fff !important;
  font-size: clamp(14px, 0.9375vw, 18px) !important;
  line-height: clamp(16px, 1.0416666667vw, 20px) !important;
}
.custom-btn .return-icon {
  width: clamp(20px, 1.4583333333vw, 28px) !important;
  height: clamp(18px, 1.3020833333vw, 25px) !important;
  background-size: contain;
}
.form-switcher {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: clamp(30px, 2.6041666667vw, 50px);
  overflow: hidden;
  border: 1px solid #C676A2;
}
.form-switcher .option {
  width: clamp(160px, 9.375vw, 180px);
  height: clamp(40px, 2.6041666667vw, 50px);
  display: flex;
  align-content: center;
  justify-content: center;
  padding: 10px 0;
}
.form-switcher .option span {
  color: #fff;
}
.form-switcher .option:first-child {
  border-right: 1px solid #C676A2;
}
.form-switcher .option.selected {
  background-color: #6C3152;
}
.modulo .gform_wrapper .gform_fields input:not(input[type="checkbox"]):not(input[type="radio"]), .modulo .gform_wrapper .gform_fields textarea {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #C676A2;
  color: #fff;
  border-radius: 0;
  padding-left: 0;
}
.modulo .gform_wrapper .gform_fields input[type="checkbox"] {
  background-color: #965077;
  border: none;
  width: 15px;
  height: 15px;
}
.modulo .gform_wrapper .gform_fields input[type="checkbox"]::before {
  color: #fff;
}
.modulo .gform_wrapper .gform_fields legend {
  color: #fff;
}
.modulo .gform_wrapper .gform_fields label {
  color: #fff;
  font-size: 14px;
  line-height: 16px;
}
.modulo .gform_wrapper .gform_fields .gfield--type-textarea {
  position: relative;
}
.modulo .gform_wrapper .gform_fields .gfield--type-textarea::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 0px;
  width: calc(100% + 30px);
  height: calc(100% + 13px);
  background-color: #442A38;
  z-index: 1;
}
.modulo .gform_wrapper .gform_fields .gfield--type-textarea textarea {
  min-block-size: clamp(60px, 13.0208333333vw, 250px) !important;
  z-index: 10;
  position: relative;
}
.modulo .gform_wrapper .gform_fields li.gfmc-column {
  grid-column: span 6;
  width: 100%;
}
.modulo .gform_wrapper .gform_fields li.gfmc-column ul {
  display: grid;
  column-gap: var(--gf-form-gap-x);
  grid-template-columns: repeat(12, 1fr);
  row-gap: var(--gf-form-gap-y);
}
.modulo .gform_wrapper .gform_fields .gfield_radio {
  flex-direction: row;
}
.modulo .gform_wrapper .gform-footer {
  justify-content: flex-end;
}
.modulo .gform_wrapper .gform-footer .custom-btn span {
  text-transform: uppercase;
}
.modulo.one-col .gform_wrapper .gform_fields li.gfmc-column {
  grid-column: span 12;
}
.modulo.two-col .gform_wrapper .gform_fields {
  column-gap: clamp(40px, 6.25vw, 120px);
}
.pin-spacer:first-child {
  pointer-events: none;
}
section:not(.section-testata):not(.section-immagine):not(.section-cards:not(.grid)):not(.section-partner-company):not(.section-steps):not(.section-mappa) {
  margin: clamp(50px, 5.2083333333vw, 100px) clamp(30px, 5.2083333333vw, 100px);
}
section.section-testata {
  min-height: 100dvh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  z-index: 1;
}
section.section-testata h1 {
  text-align: center;
  max-width: 1150px;
  position: absolute;
  padding-left: 30px;
  padding-right: 30px;
}
section.section-testata .curtain {
  position: relative;
  width: 100vw;
  height: 50dvh;
  overflow: hidden;
}
section.section-testata .curtain picture {
  position: relative;
  width: 100vw;
  height: 50dvh;
  overflow: hidden;
  display: inline-block;
}
section.section-testata .curtain picture img {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100dvh;
  background-size: cover;
  background-position: center;
  object-fit: cover;
}
section.section-testata .curtain.curtain-top img {
  top: 0;
}
section.section-testata .curtain.curtain-bottom img {
  bottom: 0;
}
section.section-testata .curtain:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
section.section-titolo-testo .titolo {
  margin-bottom: clamp(30px, 6.041vw, 116px);
  width: calc(100% / 3 * 2);
}
section.section-titolo-testo .testo-right {
  max-width: 50%;
  margin-left: 50%;
}
section.section-titolo-testo .testo-right .sottotitolo {
  text-transform: uppercase;
  font-weight: 700;
}
section.section-icone .title {
  margin-bottom: clamp(20px, 2.6041666667vw, 50px);
}
section.section-icone .icone-wrapper {
  border: 1px solid #C676A2;
  border-radius: clamp(25px, 2.34375vw, 45px);
}
section.section-icone .icone-wrapper .slick-list {
  overflow: hidden;
  border-radius: clamp(25px, 2.34375vw, 45px);
}
section.section-icone .icone-wrapper .icona-wrapper {
  border-right: 1px solid #C676A2;
  padding: clamp(60px, 5.625vw, 108px) clamp(30px, 2.8645833333vw, 55px) clamp(35px, 3.90625vw, 75px);
  flex: 1;
  display: flex !important;
  gap: clamp(30px, 3.3854166667vw, 65px);
  flex-direction: column;
  align-items: flex-start;
}
section.section-icone .icone-wrapper .icona-wrapper .icona {
  max-width: clamp(50px, 4.2708333333vw, 82px);
  max-height: clamp(50px, 4.2708333333vw, 82px);
}
section.section-icone .icone-wrapper .icona-wrapper .titolo-icona {
  text-transform: uppercase;
  font-weight: 700;
}
section.section-icone .icone-wrapper .icona-wrapper .testo-icona {
  margin-top: 25px;
}
section.section-icone .icone-wrapper .icona-wrapper.centrato {
  text-align: center;
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
}
section.section-icone .icone-wrapper.grid {
  flex-wrap: wrap;
  align-items: stretch;
  border-radius: clamp(25px, 2.34375vw, 45px);
  display: flex;
}
section.section-icone .icone-wrapper.grid .icona-wrapper {
  flex: unset;
  width: calc(100% / 3);
}
section.section-icone .icone-wrapper.grid .icona-wrapper:not(:nth-child(1)):not(:nth-child(2)):not(:nth-child(3)) {
  border-top: 1px solid #C676A2;
}
section.section-icone .icone-wrapper.grid .icona-wrapper:nth-child(3n) {
  border-right: none;
}
section.section-cards .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(30px, 2.6041666667vw, 50px);
  margin-bottom: clamp(35px, 4.4270833333vw, 85px);
}
section.section-cards .text .subtitle span {
  font-size: clamp(24px, 1.8229166667vw, 35px);
  line-height: clamp(28px, 2.0833333333vw, 40px);
  color: #C676A2;
}
section.section-cards .cards-wrapper {
  display: flex;
  gap: 19px;
}
section.section-cards .cards-wrapper .slick-list {
  margin: 0 -10px;
}
section.section-cards .cards-wrapper .slick-slide {
  margin: 0 10px;
  height: inherit !important;
}
section.section-cards .cards-wrapper .slick-slide > div {
  height: 100%;
}
section.section-cards .cards-wrapper .slick-slide > div a {
  height: 100%;
}
section.section-cards .cards-wrapper .slick-track {
  display: flex !important;
}
section.section-cards .cards-wrapper .card-wrapper {
  border-radius: 45px;
  color: #000000;
  background: #ffffff;
  padding: clamp(50px, 5.625vw, 108px);
  flex: 1;
  display: flex;
  gap: clamp(20px, 3.3854166667vw, 65px);
  flex-direction: column;
  align-items: flex-start;
}
section.section-cards .cards-wrapper .card-wrapper .top-card {
  width: 100%;
}
section.section-cards .cards-wrapper .card-wrapper .top-card .icona {
  position: absolute;
  right: 0;
  height: clamp(60px, 7.0833333333vw, 136px);
}
section.section-cards .cards-wrapper .card-wrapper .top-card .tipologia-card {
  color: #6C3152;
  font-size: clamp(22px, 1.4583333333vw, 28px);
  line-height: clamp(28px, 1.8229166667vw, 35px);
  margin-bottom: 4px;
}
section.section-cards .cards-wrapper .card-wrapper .testo-card {
  margin-top: 25px;
  max-width: calc(100% - 136px);
}
section.section-cards .cards-wrapper .card-wrapper .lista-card {
  font-weight: 600;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
section.section-cards .cards-wrapper .card-wrapper .lista-card li {
  margin-bottom: 9px;
}
section.section-cards .cards-wrapper .card-wrapper .return-icon {
  margin-top: -30px;
}
section.section-cards .cards-wrapper.grid {
  flex-wrap: wrap;
}
section.section-cards .cards-wrapper.grid .card-wrapper {
  flex: unset;
  width: calc((100% - 38px) / 3);
  padding: clamp(30px, 2.6041666667vw, 50px);
  padding-bottom: clamp(40px, 5.2083333333vw, 100px);
}
section.section-cards .cards-wrapper.grid .card-wrapper .top-card .titolo-card {
  font-size: clamp(24px, 1.8229166667vw, 35px);
  line-height: clamp(30px, 2.0833333333vw, 40px);
  font-weight: 500;
}
section.section-cards .cards-wrapper.grid .card-wrapper .testo-card {
  max-width: 100%;
}
section.section-immagine {
  width: 100%;
  position: relative;
  overflow: hidden;
  max-height: 80vh;
  display: flex;
}
section.section-immagine img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  transform: scale(1);
  will-change: transform;
}
section.section-immagine .text {
  position: absolute;
  right: 100px;
  display: flex;
  flex-direction: column;
  align-self: flex-start;
  gap: 70px;
  width: 45%;
  top: 50%;
  transform: translateY(-50%);
}
section.section-immagine .text * {
  color: #fff;
}
section.section-partner {
  text-align: center;
}
section.section-partner .sottotitolo-partner {
  color: #C676A2;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 27px;
  line-height: 35px;
  margin-top: 10px;
}
section.section-partner .loghi-wrapper {
  --fluid-gap: clamp(60px, 8.75vw, 168px);
  display: flex;
  margin-top: clamp(40px, 5.2083333333vw, 100px);
  animation: marquee 20s linear infinite;
  gap: var(--fluid-gap);
  width: max-content;
}
section.section-partner .loghi-wrapper img {
  max-height: clamp(40px, 5.1041666667vw, 98px);
  flex: 0 0 auto;
}
section.section-blog {
  display: flex;
  flex-direction: row;
  align-items: center;
}
section.section-blog .blog-left-wrapper {
  padding: clamp(30px, 5.2083333333vw, 100px) clamp(30px, 7.8125vw, 150px);
}
section.section-blog .blog-left-wrapper .tipologia-blog {
  color: #6C3152;
  font-size: clamp(22px, 1.4583333333vw, 28px);
  line-height: clamp(28px, 1.8229166667vw, 35px);
  margin-bottom: 4px;
}
section.section-blog .blog-left-wrapper .titolo-blog {
  margin-bottom: clamp(20px, 3.125vw, 60px);
}
section.section-blog .blog-left-wrapper .custom-btn {
  margin-top: clamp(20px, 3.125vw, 60px);
}
section.section-blog .blog-right-wrapper {
  width: 100%;
  margin-bottom: 0;
  border-radius: 45px;
  overflow: hidden;
}
section.section-blog .blog-right-wrapper .slick-list {
  margin: 0 -10px;
}
section.section-blog .blog-right-wrapper .slick-slide {
  margin: 0 10px;
  height: inherit !important;
}
section.section-blog .blog-right-wrapper .slick-slide > div {
  height: 100%;
}
section.section-blog .blog-right-wrapper .slick-slide > div a {
  height: 100%;
}
section.section-blog .blog-right-wrapper .slick-track {
  display: flex !important;
}
section.section-blog .blog-right-wrapper .singola-news {
  border-radius: 45px;
  background-color: #ffffff;
  padding: clamp(50px, 7.8125vw, 150px) clamp(40px, 5.2083333333vw, 100px);
  color: #000000;
  display: flex !important;
  flex-direction: column;
  gap: 35px;
}
section.section-blog .blog-right-wrapper .singola-news .titolo-singolo-blog {
  font-size: clamp(24px, 1.8229166667vw, 35px);
  line-height: clamp(30px, 2.0833333333vw, 40px);
}
section.section-blog .blog-right-wrapper .slick-dots {
  bottom: 30px;
}
section.section-blog .blog-right-wrapper .slick-dots li button:before {
  width: 12px;
  height: 12px;
  color: transparent;
  content: "";
  border: 1px solid #000000;
  border-radius: 50%;
  opacity: 1;
}
section.section-blog .blog-right-wrapper .slick-dots li.slick-active button:before, section.section-blog .blog-right-wrapper .slick-dots li:hover button:before {
  background-color: #442A38;
  border-color: #442A38;
}
section.section-contattaci {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(40px, 5.2083333333vw, 100px);
}
section.section-contattaci .container {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  border-radius: clamp(25px, 2.34375vw, 45px);
  border: 1px solid #C676A2;
  overflow: hidden;
}
section.section-contattaci .container .left {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(60px, 5.7291666667vw, 110px) clamp(30px, 5.46875vw, 105px) clamp(30px, 3.125vw, 60px);
  border-right: 1px solid #C676A2;
}
section.section-contattaci .container .left * {
  color: #fff;
}
section.section-contattaci .container .left .par {
  margin-top: clamp(25px, 2.0833333333vw, 40px);
}
section.section-contattaci .container .left .info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: clamp(70px, 6.7708333333vw, 130px);
  gap: clamp(30px, 2.6041666667vw, 50px);
}
section.section-contattaci .container .left .info .single-info {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(14px, 1.3020833333vw, 25px);
}
section.section-contattaci .container .left .info .single-info img {
  max-width: clamp(25px, 1.8229166667vw, 35px);
  max-height: clamp(25px, 1.8229166667vw, 35px);
  width: auto;
}
section.section-contattaci .container .right {
  width: 50%;
  padding: clamp(80px, 7.8125vw, 150px) clamp(30px, 2.6041666667vw, 50px) clamp(30px, 3.125vw, 60px);
}
section.section-contattaci .container .right .modulo.hidden {
  display: none;
}
section.section-partner-company {
  position: relative;
  width: 100%;
}
section.section-partner-company::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
section.section-partner-company .bg {
  width: 100%;
  height: 70vh;
  position: relative;
}
section.section-partner-company .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.section-partner-company .text {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  transform: translate(-50%, -50%);
}
section.section-partner-company .text * {
  color: #fff;
}
section.section-partner-company .text .partner-label span {
  color: #C676A2;
  font-size: clamp(22px, 1.4583333333vw, 28px);
  line-height: clamp(28px, 1.8229166667vw, 35px);
  margin-bottom: 4px;
}
section.section-partner-company .text .subtitle {
  margin-top: 30px;
}
section.section-partner-company .text .subtitle span {
  font-weight: 700;
  text-transform: uppercase;
}
section.section-partner-company .text .custom-btn {
  margin-top: 55px;
  border-color: #fff !important;
}
section.section-steps {
  position: relative;
  border-radius: clamp(25px, 2.34375vw, 45px);
  padding: clamp(30px, 5.46875vw, 105px) 0 clamp(50px, 10.4166666667vw, 200px) clamp(30px, 5.9895833333vw, 115px);
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(30px, 7.8125vw, 150px);
  margin: clamp(50px, 5.2083333333vw, 100px) 0;
}
section.section-steps .top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-right: clamp(30px, 5.9895833333vw, 115px);
}
section.section-steps .top .tipologia {
  font-size: clamp(22px, 1.4583333333vw, 28px);
  line-height: clamp(28px, 1.8229166667vw, 35px);
  color: #C676A2;
}
section.section-steps .container {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  min-width: 100%;
}
section.section-steps .container .single-step {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: clamp(300px, 18.2291666667vw, 350px);
}
section.section-steps .container .single-step .icon {
  height: 136px;
  position: relative;
}
section.section-steps .container .single-step .icon img {
  height: 100%;
  width: auto;
}
section.section-steps .container .single-step .timeline {
  margin: 35px 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  position: relative;
}
section.section-steps .container .single-step .timeline .circle {
  width: 20px;
  height: 20px;
  background-color: #6C3152;
  border-radius: 50%;
  display: block;
}
section.section-steps .container .single-step .timeline .line {
  width: calc(100% - 20px);
  background-color: #6C3152;
  height: 1px;
}
section.section-steps .container .single-step .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
section.section-steps .container .single-step .text .index {
  font-weight: bold;
  color: #C676A2;
}
section.section-steps .container .single-step .text .label span {
  text-transform: uppercase;
}
section.section-forms {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
section.section-forms .text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
}
section.section-forms .text * {
  text-align: center;
  color: #fff;
}
section.section-forms .form-switcher {
  margin: 70px 0 60px;
}
section.section-forms .forms-wrapper {
  padding: clamp(40px, 4.0625vw, 78px) clamp(30px, 2.8645833333vw, 55px) clamp(30px, 2.8645833333vw, 55px);
  border-radius: clamp(25px, 2.34375vw, 45px);
  border: 1px solid #d9d9d9;
  max-width: 100%;
}
section.section-forms .forms-wrapper .modulo.hidden {
  display: none;
}
section.section-faq {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
section.section-faq .right, section.section-faq .left {
  width: 50%;
}
section.section-faq .left {
  padding-left: clamp(30px, 5.9895833333vw, 115px);
  padding-right: clamp(30px, 3.6458333333vw, 70px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(12px, 1.0416666667vw, 20px);
}
section.section-faq .left .tipologia {
  color: #C676A2;
}
section.section-faq .left .title span {
  color: #fff;
}
section.section-faq .right {
  border-radius: clamp(25px, 2.34375vw, 45px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
section.section-faq .right .single-faq {
  padding: clamp(20px, 1.9270833333vw, 37px) clamp(20px, 2.2395833333vw, 43px) clamp(20px, 1.9270833333vw, 37px) clamp(30px, 3.4375vw, 66px);
  width: 100%;
}
section.section-faq .right .single-faq:not(:last-child) {
  border-bottom: 1px solid #6C3152;
}
section.section-faq .right .single-faq .question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
section.section-faq .right .single-faq .question span {
  text-transform: uppercase;
  display: block;
  width: calc(100% - 50px);
}
section.section-faq .right .single-faq .question img {
  width: 28px;
  height: 25px;
  transform: rotate(90deg);
  transition: all 0.5s ease;
}
section.section-faq .right .single-faq .answer {
  height: 0;
  overflow: hidden;
  width: 100%;
  transition: all 0.5s ease;
}
section.section-faq .right .single-faq .answer span {
  padding-top: 40px;
  display: block;
}
section.section-faq .right .single-faq.open .question img {
  transform: rotate(-90deg);
}
section.section-img-text {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 75px;
}
section.section-img-text .left, section.section-img-text .right {
  flex: 1;
  position: relative;
}
section.section-img-text .left {
  display: flex;
  border-radius: clamp(25px, 2.34375vw, 45px);
  overflow: hidden;
}
section.section-img-text .left img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
section.section-img-text .right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
section.section-img-text .right .icon {
  width: 94px;
  position: relative;
}
section.section-img-text .right .icon img {
  width: 100%;
  height: auto;
}
section.section-img-text .right .title {
  margin-top: 40px;
}
section.section-img-text .right .par {
  margin-top: 80px;
}
section.section-contatti {
  display: flex;
  flex-direction: column;
  align-items: center;
}
section.section-contatti > .text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 1.71875vw, 33px);
}
section.section-contatti > .text * {
  text-align: center;
}
section.section-contatti .info {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  margin-top: clamp(40px, 5.9895833333vw, 115px);
}
section.section-contatti .info .single-info {
  width: calc(100% / 3);
  padding: 0 clamp(40px, 6.25vw, 120px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
section.section-contatti .info .single-info:not(:last-child) {
  border-right: 1px solid #C676A2;
}
section.section-contatti .info .single-info .icon {
  height: clamp(30px, 3.3854166667vw, 65px);
  position: relative;
}
section.section-contatti .info .single-info .icon img {
  height: 100%;
  width: auto;
  max-width: clamp(30px, 3.3854166667vw, 65px);
  max-height: clamp(30px, 3.3854166667vw, 65px);
  object-fit: contain;
}
section.section-contatti .info .single-info .text {
  margin-top: 20px;
}
section.section-contatti .info .single-info .text span {
  font-size: clamp(24px, 1.8229166667vw, 35px);
  line-height: clamp(30px, 2.0833333333vw, 40px);
  color: #fff;
}
section.section-contatti:first-child .text {
  margin-top: clamp(50px, 7.2916666667vw, 140px);
}
section.section-mappa {
  width: 100%;
  position: relative;
  display: flex;
}
section.section-mappa iframe {
  width: 100%;
  height: 90vh;
}
#intro {
  margin-bottom: -90vh;
}
.page-id-14 section.section-steps .container .single-step .text strong {
  text-transform: uppercase;
}
.page-id-14 section.section-steps .container .single-step .text span {
  text-transform: unset;
}
.blog header {
  background-color: #26171f !important;
}
.blog #heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(30px, 4.1666666667vw, 80px);
}
.blog #heading .text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(12px, 1.0416666667vw, 20px);
}
.blog #heading .text .tipologia {
  color: #C676A2;
  font-size: clamp(22px, 1.4583333333vw, 28px);
  line-height: clamp(28px, 1.8229166667vw, 35px);
  font-weight: 600;
}
.blog #heading .text .title h1 {
  color: #fff;
}
.blog #heading .filters {
  border-radius: clamp(30px, 2.6041666667vw, 50px);
  border: 1px solid #C676A2;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.blog #heading .filters .single-term {
  width: clamp(180px, 10.9375vw, 210px);
  height: clamp(40px, 2.6041666667vw, 50px);
}
.blog #heading .filters .single-term:not(:last-child) {
  border-right: 1px solid #C676A2;
}
.blog #heading .filters .single-term span {
  color: #fff;
  text-align: center;
}
.blog #heading .filters .single-term.active {
  background-color: #6C3152;
}
.blog #heading .filters .single-term a {
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  display: flex;
}
.blog #first {
  margin-top: clamp(60px, 9.375vw, 180px);
  padding-bottom: clamp(80px, 13.0208333333vw, 250px);
}
.blog #first .container {
  --fluid-gap: clamp(40px, 5.2083333333vw, 100px);
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: var(--fluid-gap);
}
.blog #first .container .single-news {
  width: calc((100% - (var(--fluid-gap) * 2)) / 3);
  position: relative;
  border-radius: clamp(25px, 2.34375vw, 45px);
  border: 1px solid #C676A2;
  overflow: hidden;
}
.blog #first .container .single-news a {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  height: 100%;
}
.blog #first .container .single-news a .top {
  padding: clamp(30px, 3.90625vw, 75px) clamp(20px, 2.34375vw, 45px) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.blog #first .container .single-news a .top .cat {
  text-transform: lowercase;
}
.blog #first .container .single-news a .top * {
  color: #C676A2;
}
.blog #first .container .single-news a .news-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(30px, 2.6041666667vw, 50px);
  height: 100%;
}
.blog #first .container .single-news a .news-content .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 clamp(20px, 2.34375vw, 45px);
  margin-top: 10px;
}
.blog #first .container .single-news a .news-content .text .title span {
  color: #fff;
  font-size: clamp(22px, 1.4583333333vw, 28px);
  line-height: clamp(28px, 1.8229166667vw, 35px);
}
.blog #first .container .single-news a .news-content .text .par {
  margin-top: clamp(20px, 2.0833333333vw, 40px);
  color: #fff;
}
.blog #first .container .single-news a .news-content .text .arrow {
  margin-top: clamp(18px, 1.5625vw, 30px);
}
.blog #first .container .single-news a .news-content .div-img {
  width: 100%;
  height: 350px;
  position: relative;
  border-radius: clamp(25px, 2.34375vw, 45px);
  overflow: hidden;
  margin-top: auto;
}
.blog #first .container .single-news a .news-content .div-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-post .tipologia-top {
  margin-bottom: clamp(20px, 2.0833333333vw, 40px);
  color: #C676A2;
  font-size: clamp(22px, 1.4583333333vw, 28px);
  line-height: clamp(28px, 1.8229166667vw, 35px);
  text-transform: lowercase;
}
.single-post .tipologia-top span {
  color: #C676A2;
}
.page-id-10 #Cards {
  position: relative;
}
.page-id-10 #Cards::before {
  content: "";
  position: absolute;
  bottom: -200px;
  right: -100px;
  width: 600px;
  height: 900px;
  background-image: url(/wp-content/themes/woolenthread-child/assets/svg/circuiti.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
/* 1. Force the track to be a Flexbox container */
.slick-track {
  display: flex !important;
  align-items: stretch;
}
/* 2. Force the slide items to grow */
.slick-slide {
  height: auto !important;
  display: flex !important;
  flex-direction: column;
}
.slick-slide > div {
  flex: 1;
  display: flex;
  flex-direction: column;
}
footer#colophon {
  background-color: #fff;
  color: #000;
}
footer#colophon .footer-top {
  padding: clamp(20px, 2.0833333333vw, 40px) 0;
  text-align: center;
}
footer#colophon .footer-top img {
  max-width: 40vw;
}
footer#colophon .footer-bottom {
  display: flex;
  border-top: 1px solid #000;
}
footer#colophon .footer-bottom .widget {
  flex: 1;
  font-size: clamp(12px, 0.9375vw, 18px);
  line-height: clamp(16px, 1.1458333333vw, 22px);
  border-right: 1px solid #000;
  padding: clamp(20px, 3.4375vw, 66px);
}
footer#colophon .footer-bottom .widget .textwidget {
  display: flex;
  gap: clamp(16px, 1.25vw, 24px);
  flex-direction: column;
  align-items: flex-start;
}
footer#colophon .footer-bottom .widget .textwidget .footer-icon {
  display: block;
  max-height: clamp(20px, 2.34375vw, 45px);
  max-width: clamp(22px, 2.2395833333vw, 43px);
}
footer#colophon .footer-bottom .widget:nth-child(2) .footer-icon {
  margin: 2.5px 0;
}
footer#colophon .footer-bottom .widget:nth-child(3) .footer-icon {
  margin: 7.5px 0;
}
footer#colophon .footer-bottom .widget:last-child {
  flex: 3;
  font-size: clamp(10px, 0.625vw, 12px);
  line-height: clamp(18px, 1.0416666667vw, 20px);
  border-right-width: 0;
}
footer#colophon .footer-bottom .widget:last-child .textwidget {
  align-items: flex-end;
}
footer#colophon .footer-bottom .widget:last-child .textwidget .social {
  display: flex;
  gap: 24px;
}
footer#colophon .footer-bottom .widget:last-child .textwidget .social img {
  margin: 0;
  max-width: clamp(22px, 1.9270833333vw, 37px);
  aspect-ratio: 1;
}
footer#colophon .footer-bottom .widget:last-child .textwidget .copy {
  text-align: right;
}
footer#colophon .footer-bottom .widget:last-child .textwidget .copy a:not(:last-child):after {
  content: "•";
  margin: 0 8px;
}
@media only screen and (max-width: 1024px) {
  section.section-cards .cards-wrapper.grid {
    flex-wrap: nowrap;
  }
  header#masthead .site-branding {
    padding-left: 0;
  }
  .page-id-10 #Cards::before {
    display: none;
  }
  .blog #first .container {
    --fluid-gap: clamp(40px, 5.2083333333vw, 100px);
    gap: var(--fluid-gap);
  }
  .blog #first .container .single-news {
    width: calc((100% - (var(--fluid-gap))) / 2);
  }
}
@media only screen and (max-width: 768px) {
  section.section-cards .cards-wrapper {
    flex-direction: column;
  }
  section.section-cards .cards-wrapper .card-wrapper .testo-card {
    max-width: 100%;
  }
  section.section-titolo-testo .titolo {
    width: 100%;
  }
  section.section-titolo-testo .testo-right {
    max-width: 100%;
    margin-left: 0;
  }
  section.section-blog {
    flex-direction: column;
  }
  section.section-blog .blog-right-wrapper {
    width: 100%;
  }
  section.section-contattaci .container {
    flex-direction: column;
  }
  section.section-contattaci .container .left, section.section-contattaci .container .right {
    width: 100%;
  }
  section.section-img-text {
    flex-direction: column !important;
  }
  section.section-img-text .left, section.section-img-text .right {
    width: 100%;
  }
  section.section-faq {
    flex-direction: column !important;
    gap: 50px;
  }
  section.section-faq .left, section.section-faq .right {
    width: 100%;
  }
  section.section-contatti .info {
    flex-direction: column !important;
    gap: 50px;
  }
  section.section-contatti .info .single-info {
    width: 100%;
    border-right-width: 0 !important;
    flex-direction: row;
    gap: 30px;
    align-items: center;
    justify-content: center;
  }
  section.section-contatti .info .single-info .text {
    margin-top: 0;
  }
  .modulo .gform_wrapper .gform_fields {
    column-gap: 0 !important;
  }
  .modulo .gform_wrapper .gform_fields li.gfmc-column {
    grid-column: span 12;
  }
  .form-switcher {
    flex-direction: column;
  }
  footer#colophon .footer-bottom {
    flex-wrap: wrap;
  }
  footer#colophon .footer-bottom .widget {
    flex-basis: 50%;
    border-right: 0;
  }
  footer#colophon .footer-bottom .widget .textwidget {
    flex-direction: row;
    align-items: center;
  }
  footer#colophon .footer-bottom .widget:nth-child(3) {
    flex-basis: 100%;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
  }
  footer#colophon .footer-bottom .widget:nth-child(3) .textwidget {
    justify-content: center;
  }
  footer#colophon .footer-bottom .widget:last-child .textwidget {
    flex-direction: column;
    align-items: center;
  }
  footer#colophon .footer-bottom .widget:last-child .textwidget .copy {
    text-align: center;
  }
  .blog #heading .filters {
    flex-direction: column;
  }
  .blog #first .container {
    --fluid-gap: clamp(40px, 5.2083333333vw, 100px);
    gap: var(--fluid-gap);
  }
  .blog #first .container .single-news {
    width: 100%;
  }
}
