/* Critical hero styles for industry pages — loaded before style-2024-industry.css */
@keyframes fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}

.background-first-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.background-first-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(/images/header-backgrounde.webp) center center no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  -webkit-animation: fadein .5s ease-in alternate 1;
  -moz-animation: fadein .5s ease-in alternate 1;
  animation: fadein .5s ease-in alternate 1;
}
