.vetstage {
  position: relative;
  background: linear-gradient(180deg, #290a05 0%, #000000 100%);
  padding: 5.9vw 11.11vw 39.93vw;
  overflow: hidden;
}

.vetstage > * {
  position: relative;
  z-index: 1;
}

.vetstage__background {
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
}

.vetstage__background-image {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vetstage__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 4.51vw;
  position: relative;
  z-index: 2;
}

.vetstage__header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vetstage__title {
  font-family: Body Grotesque Large Trial Bold;
  font-weight: 700;
  font-size: 2.29vw;
  line-height: 2.78vw;
  letter-spacing: 0;
  text-transform: uppercase;
  color: white;
  margin: 0;
}

.vetstage__subtitle {
  font-family: TT Travels Regular;
  font-weight: 400;
  font-size: 1.11vw;
  line-height: 1.32vw;
  letter-spacing: 0;
  color: white;
  margin: 0 0 2.78vw;
}

.vetstage__description {
  font-family: Unbounded Regular;
  font-weight: 400;
  font-size: 1.11vw;
  line-height: 1.32vw;
  letter-spacing: 0;
  text-align: center;
  color: white;
  margin: 0;
}

.vetstage__cards {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 1.74vw;
  width: 100%;
}

.vetstage__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 1.74vw;
  padding: 2.78vw;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.69vw;
  box-shadow: 0 0.28vw 0.28vw 0 rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
  min-height: 11.67vw;
  justify-content: center;
}

.vetstage__card *:hover {
  cursor: default;
}

.vetstage__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../../img/vetstage/card-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border-radius: 0.69vw;
  z-index: 0;
  border: 0.07vw solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(0.21vw);
  -webkit-backdrop-filter: blur(0.21vw);
  opacity: 1;
  transition: opacity 0.4s ease;
}

.vetstage__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #d72c2c 0%, #ffa700 100%);
  border-radius: 0.69vw;
  z-index: 0;

  opacity: 0;
  transition: opacity 0.4s ease;
}

.vetstage__card:hover::before {
  opacity: 0;
}

.vetstage__card:hover::after {
  opacity: 1;
}

.vetstage__card-title {
  font-family: Unbounded Regular;
  font-weight: 400;
  font-size: 1.11vw;
  line-height: 1.32vw;
  letter-spacing: 0;
  color: white;
  margin: 0;
  position: relative;
  z-index: 1;
}

.vetstage__card-list {
  font-family: TT Travels Regular;
  font-weight: 400;
  font-size: 1.11vw;
  line-height: 1.32vw;
  letter-spacing: 0;
  color: white;
  margin: 0;
  position: relative;
  z-index: 1;
  padding-left: 1.74vw;
}

.vetstage__actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  column-gap: 1.74vw;
}

.vetstage__button {
  font-family: Unbounded Regular;
  font-weight: 400;
  font-size: 1.11vw;
  line-height: 1.11vw;
  letter-spacing: 0;
  color: white;
  padding: 1.11vw 1.67vw;
  border-radius: 0.69vw;
  transition: all 0.4s ease;
  position: relative;
  display: block;
}

.vetstage__button:hover {
  color: black;
  background: white;
}

.vetstage__button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #d72c2c 0%, #ffa700 100%);
  border-radius: 0.69vw;
  z-index: -1;

  opacity: 1;
  transition: opacity 0.4s ease;
}

.vetstage__button:hover::after {
  opacity: 0;
}

.vetstage__button--secondary::after {
  opacity: 0;
}

.vetstage__button--secondary {
  color: black;
  background: white;
}

.vetstage__button--secondary:hover {
  background: unset;
  color: white;
}

.vetstage__button--secondary:hover::after {
  opacity: 1;
}

.vetstage__people {
  position: absolute;
  width: 100%;
  height: fit-content;
  left: 0;
  bottom: 0;
}

.vetstage__people-image {
  width: 100%;
  height: auto;
}

@media (max-width: 575.5px) {
  .vetstage {
    padding: 14.06vw 0 92.19vw;
  }

  .vetstage__background-image {
    object-fit: cover;
  }

  .vetstage__container {
    row-gap: 10.94vw;
    padding: 0;
    overflow: hidden;
  }

  .vetstage__title {
    font-size: 4.69vw;
    line-height: 5.62vw;
  }

  .vetstage__subtitle {
    font-size: 3.12vw;
    line-height: 3.75vw;
    margin: 0 0 7.81vw;
    text-align: center;
  }

  .vetstage__description {
    font-size: 3.12vw;
    line-height: 3.75vw;
    max-width: 84.38vw;
    text-align: center;
  }

  .vetstage__cards {
    display: flex;
    width: 100%;
    max-width: 100%;
    gap: 3.12vw;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 calc((100vw - 78.12vw) / 2);
    box-sizing: border-box;
  }

  .vetstage__cards::-webkit-scrollbar {
    display: none;
  }

  .vetstage__card {
    flex: 0 0 78.12vw;
    min-width: 78.12vw;
    min-height: 31.25vw;
    padding: 9.38vw 9.38vw;
    box-sizing: border-box;
    scroll-snap-align: center;
  }

  .vetstage__card::before,
  .vetstage__card::after {
    border-radius: 2.19vw;
  }

  .vetstage__card::before {
    border-width: 0.31vw;
    backdrop-filter: blur(0.94vw);
    -webkit-backdrop-filter: blur(0.94vw);
  }

  .vetstage__card-title {
    font-size: 3.44vw;
    line-height: 4.06vw;
  }

  .vetstage__card-list {
    font-size: 3.12vw;
    line-height: 3.75vw;
    padding-left: 6.25vw;
  }

  .vetstage__card-item {
    white-space: nowrap;
  }

  .vetstage__card--accent::before {
    opacity: 0;
  }

  .vetstage__card--accent::after {
    opacity: 1;
  }

  .vetstage__actions {
    flex-direction: column;
    row-gap: 3.12vw;
    column-gap: 0;
  }

  .vetstage__button {
    font-size: 3.44vw;
    line-height: 3.75vw;
    padding: 3.44vw 4.69vw;
    border-radius: 2.19vw;
    text-align: center;
  }

  .vetstage__button::after {
    border-radius: 2.19vw;
  }

  .vetstage__people {
    display: none;
  }

  .vetstage__people-image {
    display: none;
  }

  .vetstage__slider-dots {
    display: none;
  }
}
