:root {
  --vc-orange: #ec6728;
  --vc-orange-dark: #c94f18;
  --vc-main: #737373;
  --vc-dark: #2d3844;
  --vc-darker: #17202a;
  --vc-soft: #eef1f4;
  --vc-line: #dfe4e7;
  --vc-text: #24313f;
  --vc-muted: #667381;
  --vc-white: #fff;
  --vc-shadow: 0 12px 32px rgba(17, 28, 40, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--vc-soft);
  color: var(--vc-text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
}

body,
button,
input {
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.vc-header {
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
}

.vc-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 38px;
  padding: 6px clamp(16px, 4vw, 54px);
  background: #111820;
  color: #dfe4e7;
  font-size: 11px;
}

.vc-legal p {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  text-align: center;
}

.vc-legal p img {
  width: auto;
  height: 20px;
}

.vc-mainbar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 12px clamp(16px, 4vw, 54px);
  background: var(--vc-dark);
  color: var(--vc-white);
}

.vc-logo {
  display: inline-flex;
  align-items: center;
  min-width: 150px;
}

.vc-logo img {
  width: 154px;
  height: auto;
}

.vc-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.vc-nav::-webkit-scrollbar {
  display: none;
}

.vc-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 34px;
  padding: 7px 10px;
  border-bottom: 2px solid transparent;
  color: #f7f8f9;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.vc-nav a:hover,
.vc-nav a:focus-visible {
  border-color: var(--vc-orange);
  background: rgba(255, 255, 255, .08);
  outline: none;
}

.vc-world img {
  width: 20px;
  height: 20px;
}

.vc-login {
  display: grid;
  grid-template-columns: 112px 112px auto auto;
  align-items: center;
  gap: 6px;
}

.vc-login input,
.vc-hero-form input {
  width: 100%;
  min-height: 36px;
  border: 1px solid #cbd2d9;
  border-radius: 6px;
  padding: 8px 10px;
  background: #fff;
  color: #1b2632;
  font-size: 14px;
}

.vc-login button,
.vc-login a,
.vc-hero-form button,
.vc-section-head > a,
.vc-app a,
.vc-promo-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border: 0;
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
}

.vc-login button,
.vc-hero-form button,
.vc-app a,
.vc-promo-grid span {
  background: var(--vc-orange);
  color: #fff;
}

.vc-login a,
.vc-section-head > a {
  background: #dfe4e7;
  color: #1c2834;
}

.vc-login button:hover,
.vc-hero-form button:hover,
.vc-app a:hover,
.vc-promo-grid a:hover span {
  background: var(--vc-orange-dark);
}

main {
  overflow: hidden;
}

.vc-hero {
  display: grid;
  grid-template-columns: minmax(290px, 390px) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 36px);
  align-items: stretch;
  padding: clamp(24px, 5vw, 56px) clamp(16px, 4vw, 54px);
  background: #cbdced;
  color: #fff;
}

.vc-hero-form {
  align-self: center;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  background: rgba(23, 32, 42, .78);
  box-shadow: var(--vc-shadow);
}

.vc-kicker {
  margin: 0 0 10px;
  color: #ffc5a6;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.vc-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 45px);
  line-height: 1.05;
  font-weight: 900;
}

.vc-hero h2 {
  margin: 0 0 22px;
  color: #f2f5f7;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
}

.vc-hero-form form {
  display: grid;
  gap: 10px;
}

.vc-hero-form label {
  display: grid;
  gap: 5px;
  margin: 0;
  color: #dfe4e7;
  font-size: 12px;
  font-weight: 700;
}

.vc-hero-form button {
  min-height: 44px;
  margin-top: 4px;
  font-size: 15px;
}

.vc-hero-media {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(210px, .8fr);
  gap: 14px;
  min-width: 0;
}

.vc-feature-poster,
.vc-mini-promos a,
.vc-promo-grid a,
.vc-banner-wall a,
.vc-media-card,
.vc-provider-card,
.vc-app {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--vc-shadow);
}

