:root {
  --hero-banner-h: clamp(148px, 22vw, 212px);
  --banner-line: rgba(255, 255, 255, 0.88)
}
.block-hero__banner {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  min-height: var(--hero-banner-h);
  background: rgba(217,217,217,.2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255,255,255,.22)
}
.block-hero__banner-inner {
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  min-height: var(--hero-banner-h);
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  align-items: stretch;
  column-gap: clamp(12px,2vw,24px);
  row-gap: clamp(12px,1.5vh,18px);
  padding: 20px var(--layout-inline)
}
.banner-col {
  box-sizing: border-box;
  min-width: 0;
  display: flex;
  align-items: center;
  padding-inline: 0
}
.banner-col--text {
  grid-column: span 2;
  align-items: stretch;
  justify-content: flex-start
}
.banner-list {
  list-style: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: none;
  min-height: 0
}
.banner-list li {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 12px 20px 12px 0;
  gap: 10px;
  width: 100%;
  max-width: none;
  min-height: 44px;
  height: auto;
  margin: 0;
  flex: none;
  flex-grow: 0;
  align-self: stretch;
  border-bottom: 1px solid rgba(255,255,255,.38);
  font-family: Roboto,sans-serif;
  font-style: normal;
  font-size: clamp(17px, 2.35vw, 22px);
  line-height: 1.35;
  color: #fcfefe
}
.banner-list li:first-child {
  font-weight: 400
}
.banner-list li:not(:first-child) {
  font-weight: 700
}
.banner-list strong {
  font-weight: 700
}
.banner-col--cta {
  justify-content: center
}
.hero-banner-btn {
  position: relative;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 100%;
  padding: clamp(12px,2vw,16px) clamp(10px,1.5vw,16px);
  font-family: Roboto,var(--font),system-ui,sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: calc(19 / 16);
  letter-spacing: normal;
  text-transform: none;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: filter .2s,background .2s,border-color .2s;
  box-sizing: border-box;
  border-radius: 0
}
.hero-banner-btn:hover {
  filter: brightness(1.04)
}
.hero-banner-btn--yellow:hover {
  filter: none;
  background: #eab300;
  box-shadow: 0 2px 14px rgba(234,179,0,.38)
}
.hero-banner-btn--yellow {
  isolation: isolate;
  background: #eab300;
  color: #252529;
  border: none;
  padding: clamp(14px,2.2vw,20px) clamp(18px,2.8vw,30px);
  min-height: clamp(48px,9vw,60px)
}
.hero-banner-btn--outline-light {
  isolation: isolate;
  background: 0 0;
  color: #fcfefe;
  border: 1px solid var(--banner-line);
  font-family: Roboto,var(--font),system-ui,sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(.8125rem, 1.15vw, 1rem);
  line-height: calc(19 / 16);
  padding: clamp(14px,2.2vw,20px) clamp(16px,2.4vw,24px);
  min-height: clamp(48px,9vw,60px)
}
.hero-banner-btn--outline-light:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff
}
.hero-banner-btn--outline-light .hero-banner-btn__corners {
  inset: clamp(5px,1.1vw,6px) clamp(6px,1.25vw,7px)
}
.hero-banner-btn--outline-light .hero-banner-btn__corner {
  border-color: #fcfefe
}
.hero-banner-btn--muted {
  isolation: isolate;
  background: #c1c3c4;
  color: #252529;
  border: none;
  padding: clamp(14px,2.2vw,20px) clamp(16px,2.4vw,24px);
  min-height: clamp(48px,9vw,60px)
}
.hero-banner-btn--muted .hero-banner-btn__corners {
  inset: clamp(5px,1.1vw,6px) clamp(6px,1.25vw,7px)
}
.hero-banner-btn--muted .hero-banner-btn__corner {
  border-color: #fcfefe
}
.hero-banner-btn__corners {
  position: absolute;
  inset: clamp(5px,1vw,8px);
  pointer-events: none
}
.hero-banner-btn__corner {
  position: absolute;
  width: clamp(10px,1.4vw,13px);
  height: clamp(10px,1.4vw,13px);
  border-color: rgba(255,255,255,.9);
  border-style: solid
}
.hero-banner-btn--yellow .hero-banner-btn__corners {
  inset: clamp(5px,1.1vw,6px)
}
.hero-banner-btn--yellow .hero-banner-btn__corner {
  border-color: #fcfefe
}
.hero-banner-btn__corner--tl {
  top: 0;
  left: 0;
  border-width: 1px 0 0 1px
}
.hero-banner-btn__corner--tr {
  top: 0;
  right: 0;
  border-width: 1px 1px 0 0
}
.hero-banner-btn__corner--bl {
  bottom: 0;
  left: 0;
  border-width: 0 0 1px 1px
}
.hero-banner-btn__corner--br {
  bottom: 0;
  right: 0;
  border-width: 0 1px 1px 0
}
button.hero-banner-btn {
  margin: 0;
  font: inherit;
  font-family: Roboto,var(--font),system-ui,sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: calc(19 / 16);
  text-transform: none;
  text-align: center;
  border: none;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none
}
@media (max-width:900px) {
  .block-hero__banner {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: 1;
    min-height: 0;
    background: rgba(217,217,217,.2);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid rgba(255,255,255,.22)
  }
  .block-hero__banner-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: clamp(12px,3vw,20px);
    min-height: 0;
    padding: clamp(16px,4vw,22px) var(--layout-inline) clamp(20px,5vw,28px)
  }
  .banner-col--cta {
    order: -1;
    display: flex;
    flex-direction: column;
    gap: clamp(10px,2.5vw,14px);
    justify-content: stretch;
    padding-block: 0
  }
  .banner-col--text {
    grid-column: auto;
    order: 1;
    padding-block: 0;
    align-items: stretch
  }
  .banner-col {
    padding-block: 0;
    padding-inline: 0
  }
  .banner-list {
    min-height: 0;
    align-items: stretch;
    max-width: none
  }
  .banner-list li {
    padding: 12px 20px 12px 0;
    border-bottom: 1px solid #59595b;
    color: #252529;
    font-size: clamp(17px, 2.35vw, 22px);
    line-height: 1.35;
    font-weight: 400
  }
  .banner-list li:not(:first-child) {
    font-weight: 400
  }
  .banner-list strong {
    font-weight: 700
  }
  .hero-banner-btn {
    max-width: none;
    width: 100%
  }
  .block-hero__banner .hero-banner-btn--muted {
    background: #c1c3c4;
    border: none;
    box-shadow: none
  }
}