.px-banner {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
@container (width <= 960px) {
  .px-banner {
    min-height: 400px;
  }
}
.px-banner.large-height {
  min-height: 1015px;
}
@container (width <= 1024px) {
  .px-banner.large-height {
    min-height: 800px;
  }
}
@container (width <= 768px) {
  .px-banner.large-height {
    min-height: 600px;
  }
}
.px-banner .image, .px-banner .video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.px-banner .image img, .px-banner .image video, .px-banner .video img, .px-banner .video video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.px-banner .text {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: 40px 0;
  color: var(--contrastColorInverted);
  width: var(--baseWidth);
  max-width: var(--maxWidthBig);
}
.px-banner .text h1, .px-banner .text h2, .px-banner .text h3, .px-banner .text h4, .px-banner .text h5 {
  color: var(--contrastColorInverted);
}
.px-banner .text .award {
  margin-top: 50px;
}
@container (width <= 768px) {
  .px-banner .text .award {
    display: none;
  }
}
.px-banner .text .award-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
.px-banner .text .award-inner .award-item {
  position: relative;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 20px;
}
.px-banner .text .award-inner .award-item-icon {
  height: 40px;
}
.px-banner .text .award-inner .award-item-icon img {
  max-height: 40px;
  min-height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}
.px-banner .text .award-inner .award-item-text {
  font-size: 15px;
  line-height: 120%;
  text-align: center;
  hyphens: auto;
  text-wrap: balance;
}
.px-banner .text .award-inner .award-item .circle-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.px-banner .text .award-inner .award-item .circle-svg .circle {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: stroke 3s ease-out forwards;
}
@keyframes stroke {
  to {
    stroke-dashoffset: 0;
  }
}