.vc-feature-poster img,
.vc-mini-promos img,
.vc-promo-grid img,
.vc-banner-wall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vc-feature-poster {
  width: 100%;
  min-height: 100%;
  aspect-ratio: 657 / 457;
}

.vc-feature-poster span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  min-width: 92px;
  border-radius: 6px;
  padding: 10px 18px;
  background: var(--vc-orange);
  color: #fff;
  font-weight: 900;
  text-align: center;
}

.vc-mini-promos {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.vc-mini-promos a {
  aspect-ratio: 657 / 457;
}

.vc-benefits,
.vc-band,
.vc-sport,
.vc-seo {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 42px) clamp(16px, 3vw, 24px);
}

.vc-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.vc-section-head h2 {
  margin: 0;
  color: #182431;
  font-size: 25px;
  font-weight: 900;
}

.vc-section-head p {
  margin: 4px 0 0;
  color: var(--vc-muted);
  font-size: 14px;
  font-weight: 700;
}

.vc-benefit-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.vc-benefit-grid a {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 86px;
  padding: 14px;
  border: 1px solid #e0e5e9;
  border-radius: 8px;
  background: #fff;
  color: #2d3844;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(29, 43, 56, .08);
}

.vc-benefit-grid img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.vc-benefit-grid span {
  min-width: 0;
  overflow-wrap: break-word;
  font-size: 13px;
}

.vc-band {
  background: transparent;
}

.vc-band-dark {
  max-width: none;
  margin: 0;
  padding-right: max(clamp(16px, 3vw, 24px), calc((100vw - 1280px) / 2 + 24px));
  padding-left: max(clamp(16px, 3vw, 24px), calc((100vw - 1280px) / 2 + 24px));
  background: var(--vc-darker);
}

.vc-band-dark .vc-section-head h2,
.vc-band-dark .vc-section-head p {
  color: #f5f7f8;
}

.vc-promo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.vc-promo-grid a {
  aspect-ratio: 657 / 457;
}

.vc-promo-grid span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  min-width: 82px;
}

.vc-banner-wall {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 6px clamp(16px, 3vw, 24px) 34px;
}

.vc-banner-wall a {
  min-height: 118px;
}

.vc-banner-wall a:first-child,
.vc-banner-wall a:nth-child(3) {
  grid-column: span 2;
}

.vc-banner-wall a:nth-child(2),
.vc-banner-wall a:nth-child(4),
.vc-banner-wall a:nth-child(5) {
  grid-column: span 2;
}

.vc-game-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(148px, 190px);
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 4px 2px 16px;
  scroll-snap-type: inline mandatory;
  scrollbar-color: var(--vc-orange) transparent;
}

.vc-media-card {
  display: block;
  aspect-ratio: 1 / 1;
  scroll-snap-align: start;
  border: 1px solid rgba(19, 30, 42, .08);
  background: #101820;
}

.vc-media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .22s ease;
}

.vc-media-card:hover img,
.vc-feature-poster:hover img,
.vc-mini-promos a:hover img,
.vc-promo-grid a:hover img,
.vc-banner-wall a:hover img {
  transform: scale(1.04);
}

.vc-game-rail-live .vc-media-card {
  border-color: rgba(255, 255, 255, .12);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .25);
}

.vc-provider-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
}

.vc-provider-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 86px;
  border: 1px solid #dfe4e7;
  padding: 16px;
}

.vc-provider-card img {
  width: 132px;
  max-height: 44px;
  object-fit: contain;
}

.vc-sport {
  padding-top: 20px;
}

.vc-live-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--vc-orange);
  font-size: 18px;
  font-weight: 900;
}

.vc-live-title img {
  width: 24px;
  height: 24px;
}

.vc-sport-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 12px;
}

.vc-sport-tabs button {
  min-width: 98px;
  min-height: 36px;
  border: 1px solid #d5dce2;
  border-radius: 6px;
  background: #fff;
  color: var(--vc-text);
  font-weight: 800;
}

.vc-sport-tabs button.is-active {
  border-color: var(--vc-orange);
  background: var(--vc-orange);
  color: #fff;
}

