:root {
  --primary: #4A93B4;
	--primary-hover: #0A2F3B;
	--secondary: #0B495A;
  --secondary-hover: #FFF482;
  --text-color: #1e1c32;
  --bg: #F9F8F5;
  --font-title: 'Figtree', sans-serif;
  --font-text: 'Figtree', sans-serif;
}

html, body {
  scroll-behavior: auto;
}

body {
	overflow-x: clip;
  position: relative;
  font-family: var(--font-text);
	font-variation-settings:
	"wdth" 100,
	"YTLC" 500;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 300;
  color: var(--text-color);
  margin: 0;
  -webkit-animation: caricamento 1.5s ease-in 1 forwards;
  -moz-animation: caricamento 1.5s ease-in 1 forwards;
  -o-animation: caricamento 1.5s ease-in 1 forwards;
  animation: caricamento 1.5s ease-in 1 forwards;
}

@keyframes caricamento {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes caricamento {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-moz-keyframes caricamento {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  } 
}

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: 300;
  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;
}

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

.flex {
  display: flex;
}

@media (max-width: 767px) {

  .flex-col {
    flex-direction: column;
  }

}

.cta-primary {
  position: relative;
  display: block;
  overflow: hidden;
  text-align: center;
  background: var(--primary);
  color: #fff;
  padding: 6px 40px;
  width: fit-content;
  text-wrap: nowrap;
  font-size: 18px;
  font-weight: 300;
  font-family: var(--font-text);
  cursor: pointer;
  letter-spacing: 1px;
  transition: all .3s ease-in-out;
}

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

.cta-primary:before {
  content: '';
  position: absolute;
  top: -4px;
  background: var(--primary);
  height: 160%;
  width: 160%;
  left: -20%;
  transform: skew(70deg);
  transition: all .3s ease-in-out;
}

.cta-primary:hover:before {
  transform: translate3d(100%, 0, 0);
}

.cta-primary span {
  position: relative;
}

.cta-primary:hover span {
  color: #fff;
}

/* Inizio Header */

#header {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

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

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

.intro-logo .logo {
  position: relative;
  top: 10px;
}

/* Fine Header */

/* Inizio Nav */

.desktop-nav {
  display: block;
}

.mobile-nav {
  display: none;
}

.hamburger {
  display: none;
}

.site-header .intro-logo {
  width: 200px;
}

.site-header .header-tools {
  width: 200px;
}

.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: center;
}

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

.nav .menu li a {
  color: #fff;
  transition: all .3s ease-in-out;
}

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

.nav .menu > li ul {
  top: 46px;
  width: 210px;
  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 {
  padding: 140px 0 100px;
  height: 800px;
  width: 1400px;
  max-width: 100%;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  align-items: flex-end;
}

.hero-video {
  position: absolute;
  top: 0%;
  left: 50%;
  width: 100%;
  height: 800px;
  object-fit: cover;
  transform: translateX(-50%);
  z-index: -1;
}

.hero-desc {
  width: fit-content;
}

.hero-desc h1 {
  color: #fff;
  margin-bottom: 30px;
  font-weight: 300;
}

.about-home {
  padding: 100px 0;
}

h2.section-title {
  position: relative;
  text-transform: uppercase;
}

.about-info > * {
  width: 50%;
}

.about-info .section-title:before {
  content: '';
  position: absolute;
  top: 80px;
  left: 0;
  background: var(--primary);
  width: 108px;
  height: 4px;
}

.about-desc .desc-2 {
  font-size: 16px;
  margin: 20px 0 30px;
}

.about-numbers {
  margin: 120px 0 20px;
  display: flex;
  gap: 80px;
}

.about-numbers .number-title {
  font-size: 24px;
}

.about-numbers .number {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-numbers .number-value {
  color: var(--primary);
  font-size: 30px;
}

.materials-home {
  position: relative;
  padding: 100px 0;
  background: url('../img/bg-materials.jpg') center / cover no-repeat fixed;
}

.materials-home:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0.6;
}

.materials .section-title {
  margin-bottom: 50px;
}

.materials .section-title:before {
  content: '';
  position: absolute;
  top: 50px;
  left: 0;
  background: var(--primary);
  width: 108px;
  height: 4px;
}

.materials-desc {
  width: 50%;
}

.materials-slider {
  width: 80%;
  margin: 100px 0 40px;
}

.materials-slide {
  margin: 0 16px;
}

.materials-slider .materials-slide img {
  display: block;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.materials-slider .title-slide {
  margin: 15px 0 0;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  background-color: transparent;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  line-height: 0;
  outline: none;
}

.arrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  border-top: 2.5px solid var(--primary-hover);
  border-right: 2.5px solid var(--primary-hover);
  transform: rotate(45deg);
  margin-left: -3px;
}

.arrow-dx {
  right: -50px;
}

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

h2.section-title {
  position: relative;
  text-transform: uppercase;
}

.services-info > * {
  width: 50%;
}

.services-info .section-title:before {
  content: '';
  position: absolute;
  top: 80px;
  left: 0;
  background: var(--primary);
  width: 108px;
  height: 4px;
}

.services-box {
  margin: 100px 0 20px;
  gap: 10px;
  flex-wrap: wrap;
}

.services-box .box {
  position: relative;
  width: calc(50% - 10px);
  height: 340px;
  background: var(--primary-hover);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
  text-align: center;
  padding: 20px 40px;
  font-size: 17px;
}

.services-box .box-title {
  font-size: 18px;
  display: none;
}

.box:hover .box-info {
  opacity: 0;
  transition: all .3s ease-in-out;
}

.box:hover > .box-info {
  opacity: 1;
}

.services-box .box:nth-child(1) {
  background-image: url('../img/consulenza-pianificazione.jpg');
}

.services-box .box:nth-child(2) {
  background-image: url('../img/materioteca.jpg');
}

.services-box .box:nth-child(3) {
  background-image: url('../img/fornitura-posa-in-opera.jpg');
}

.services-box .box:nth-child(4) {
  background-image: url('../img/assistenza-post-vendita.jpg');
}

.services-box .box {
  background-repeat: no-repeat;
  background-size: cover;
  transition: all .3s ease-in-out;
}

.services-box .box:hover {
  background-image: initial;
  background: var(--primary-hover);
}

.services-box .box:before {
  content: attr(data-title);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-hover);
  color: #fff;
  font-size: 22px;
  text-align: center;
  z-index: 1;
  opacity: .8;
  transition: all .3s ease-in-out;
}

