@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

section.hero.row {
  background: linear-gradient(var(--angle, 0deg), #e5ccab80 0%, #e5ccab80 1.26%, #e0cbad80 19.87%, #d4c8b580 39.24%, #bfc3c280 58.96%, #a2bdd580 78.81%, #8ab8e580 92.48%, #8ab8e580 93.59%);
	animation: advanced-rotate 6s linear infinite;
	background-color: white;
	position: relative;
}

section.hero.row::before {
    content: '';
    display: block;
    position: absolute;
    /*width: 2000px;
    height: 2000px;
    top: 50%;
    left: calc(50% + 300px);
    transform: translate(-50%, -50%);
    background-image: url(images/ipno.png);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
    transform-origin: center; 
    animation: spin 10s linear infinite;*/
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background-image: url(images/cerchi-bianchi.svg);
    background-position: calc(50% + 300px) 50%;
    background-size: 2000px 2000px;
    background-repeat: no-repeat;
    overflow: hidden;
}
section.hero.hero-svg.row::before {
  display: none;
}
section.hero.hero-svg.row {
  position: relative;
  overflow: hidden;
}

.hero-svg-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2000px;
    height: 2000px;
    transform: translate(-50%, -50%) translateX(300px);
    overflow: hidden;
    z-index: 0;
}
.hero-svg-wrapper svg {
  width: 2000px;
  height: 2000px;
}


@keyframes advanced-rotate {
  to {
    --angle: 360deg;
  }
}
.cont-clients {
  overflow: hidden;
  position: relative;
}
.cont-clients::after,
.cont-clients::before {
  position: absolute;
  width: 40px;
  height: 100%;
  content: '';
  z-index: 2;
}
.cont-clients::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}
.cont-clients::after {
  right: 0;
  background: linear-gradient(270deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

#breadcrumbs *,
#breadcrumbs  {
  text-wrap: initial;
}

@media (max-width: 440px) {
  #breadcrumbs {
    font-size: 0.6rem;
  }
}