.vc-match-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 14px;
}

.vc-match-card {
  display: grid;
  gap: 12px;
  min-height: 210px;
  border: 1px solid #dfe4e7;
  border-radius: 8px;
  padding: 14px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(29, 43, 56, .08);
}

.vc-match-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.vc-live-badge {
  min-width: 44px;
  border-radius: 4px;
  padding: 4px 7px;
  background: #e02222;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  text-align: center;
}

.vc-region {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  color: var(--vc-muted);
  font-size: 12px;
  font-weight: 800;
}

.vc-region img {
  width: 20px;
  height: 14px;
  object-fit: contain;
}

.vc-teams {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}

.vc-team {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-width: 0;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
}

.vc-team img {
  width: 32px;
  height: 32px;
}

.vc-score {
  min-width: 60px;
  border-radius: 6px;
  padding: 9px 8px;
  background: var(--vc-dark);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  text-align: center;
}

.vc-odds {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.vc-odd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
  border-radius: 6px;
  padding: 8px 10px;
  background: #edf1f4;
  color: #1c2834;
  font-weight: 900;
}

.vc-odd span:first-child {
  color: var(--vc-muted);
}

.vc-app {
  max-width: 1280px;
  margin: 10px auto 30px;
  min-height: 160px;
}

.vc-app img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
}

.vc-app a {
  position: absolute;
  right: 24px;
  bottom: 24px;
  min-height: 42px;
}

.vc-seo {
  border-top: 1px solid #dfe4e7;
  color: #344250;
  font-size: 15px;
}

.vc-seo h1 {
  margin: 0 0 14px;
  color: #17202a;
  font-size: 25px;
  font-weight: 900;
}

.vc-seo h2 {
  margin: 22px 0 10px;
  color: #17202a;
  font-size: 19px;
  font-weight: 900;
}

.vc-seo ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 6px 18px;
  padding-left: 18px;
}