.services-box .box:hover:before {
  opacity: 0;
}

.services-box .box .box-info {
  opacity: 0;
  transition: all .3s ease-in-out;
}

.services-box .box:hover .box-info {
  opacity: 1;
}

.projects-home {
  position: relative;
  padding: 100px 0;
  background: url('../img/bg-projects.jpg') bottom / cover no-repeat fixed;
}

.projects-home:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  opacity: 0.7;
  z-index: 1;
}

.projects-wrap {
  position: relative;
  z-index: 1;
}

.projects .section-title {
  margin-bottom: 50px;
}

.projects .section-title:before {
  content: '';
  position: absolute;
  top: 50px;
  left: 0;
  background: var(--primary);
  width: 108px;
  height: 4px;
}

.projects-desc {
  width: 50%;
}

.projects-slider {
  margin: 80px 0;
  padding-right: 80px;
}

.single-slide {
  cursor: pointer;
}

.single-slide .img-slide {
  position: relative;
  overflow: hidden;
}

.single-slide .img-slide img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform .4s ease-in-out;
}

.single-slide:hover .img-slide img {
  transform: scale(1.04);
}

.single-slide .title-slide {
  margin: 15px 0 0;
  font-size: 16px;
}

.projects-slider .single-slide {
  margin: 0 16px;
}

.projects-slider .arrow-dx {
  right: 20px;
}

.projects-wrap .arrow-dx:before {
  border-top: 2.5px solid #222;
  border-right: 2.5px solid #222;
}

.partners-home {
  padding: 100px 0;
}

.partners .section-title {
  margin-bottom: 50px;
}

.partners .section-title:before {
  content: '';
  position: absolute;
  top: 50px;
  left: 0;
  background: var(--primary);
  width: 108px;
  height: 4px;
}

.partners-content > * {
  width: 50%;
}

.partners-desc {
  width: 50%;
}

.partners-loghi {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  justify-items: center;
  gap: 40px;
}

.single-logo {
  width: 110px;
  height: 90px;
}

.single-logo img {
  filter: contrast(0.6);
}

.contacts-home {
  padding: 100px 0;
}

.contacts-info {
  justify-content: space-between;
}

.contacts-info > * {
  width: 50%;
}

.contacts-info .contacts-desc {
  width: 40%;
}

.contacts-info .section-title:before {
  content: '';
  position: absolute;
  top: 50px;
  left: 0;
  background: var(--primary);
  width: 108px;
  height: 4px;
}

.contacts-form {
  width: 40%;
  margin: 60px 0 0;
}

/* Fine Home */

/* Inizio Animazioni */

.animate, .animate-left, .animate-right, .animate-fade {
  will-change: opacity, transform;
}

