/* ==========================================
   INNOVA HEAD SLIDER
   ========================================== */

.innova__head-slider {
  position: relative;
  width: 100%;
  overflow: hidden;

  background: #0f2741;
  color: #ffffff;

  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
}

/* ==========================================
   SLIDER CONTAINER
   ========================================== */

.innova__head-slider-container {
  position: relative;

  width: 100%;
  height: 700px;

  overflow: hidden;
}

/* ==========================================
   SLIDE
   ========================================== */

.innova__head-slider-slide {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;

  padding: 80px 90px;
  box-sizing: border-box;

  opacity: 0;
  visibility: hidden;

  transition: opacity 0.6s ease;
}

.innova__head-slider-slide > * {
  position: relative;
  z-index: 3;
}

/* ==========================================
   BACKGROUND
   ========================================== */

.innova__head-slider-bg {
  position: absolute;
  inset: 0;

  z-index: 1;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ==========================================
   OVERLAY
   ========================================== */

.innova__head-slider-overlay {
  position: absolute;
  inset: 0;

  z-index: 2;

  background: linear-gradient(
    90deg,
    rgba(10, 27, 45, 0.92) 0%,
    rgba(10, 27, 45, 0.82) 38%,
    rgba(10, 27, 45, 0.45) 70%,
    rgba(10, 27, 45, 0.2) 100%
  );
}

/* ==========================================
   CONTENT
   ========================================== */

.innova__head-slider-content {
  position: relative;
  z-index: 3;

  width: 100%;
  max-width: 720px;
}

/* ==========================================
   TITLE
   ========================================== */

.innova__head-slider-title {
  margin: 0 0 24px;

  font-size: clamp(2.6rem, 4vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -1.5px;

  color: #ffffff;
}

.innova__head-slider-title-light {
  display: block;

  font-weight: 300;

  color: rgba(255, 255, 255, 0.82);
}

.innova__head-slider-title-regular {
  display: block;

  font-weight: 700;

  color: #ffffff;
}

/* ==========================================
   DESCRIPTION
   ========================================== */

.innova__head-slider-description {
  max-width: 620px;

  margin-bottom: 34px;

  font-size: 1.05rem;
  line-height: 1.8;
  font-weight: 400;

  color: rgba(255, 255, 255, 0.82);
}

/* ==========================================
   BUTTON
   ========================================== */

.innova__head-slider-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 48px;
  padding: 0 24px;

  background: #c62828;
  color: #ffffff;

  border-radius: 6px;
  border: 1px solid transparent;

  text-decoration: none;

  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.2px;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.innova__head-slider-button:hover {
  background: #a61f1f;

  transform: translateY(-1px);
}

/* ==========================================
   STATS
   ========================================== */

.innova__stats {
  position: relative;
  z-index: 5;

  display: flex;
  align-items: stretch;
  justify-content: center;

  width: 100%;

  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);

  overflow: hidden;
}

/* ==========================================
   STATS ITEM
   ========================================== */

.innova__stats-item {
  flex: 1;

  min-width: 180px;

  padding: 24px 28px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  text-align: center;

  box-sizing: border-box;

  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.innova__stats-item:last-child {
  border-right: none;
}

/* ==========================================
   NUMBER
   ========================================== */

.innova__stats-number {
  display: block;

  font-size: 2rem;
  line-height: 1;

  font-weight: 700;

  color: #ffffff;
}

.innova__stats-number.display-inline {
  display: inline-block;
}

.innova__stats-prefix,
.innova__stats-suffix {
  font-size: 1rem;
  font-weight: 600;

  color: #8fb7e6;
}

/* ==========================================
   LABEL
   ========================================== */

.innova__stats-label {
  margin-top: 10px;

  font-size: 0.9rem;
  line-height: 1.6;
  font-weight: 400;

  color: rgba(255, 255, 255, 0.72);
}

/* ==========================================
   NAVIGATION
   ========================================== */

.innova__head-slider-nav {
  position: absolute;
  top: 50%;

  transform: translateY(-50%);

  width: 48px;
  height: 48px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);

  border: 1px solid rgba(255, 255, 255, 0.08);

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  z-index: 10;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.innova__head-slider-nav:hover {
  background: rgba(255, 255, 255, 0.18);
}

.innova__head-slider-nav--prev {
  left: 24px;
}

.innova__head-slider-nav--next {
  right: 24px;
}

.innova__head-slider-nav img {
  width: 16px;
  height: auto;

  opacity: 0.9;
}

.innova__head-slider-nav--prev img {
  transform: rotate(180deg);
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 1200px) {

  .innova__head-slider-container {
    height: 620px;
  }

  .innova__head-slider-slide {
    padding: 70px 60px;
  }

  .innova__stats-item {
    min-width: 140px;

    padding: 22px 20px;
  }
}

@media (max-width: 992px) {

  .innova__head-slider-container {
    height: 560px;
  }

  .innova__head-slider-slide {
    padding: 120px 40px 80px;

    align-items: flex-end;
  }

  .innova__head-slider-content {
    max-width: 100%;
  }

  .innova__stats {
    flex-wrap: wrap;
  }

  .innova__stats-item {
    flex: 1 1 50%;

    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .innova__stats-item:nth-last-child(-n + 2) {
    border-bottom: none;
  }
}

@media (max-width: 768px) {

  .innova__head-slider-container {
    height: 520px;
  }

  .innova__head-slider-title {
    font-size: 2.2rem;

    line-height: 1.12;
  }

  .innova__head-slider-description {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .innova__stats {
    display: none;
  }

  .innova__stats-item {
    width: 100%;
    min-width: 100%;

    border-right: none;
  }

  .innova__stats-item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .innova__head-slider-nav {
    width: 40px;
    height: 40px;
  }

  .innova__head-slider-nav--prev {
    left: 12px;
  }

  .innova__head-slider-nav--next {
    right: 12px;
  }
}