﻿:root {
  --surface-invert: #101223;
  --text-invert-primary: #FFF;
  --button-secondary-default: #006DEB;
  --text-primary: #101223;
  --text-secondary: #585D6B;
}

html, body {
  overscroll-behavior: none;
  font-family: Inter;
}

/*bootstrap container overrides*/
@media screen and (min-width: 1230px) {
  .container {
    max-width: 1230px !important;
  }
}
@media screen and (max-width: 576px) {
  .container {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

.btn {
  display: flex;
  padding: var(--spacing-1, 8px) var(--spacing-2, 16px);
  justify-content: center;
  align-items: center;
  gap: var(--spacing-1, 8px);
  flex: 1 0 0;
  color: var(--text-invert-primary) !important;
  text-decoration: none !important;
}
.btn.btn-secondary {
  border-radius: var(--spacing-spacing-xxs, 4px);
  background: var(--button-secondary-default);
}
.btn.btn-outline {
  border-radius: var(--spacing-spacing-xxs, 4px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: radial-gradient(442.04% 133.4% at 2.93% 100%, rgba(14, 16, 24, 0.38) 0%, rgba(21, 23, 30, 0.25) 100%);
}
.btn:hover {
  opacity: 0.8;
}

main .landing-banner {
  color: var(--text-invert-primary);
  min-height: 100vh;
  display: block;
  align-items: center;
  position: relative;
}
@media screen and (min-width: 576px) {
  main .landing-banner {
    min-height: 546px;
    display: flex;
  }
}
main .landing-banner .banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.8);
}
main .landing-banner .container {
  height: 100vh;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 576px) {
  main .landing-banner .container {
    justify-content: center;
    height: auto;
  }
}
@media screen and (min-width: 768px) {
  main .landing-banner .container {
    flex-direction: row;
    display: block;
  }
}
main .landing-banner .container .logo {
  margin-bottom: 5rem;
  padding-top: 6rem;
  display: block;
}
@media screen and (min-width: 576px) {
  main .landing-banner .container .logo {
    display: none;
  }
}
main .landing-banner .container .landing-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  text-align: center;
  justify-content: space-between;
  flex: 1;
}
@media screen and (min-width: 576px) {
  main .landing-banner .container .landing-content {
    max-width: 438px;
    flex: auto;
  }
}
main .landing-banner .container .landing-content .landing-text h1 {
  font-size: 2.75rem;
  font-weight: 600;
  line-height: 1.2em;
  letter-spacing: 0;
  text-align: left;
  margin-bottom: 1.5rem;
}
main .landing-banner .container .landing-content .landing-text h3 {
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.2em;
  letter-spacing: 0;
  text-align: left;
  margin: 0;
}
main .landing-banner .container .landing-content .landing-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  margin-bottom: 8rem;
}
@media screen and (min-width: 576px) {
  main .landing-banner .container .landing-content .landing-actions {
    flex-direction: row;
    justify-content: center;
    margin-bottom: 0rem;
  }
}
main .features {
  text-align: center;
  margin-top: 6rem;
  margin-bottom: 6rem;
  color: var(--text-primary);
}
main .features .features-overline {
  font-size: 0.75rem;
  line-height: 1.2em;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rz-text-color);
  margin-bottom: 0.5em;
  margin-bottom: 3rem;
  color: var(--text-secondary);
}
main .features .features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media screen and (min-width: 576px) {
  main .features .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1280px) {
  main .features .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
main .features .feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin: 0 3rem;
}
@media screen and (min-width: 576px) {
  main .features .feature-item {
    margin: 0;
  }
}
main .features .feature-item img {
  max-width: 80px;
  height: auto;
}
main .features .feature-item .feature-text h3 {
  font-size: 1rem;
  line-height: 1.2em;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--rz-text-title-color);
  margin-bottom: 0.5em;
  margin-bottom: 0.5rem;
}
main .features .feature-item .feature-text p {
  font-size: 1rem;
  line-height: 1.2em;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--rz-text-color);
  margin-bottom: 0.5em;
  margin: 0;
}