.animate {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-fade {
  opacity: 0;
  transition: opacity 1.1s ease;
}

.animate-fade.is-visible {
  opacity: 1;
}

.animate-left {
  opacity: 0;
  transform: translateX(-22px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.animate-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-right {
  opacity: 0;
  transform: translateX(22px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.animate-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-delay-1 {
  transition-delay: 0.1s;
}

.animate-delay-2 {
  transition-delay: 0.2s;
}

.animate-delay-3 {
  transition-delay: 0.3s;
}

.animate-delay-4 {
  transition-delay: 0.4s;
}

.animate-delay-5 {
  transition-delay: 0.5s;
}

/* Fine Animazioni */

/* 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 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 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: #fff;
  padding: 80px 0 0;
  background: var(--primary-hover);
  font-size: 16px;
}

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

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

.widget-footer > .container > div {
  margin-bottom: 80px;
}

.last-widget-footer {
  gap: 80px;
}

.title-widget {
  color: #fff;
  font-weight: 400;
  font-size: 22px;
}

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

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

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

.widget-footer p {
  font-size: 16px;
  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(--primary-hover);
  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);
}

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%;
  max-width: 200px;
  height: auto;
  object-fit: contain;
  display: block;
}

.design-lab-footer {
  text-transform: uppercase;
  font-size: 22px;
  margin-left: -2px;
}

.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 */

/* Inizio Cursore */

*, *::before, *::after {
  cursor: none !important;
}

#k-cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--secondary);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, background 0.2s;
  z-index: 99999;
}

#k-cursor-circle {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--primary);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease, opacity 0.25s, border-color 0.2s;
  z-index: 99998;
}

body.cursor-hover #k-cursor-circle {
  width: 64px;
  height: 64px;
  opacity: 0.5;
  border-color: var(--primary-hover);
}

body.cursor-hover #k-cursor-dot {
  transform: translate(-50%, -50%) scale(1.8);
  background: var(--primary);
}

@media (hover: none) {

  #k-cursor-dot, #k-cursor-circle {
    display: none;
  }

  *, *::before, *::after {
    cursor: auto !important;
  }
}

/* Fine Cursore */

/* Fine Cursore */

@media (max-width: 1200px) {

  

}

@media (max-width: 992px) {

  html:has(.admin-bar) {
    margin-top: 0 !important;
  }

}

@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: 1px;
    border-radius: 100px;
    width: 100%;
    background: #fff;
    transition: all 0.3s ease-in-out;
  }

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

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

  .hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: #fff;
  }
  
  .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% - 130px);
  }

  .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;
  }

  body {
    font-size: 17px;
  }

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

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

  .cta-primary {
    padding: 6px 30px;
    z-index: 1;
  }

  .menu-open .cta-primary {
    opacity: 0;
  }

  #header {
    height: 100dvh;
    z-index: 1;
  }

  body.admin-bar #header {
    padding-top: 46px;
  }

  .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;
  }

  .hero-video {
    height: 500px;
  }

  .main-home {
    padding: 60px 0;
    display: flex;
    flex-direction: column-reverse;
    gap: 80px;
    height: 500px;
    align-items: flex-start;
  }

  .hero-wrap {
    width: 100%;
  }

  .hero-desc {
    width: 100%;
  }

  .hero-desc h1 {
    margin-bottom: 20px;
    font-size: 22px;
  }

  .about-home {
    padding: 30px 0;
  }

  .about-info > * {
    width: 100%;
  }

  h2.section-title {
    font-size: 26px;
  }

  h2.section-title br {
    display: none;
  }

  .about-info .section-title:before {
    top: 70px;
  }

  .about-numbers {
    margin: 60px 0 30px;
    gap: 40px;
    flex-wrap: wrap;
  }

  .about-numbers .number {
    display: flex;
    flex-direction: column;
    gap: 0px;
  }

  .about-numbers .number-title {
    font-size: 22px;
  }

  .about-numbers .number-value {
    font-size: 26px;
  }

  .materials-home {
    padding: 30px 0;
  }

  .materials-desc {
    width: 100%;
  }

  .materials-slider {
    margin: 60px 0 40px;
  }

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

  .services-info .section-title:before {
    top: 70px;
  }

  .services-info > * {
    width: 100%;
  }

  .services-box {
    margin: 60px 0 40px;
  }

  .services-box .box {
    width: 100%;
    height: 340px;
    gap: 20px;
    padding: 15px;
    font-size: 16px;
  }

  .services-box .box:before {
    opacity: 0;
  }

  .projects-home {
    padding: 50px 0;
  }

  .projects .section-title:before {
    top: 44px;
  }

  .projects-desc {
    width: 100%;
  }

  .partners-home {
    padding: 50px 0;
  }

  .partners-content > * {
    width: 100%;
  }

  .partners-desc {
    width: 100%;
  }

  .partners-loghi {
    grid-template-columns: repeat(2, 1fr);
    margin: 40px 0;
  }

  .contacts-info > * {
    width: 100%;
  }

  .contacts-home {
    padding: 40px 0;
  }

  .contacts-info .section-title:before {
    top: 44px;
  }
 
  .contacts-info .contacts-desc {
    width: 100%;
    margin: 40px 0 20px;
  }

  .contacts-form {
    width: 100%;
    margin: 0 0 20px;
  }

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

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

  .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: 50px 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;
  }

  .widget-footer > .container > div:first-child {
    width: 100%;
  }

  .last-widget-footer {
    gap: 40px;
  }
  
  .social-list {
    align-items: flex-end;
  }

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

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

}

@media (max-width: 576px) {



}