/** Shopify CDN: Minification failed

Line 46:10 Expected identifier but found whitespace
Line 46:12 Unexpected "{"
Line 46:21 Expected ":"
Line 379:0 Unexpected "}"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:google-ads-banner (INDEX:46) */
.rvhero {
  position: relative;
  width: 100%;
  min-height: 760px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* ----------------------------------------------------------
   Background
   ---------------------------------------------------------- */
.rvhero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.rvhero__video,
.rvhero__fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.rvhero__overlay {
  position: absolute;
  inset: 0;
  background-color: #000000;
  opacity: {{ section.settings.overlay_opacity | divided_by: 100.0 }};
}

/* ----------------------------------------------------------
   Layout
   ---------------------------------------------------------- */
.rvhero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  min-height: 760px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 80px 90px;
  gap: 40px;
}

.rvhero__content {
  max-width: 640px;
  width: 100%;
}

/* ----------------------------------------------------------
   Eyebrow
   ---------------------------------------------------------- */
.rvhero__eyebrow {
  margin-bottom: 18px;
  opacity: 0;
  animation: rvhero-fadein 0.8s ease 0.2s forwards;
}

/* ----------------------------------------------------------
   Heading
   ---------------------------------------------------------- */
.rvhero__heading {
  margin: 0;
  font-family: var(--font-heading) !important;
  font-size: clamp(32px, 4vw, 48px) !important;
  font-weight: 600 !important;
  line-height: 1.05 !important;
  letter-spacing: -0.02em !important;
  color: #ffffff !important;
  max-width: 560px;
  opacity: 0;
  animation: rvhero-fadein 0.8s ease 0.4s forwards;
}

/* ----------------------------------------------------------
   Accent Line — Typewriter
   ---------------------------------------------------------- */
.rvhero__accent {
  margin-top: 16px;
  font-family: var(--font-accent) !important;
  font-size: clamp(18px, 2vw, 26px) !important;
  font-weight: 400 !important;
  letter-spacing: 0.1em !important;
  color: #c41c1c !important;
  text-transform: uppercase !important;
  min-height: 1.4em;
  line-height: 1.4;
}

.rvhero__typewriter {
  display: inline;
  font-family: var(--font-accent) !important;
  font-size: inherit !important;
  font-weight: 400 !important;
  color: inherit !important;
}

.rvhero__cursor {
  display: inline-block;
  font-family: var(--font-accent) !important;
  font-size: inherit !important;
  font-weight: 400 !important;
  color: #c41c1c;
  animation: rvhero-blink 0.8s step-end infinite;
  margin-left: 2px;
}

@keyframes rvhero-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ----------------------------------------------------------
   Body
   ---------------------------------------------------------- */
.rvhero__body {
  max-width: 520px;
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  line-height: 1.78 !important;
  color: rgba(255, 255, 255, 0.72) !important;
  margin-top: 0;
  margin-bottom: 0;
}

/* ----------------------------------------------------------
   Fade-in Utilities
   ---------------------------------------------------------- */
.rvhero__fadein {
  opacity: 0;
  transform: translateY(12px);
  animation: rvhero-fadein-up 0.7s ease var(--delay, 0s) forwards;
}

@keyframes rvhero-fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes rvhero-fadein-up {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ----------------------------------------------------------
   CTA Buttons
   ---------------------------------------------------------- */
.rvhero__cta-row {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 34px;
  flex-wrap: wrap;
}

.rvhero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 32px;
  border-radius: 0;
  text-decoration: none;
  font-family: var(--font-body) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
}

.rvhero__btn--primary {
  background: #c41c1c;
  color: #ffffff !important;
  border: 1px solid #c41c1c;
}

.rvhero__btn--primary:hover {
  background: transparent;
  color: #c41c1c !important;
  border-color: #c41c1c;
}

.rvhero__btn--outline {
  background: transparent;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.rvhero__btn--outline:hover {
  background: #ffffff;
  color: #000000 !important;
  border-color: #ffffff;
}

/* ----------------------------------------------------------
   Stats
   ---------------------------------------------------------- */
.rvhero__stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 560px;
}

.rvhero__stat strong {
  display: block;
  font-family: var(--font-heading) !important;
  font-size: 20px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  line-height: 1;
  margin-bottom: 8px;
}

.rvhero__stat span {
  display: block;
  font-family: var(--font-body) !important;
  font-size: 11px !important;
  color: rgba(255, 255, 255, 0.56) !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.6;
}

/* ----------------------------------------------------------
   Floating Note
   ---------------------------------------------------------- */
.rvhero__floating {
  position: absolute;
  right: 80px;
  bottom: 80px;
  padding: 18px 20px;
  border-radius: 0;
  background: rgba(12, 15, 20, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  max-width: 270px;
}

.rvhero__floating-label {
  display: block;
  font-family: var(--font-accent) !important;
  font-size: 12px !important;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.rvhero__floating p {
  margin: 0;
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82) !important;
}

/* ----------------------------------------------------------
   Scroll Indicator
   ---------------------------------------------------------- */
.rvhero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 24px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.rvhero__scroll span {
  display: block;
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  animation: rvhero-scroll 1.8s ease infinite;
}

@keyframes rvhero-scroll {
  0%   { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(10px); }
}

/* ----------------------------------------------------------
   Responsive
   ---------------------------------------------------------- */
@media screen and (max-width: 1100px) {
  .rvhero__floating { display: none; }
}

@media screen and (max-width: 768px) {
  .rvhero {
    min-height: 600px;
  }

  .rvhero__inner {
    min-height: 600px;
    padding: 64px 24px 56px;
    align-items: flex-end;
  }

  .rvhero__heading {
    font-size: 32px !important;
  }

  .rvhero__accent {
    font-size: 18px !important;
  }

  .rvhero__cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .rvhero__btn {
    width: 100%;
    justify-content: center;
  }

  .rvhero__stats {
    gap: 16px;
  }

  .rvhero__stat {
    min-width: calc(50% - 8px);
  }

  .rvhero__scroll {
    display: none;
  }
}
  .rvhero__heading { font-size: 32px !important; }
  .rvhero__accent { font-size: 18px !important; }
  .rvhero__cta-row {
    flex-direction: column;
    align-items: stretch;
  }
  .rvhero__btn {
    width: 100%;
    justify-content: center;
  }
  .rvhero__stats { gap: 16px; }
  .rvhero__stat { min-width: calc(50% - 8px); }
  .rvhero__scroll { display: none; }
}
/* END_SECTION:google-ads-banner */

/* START_SECTION:product-top (INDEX:130) */
@media(min-width:769px){
.hide-pc{
  display:none;
}
#talktostatic{
  position:static;
}
#talktofixed{
  position:fixed;
  z-index:99;
  top:70px;
}
}
@media(max-width:768px){
.hide-mob{
  display:none;
}
#talktostatic{
  position:static;
}
#talktofixed{
  position:fixed;
  z-index:99;
  top:50px;
}
}
/* END_SECTION:product-top */