.hiro .carrousel {
  font-size: 40px;
  font-weight: 500;
  margin: 0;
  padding-top: 0;
}


.hiro .carrousel .inner {
  height: auto;
}

.bars-stats.text {
  display: grid;
  grid-template-columns: 4fr 2fr;
  align-items: center;
  gap: 24px;
}

.expand-bar {
  font-size: 128px;
  font-weight: bold;
  border: solid 1px black;
  border-radius: 1000px;
  padding: 0 72px;
  margin-bottom: 60px;
  white-space: nowrap;
  width: 0px;
  position: relative;
  transition: width 3s ease;
  opacity: 1 !important;
  transform: none !important;
  box-sizing: border-box;
  background: white;
}
.expand-bar.fade-in-appear {
  width: var(--width);
  animation: none !important;
}
.expand-bar small {
  font-size: 96px;
  font-weight: bold;
}

.expand-bar img {
  position: absolute;
  top: 0.25em;
  right: 0.25em;
  border-radius: 1000px;
  z-index: 0;
  height: calc(100% - 0.5em);
  opacity: 0;
  transition: opacity 1s 1s ease;
}
.expand-bar.fade-in-appear img {
  opacity: 1;
}

.bar-legend {
  margin-left: 90px;
}

.print-mockup {
  z-index: -1;
  position: relative;
  height: 500px;
}
.print-mockup img {
  margin-top: -200px;
  margin-bottom: -220px;
  margin-right: -60px;
  transform: rotate(-10deg);
  float: right;
}


.expand-bar.day {
  font-size: 64px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  padding-right: 16px;
  margin-bottom: 32px;
}
.expand-bar.day .value {
  color: #0046F9;
  font-weight: 700;
  opacity: 0;
  transition: opacity 600ms 600ms ease;
}
.expand-bar.day.fade-in-appear .value {
  opacity: 1;
}

.prints {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  justify-items: center;
  max-width: 1400px;
  padding: 0 24px;
  margin: 220px auto;
}

.prints > a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin-bottom: 100px;
}
.prints h3{
  font-size: 48px;
  font-weight: 400;
  white-space: nowrap;
  margin-bottom: 0;
  margin-top: 6px;
}

.prints small {
  font-size: 20px;
  margin-top: -12px;
}

.prints p {
  font-size: 20px;
}

.prints .gender {
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 6px;
  justify-content: center;
}
.prints .gender img {
  width: 49px;
  height: 49px;
  border: solid 1px black;
  border-radius: 100%;
}
.prints > a > img {
  max-width: calc(100vw - 48px);
}

@media screen and (max-width: 1000px) {
  .bars-stats.text {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .expand-bar {
    font-size: 64px;
    padding: 0 24px;
    margin-bottom: 24px;
  }
  .expand-bar small {
    font-size: 42px;
  }

  .print-mockup {
    z-index: -1;
    position: relative;
    height: 300px;
  }
  .print-mockup img {
    width: 450px;
    margin-top: 60px;
  }
  h2.contained {
    font-size: 32px;
  }
  .expand-bar.day {
    font-size: 24px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .prints {
    margin-top: 110px;
    margin-bottom: 24px;
  }
}

@media screen and (max-width: 500px) {
  .prints {
    grid-template-columns: 1fr;
  }
}