.vc-faq {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.vc-faq details {
  border: 1px solid #dfe4e7;
  border-radius: 8px;
  background: #fff;
}

.vc-faq summary {
  min-height: 48px;
  padding: 13px 16px;
  color: #17202a;
  cursor: pointer;
  font-weight: 900;
}

.vc-faq details p {
  margin: 0;
  border-top: 1px solid #edf1f4;
  padding: 0 16px 16px;
}

.vc-footer {
  position: relative;
  background: var(--vc-dark);
  color: #dfe4e7;
}

.vc-footer-top {
  display: grid;
  grid-template-columns: minmax(240px, .9fr) 2fr;
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 34px clamp(16px, 3vw, 24px);
}

.vc-footer h2,
.vc-footer h3,
.vc-footer p {
  margin-top: 0;
}

.vc-footer-legal h2,
.vc-footer-links h3 {
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.vc-footer-legal > div {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0;
}

.vc-footer-legal img {
  width: auto;
  height: 32px;
  padding: 4px;
  border-radius: 4px;
  background: #fff;
}

.vc-footer-legal p {
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.vc-footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.vc-footer-links div {
  display: grid;
  align-content: start;
  gap: 7px;
}

.vc-footer-links a {
  color: #dfe4e7;
  font-size: 13px;
}

.vc-footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

.vc-payments {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 18px clamp(16px, 3vw, 24px);
  background: #dfe4e7;
}

.vc-payments img {
  width: auto;
  max-width: 86px;
  height: 30px;
  object-fit: contain;
}

.vc-footer-bottom {
  padding: 14px clamp(16px, 3vw, 24px) 70px;
  background: #202b36;
  text-align: center;
}

.vc-footer-bottom p {
  margin: 0;
  color: #dfe4e7;
  font-size: 13px;
  font-weight: 800;
}

.vc-sticky-actions {
  position: fixed;
  right: 14px;
  bottom: 12px;
  z-index: 40;
  display: flex;
  gap: 8px;
}

.vc-sticky-actions a {
  border-radius: 6px;
  padding: 10px 13px;
  background: var(--vc-orange);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(29, 43, 56, .22);
}

@media (max-width: 1180px) {
  .vc-mainbar {
    grid-template-columns: auto 1fr;
  }

  .vc-login {
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .vc-benefit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .vc-promo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .vc-footer-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .vc-legal {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .vc-legal p {
    justify-content: flex-start;
    text-align: left;
  }

  .vc-mainbar {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .vc-logo {
    justify-content: center;
  }

  .vc-nav {
    justify-content: flex-start;
    width: 100%;
  }

  .vc-login {
    grid-template-columns: 1fr 1fr;
  }

  .vc-hero {
    grid-template-columns: 1fr;
  }

  .vc-hero-media {
    grid-template-columns: 1fr;
  }

  .vc-mini-promos {
    grid-template-columns: 1fr 1fr;
  }

  .vc-banner-wall,
  .vc-promo-grid,
  .vc-benefit-grid,
  .vc-footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vc-banner-wall a,
  .vc-banner-wall a:first-child,
  .vc-banner-wall a:nth-child(2),
  .vc-banner-wall a:nth-child(3),
  .vc-banner-wall a:nth-child(4),
  .vc-banner-wall a:nth-child(5) {
    grid-column: span 1;
  }
}

@media (max-width: 600px) {
  .vc-login,
  .vc-promo-grid,
  .vc-benefit-grid,
  .vc-footer-links,
  .vc-mini-promos {
    grid-template-columns: 1fr;
  }

  .vc-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .vc-hero-form {
    padding: 18px;
  }

  .vc-hero h1 {
    font-size: 28px;
  }

  .vc-game-rail {
    grid-auto-columns: minmax(138px, 158px);
  }

  .vc-teams {
    grid-template-columns: 1fr;
  }

  .vc-score {
    justify-self: center;
  }

  .vc-app a {
    right: 14px;
    bottom: 14px;
  }

  .vc-sticky-actions {
    right: 8px;
    bottom: 8px;
  }
}

/* Original-like pass: keep the new DOM, restore the saved page look. */
.vc-header {
  box-shadow: none;
}

.vc-legal {
  justify-content: center;
  min-height: 31px;
  padding: 4px 18px;
  background: #0072bc;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}

.vc-legal p {
  gap: 8px;
}

.vc-legal p img {
  height: 21px;
}

.vc-mainbar {
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 22px;
  min-height: 58px;
  padding: 0 17px;
  background: #f05a00;
}

.vc-logo {
  min-width: 153px;
}

.vc-logo img {
  width: 153px;
}

.vc-nav {
  justify-content: flex-start;
  gap: 0;
}

.vc-nav a {
  min-height: 58px;
  padding: 0 9px;
  border: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}

.vc-nav a:hover,
.vc-nav a:focus-visible {
  background: rgba(255, 255, 255, .14);
}

.vc-world {
  min-height: 38px !important;
  margin-left: 8px;
  border-radius: 18px;
  padding: 0 12px !important;
  background: #fff;
  color: #f05a00 !important;
}

.vc-login {
  grid-template-columns: auto auto;
  gap: 12px;
}

.vc-login input {
  display: none;
}

.vc-login button,
.vc-login a {
  min-width: 108px;
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.vc-login button {
  background: #f05a00;
  color: #fff;
}

.vc-login a {
  border-color: #1bbf30;
  background: #1bbf30;
  color: #fff;
}

.vc-hero {
  display: block;
  min-height: 385px;
  padding: 92px 22vw 74px 22vw;
  background: #cbdced url("../assets/prova_2.jpg") center top / cover no-repeat;
  color: #fff;
}

.vc-hero-form {
  width: min(650px, 45vw);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.vc-kicker {
  display: none;
}

.vc-hero h1 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 38px;
  line-height: 1.14;
  font-weight: 900;
  text-shadow: 0 1px 0 rgba(0, 0, 0, .1);
}

.vc-hero h2 {
  margin: 0 0 22px;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}

.vc-hero-form form {
  grid-template-columns: minmax(165px, 205px) minmax(110px, 120px) minmax(110px, 120px) 118px;
  align-items: end;
  gap: 9px;
}

.vc-hero-form label {
  display: block;
}

.vc-hero-form label span {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.vc-hero-form input {
  min-height: 36px;
  border: 1px solid #b9c1c9;
  border-radius: 4px;
  font-size: 12px;
}

.vc-hero-form button {
  min-height: 37px;
  margin: 0;
  border-radius: 5px;
  background: #ff5b00;
  font-size: 13px;
  font-weight: 900;
}

.vc-hero-media {
  display: none;
}

.vc-benefits {
  max-width: none;
  padding: 22px 16px 36px;
  background: #fff;
}

.vc-benefits .vc-section-head {
  justify-content: center;
  margin-bottom: 27px;
  text-align: center;
}

.vc-benefits .vc-section-head h2 {
  color: #006eb6;
  font-size: 26px;
  line-height: 1.2;
}

.vc-benefits .vc-section-head > a {
  display: none;
}

.vc-benefit-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  max-width: 1120px;
  margin: 0 auto;
}

.vc-benefit-grid a {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 14px;
  min-height: 178px;
  padding: 13px 30px;
  border: 0;
  border-left: 1px solid #d9dde1;
  border-radius: 0;
  background: #fff;
  color: #006eb6;
  box-shadow: none;
  text-align: center;
}

.vc-benefit-grid a:first-child {
  border-left: 0;
}

.vc-benefit-grid img {
  width: 95px;
  height: 95px;
  object-fit: contain;
}

.vc-benefit-grid span {
  font-size: 19px;
  line-height: 1.16;
  font-weight: 500;
}

.vc-band {
  max-width: 1230px;
  padding-top: 8px;
  background: #fff;
}

.vc-band .vc-section-head {
  align-items: center;
  margin-bottom: 13px;
}

.vc-band .vc-section-head > div {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.vc-band .vc-section-head h2 {
  color: #006eb6;
  font-size: 20px;
}

.vc-band .vc-section-head p {
  color: #006eb6;
  font-size: 16px;
  font-weight: 400;
}

.vc-band .vc-section-head h2::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 22px;
  margin-left: 9px;
  background: #ff5b00;
  vertical-align: -5px;
}

.vc-band .vc-section-head > a {
  min-height: 26px;
  padding: 0 8px;
  background: transparent;
  color: #005aa0;
  font-size: 13px;
}

.vc-promo-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 291px);
  grid-template-columns: none;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.vc-promo-grid a {
  aspect-ratio: 657 / 457;
  border-radius: 8px;
  box-shadow: none;
}

.vc-promo-grid span {
  display: none;
}

body {
  background: #fff;
}

@media (max-width: 1400px) {
  .vc-hero {
    padding-left: 12vw;
  }
}

@media (max-width: 1180px) {
  .vc-mainbar {
    grid-template-columns: auto 1fr;
    padding-bottom: 10px;
  }

  .vc-login {
    grid-column: 2;
    justify-self: end;
  }

  .vc-hero {
    padding-left: 7vw;
  }

  .vc-hero-form {
    width: min(620px, 58vw);
  }

  .vc-benefit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .vc-benefit-grid a:nth-child(4) {
    border-left: 0;
  }
}

@media (max-width: 760px) {
  .vc-mainbar {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .vc-login {
    grid-column: auto;
    justify-self: stretch;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    padding: 8px 7px 0;
  }

  .vc-hero {
    min-height: auto;
    padding: 44px 18px 52px;
    background-position: 61% top;
  }

  .vc-hero-form {
    width: 100%;
    max-width: 520px;
  }

  .vc-hero h1 {
    font-size: 29px;
  }

  .vc-hero-form form {
    grid-template-columns: 1fr;
  }

  .vc-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vc-benefit-grid a,
  .vc-benefit-grid a:nth-child(4) {
    border-left: 1px solid #d9dde1;
  }

  .vc-benefit-grid a:nth-child(odd) {
    border-left: 0;
  }

  .vc-benefit-grid span {
    font-size: 16px;
  }
}
