@font-face {
  font-family: 'NeueMontreal';
  src: url('../assets/fonts/NeueMontreal-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'NeueMontreal';
  src: url('../assets/fonts/NeueMontreal-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'NeueMontreal';
  src: url('../assets/fonts/NeueMontreal-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'NeueMontreal';
  src: url('../assets/fonts/NeueMontreal-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* opzionale: italic */
@font-face {
  font-family: 'NeueMontreal';
  src: url('../assets/fonts/NeueMontreal-Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'NeueMontreal';
  src: url('../assets/fonts/NeueMontreal-BoldItalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

body {
  font-family: 'NeueMontreal', sans-serif;
  font-weight: 400;
}

strong, b { font-weight: 700; }


body {
  font-family: 'NeueMontreal', sans-serif;
}

.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

:root { --marquee-duration: 35s; } 

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-track {
  animation: marquee var(--marquee-duration) linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; transform: translateX(0); }
}

.flip-card {
  position: relative;
  width: 100%;
  height: 150px;
  perspective: 1200px;
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 450ms ease;
  border-radius: 16px;
}

.service-card.is-flipped .flip-inner {
  transform: rotateY(180deg);
}

.flip-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.flip-front {
  position: relative;
}

.flip-back {
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo{
  mix-blend-mode: difference;
}

#logoSvg{
  width: 173px;    
}

#logoSvg *{
  fill: #fff;
}

.flip-card-desktop {
  position: relative;
  width: 300px;
  height: 290px;
  perspective: 1200px;
}

.flip-inner-desktop {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 600ms ease;
  border-radius: 16px;
}

.flip-card-desktop:hover .flip-inner-desktop,
.flip-card-desktop:focus-within .flip-inner-desktop {
  transform: rotateY(180deg);
}

.flip-face-desktop {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 16px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.flip-front-desktop {
  position: relative;
}

.flip-back-desktop {
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}