header.app-bar {
  background-color: transparent;
  height: 3.5rem;
  color: var(--text-invert-primary);
  align-items: center;
  display: none;
}
@media screen and (min-width: 576px) {
  header.app-bar {
    background-color: var(--surface-invert);
    display: flex;
  }
}
header.app-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header.app-bar .container a {
  display: block;
}
header.app-bar .container .phone-number {
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  border: 1px solid var(--border-light, #FFF);
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
header.app-bar .container .phone-number i {
  font-size: 1rem;
  width: 1rem;
  height: 1rem;
}
header.app-bar .container .phone-number a {
  font-size: 1rem;
  font-weight: 600;
  line-height: normal;
  text-align: left;
  color: inherit;
}

footer.footer-container {
  padding: 1.5rem 0;
  background: var(--surface-invert);
}
footer.footer-container * {
  color: var(--text-invert-primary);
}
footer.footer-container .stack-big-gap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
footer.footer-container .stack-small-gap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
footer.footer-container .stack-small-gap a {
  font-size: 0.75rem;
  line-height: 1.2em;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--rz-text-color);
  margin-bottom: 0.5em;
}
footer.footer-container .footer-grid {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: 1fr;
}
footer.footer-container .footer-grid div:has(.dealers-button) {
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  footer.footer-container .footer-grid {
    grid-template-columns: 140px 1fr;
  }
}
@media screen and (min-width: 1280px) {
  footer.footer-container .footer-grid {
    grid-template-columns: 1fr 4fr;
  }
  footer.footer-container .footer-grid .dealers-button {
    max-width: 192px;
  }
}
footer.footer-container .footer-grid .footer-grid-links {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  footer.footer-container .footer-grid .footer-grid-links {
    gap: 1rem;
    grid-template-columns: repeat(2, 234px);
    justify-content: flex-end;
  }
}
@media screen and (min-width: 1280px) {
  footer.footer-container .footer-grid .footer-grid-links {
    grid-template-columns: repeat(2, 1fr);
  }
}
footer.footer-container .footer-grid .footer-grid-links .footer-grid-inner-links {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: 1fr;
  align-content: baseline;
}
@media screen and (min-width: 768px) {
  footer.footer-container .footer-grid .footer-grid-links .footer-grid-inner-links .stack-small-gap:first-child {
    padding-top: 0.5rem;
    position: relative;
  }
  footer.footer-container .footer-grid .footer-grid-links .footer-grid-inner-links .stack-small-gap:first-child::after {
    content: "";
    width: 24px;
    height: 1px;
    background: #005397;
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media screen and (min-width: 1280px) {
  footer.footer-container .footer-grid .footer-grid-links .footer-grid-inner-links {
    grid-template-columns: repeat(2, 1fr);
  }
  footer.footer-container .footer-grid .footer-grid-links .footer-grid-inner-links .stack-small-gap {
    padding-top: 0.5rem;
    position: relative;
  }
  footer.footer-container .footer-grid .footer-grid-links .footer-grid-inner-links .stack-small-gap::after {
    content: "";
    width: 24px;
    height: 1px;
    background: #005397;
    position: absolute;
    top: 0;
    left: 0;
  }
}
footer.footer-container .footer-disclaimer {
  text-align: left;
  font-size: 0.75rem;
  line-height: 1.2em;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--rz-text-color);
  margin-bottom: 0.5em;
  margin: 0;
}
@media screen and (min-width: 768px) {
  footer.footer-container .footer-disclaimer {
    text-align: right;
  }
}

#bubble-chat {
  position: fixed;
  bottom: 2rem;
  width: 100vw;
  z-index: 9999;
}
#bubble-chat .container {
  display: flex;
  justify-content: flex-end;
}
#bubble-chat .container > div {
  position: relative;
}
#bubble-chat button#chat-toggle-btn {
  font-size: 26px;
  color: white;
  display: flex;
  width: 56px;
  height: 56px;
  padding: 12px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: var(--radius-radius-full, 32px);
  background: var(--Button-Primary, #006DEB);
  box-shadow: 0 8px 8px 0 rgba(16, 18, 35, 0.1);
  border: none;
}
#bubble-chat .bubble-chat-content {
  width: 300px;
  border-radius: 8px;
  background: var(--surface-background-primary, #FFF);
  box-shadow: 0 16px 16px 0 rgba(16, 18, 35, 0.1);
  position: absolute;
  z-index: 9999;
  bottom: calc(56px + 1rem);
  right: 0;
  transition: display 0.3s ease;
}
#bubble-chat .bubble-chat-content .bubble-chat-content-header {
  display: flex;
  justify-content: space-between;
  padding: 20px 20px 8px 20px;
  gap: 0.5rem;
  align-items: flex-start;
}
#bubble-chat .bubble-chat-content .bubble-chat-content-header h1 {
  color: var(--text-primary, #101223);
  /* H4 */
  font-family: Inter;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
#bubble-chat .bubble-chat-content .bubble-chat-content-header button {
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  height: 12px;
}
#bubble-chat .bubble-chat-content .bubble-chat-content-description {
  display: flex;
  padding: 20px;
  gap: 1.5rem;
  flex-direction: column;
}
#bubble-chat .bubble-chat-content .bubble-chat-content-description p {
  color: var(--text-secondary, #585D6B);
  /* Body 1 */
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}
#bubble-chat .bubble-chat-content .bubble-chat-content-description > div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#bubble-chat .bubble-chat-content .bubble-chat-content-description > div .label {
  color: var(--text-secondary, #585D6B);
  /* Overline */
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin: 0;
}
#bubble-chat .bubble-chat-content .bubble-chat-content-description > div .subtitle {
  color: var(--text-primary, #101223);
  /* Mobile Subtitle */
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 0;
}
#bubble-chat .bubble-chat-content .bubble-chat-content-description > div .contact-link {
  color: var(--button-info-hover, #001EB6);
  /* Body 1 Bold */
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
#bubble-chat .bubble-chat-content .bubble-chat-content-description > div .contact-section {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
