/* Volvo Razborka — Homepage body styles */
:root {
  --vr-primary: #1a6db5;
  --vr-primary-dark: #0d4a7a;
  --vr-primary-light: #32a9df;
  --vr-accent: #e63946;
  --vr-text: #1a1a1a;
  --vr-text-muted: #5e5e5e;
  --vr-bg: #f5f7fa;
  --vr-white: #ffffff;
  --vr-shadow: 0 4px 20px rgba(0,0,0,0.08);
  --vr-radius: 10px;
}

.vr-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero — EuroAuto style */
.vr-hero.vr-hero-euro {
  background: #fff;
  color: #1a1a1a;
  padding: 48px 0 36px;
  position: relative;
  overflow: visible;
  margin-bottom: 0;
  border-bottom: 1px solid #eef1f5;
}
.vr-hero.vr-hero-euro::before { display: none; }
.vr-hero-top {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 32px;
  align-items: center;
}
.vr-hero.vr-hero-euro h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 16px;
  color: #3d4a5c;
}
.vr-hero.vr-hero-euro p {
  font-size: 17px;
  margin: 0 0 24px;
  max-width: 520px;
  color: #5e6b7a;
  line-height: 1.55;
  opacity: 1;
}
.vr-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.vr-hero-visual {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 800px;
}
.vr-hero-glow {
  position: absolute;
  width: 78%;
  height: 78%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(50,169,223,0.18) 0%, rgba(255,255,255,0) 70%);
  pointer-events: none;
}
.vr-hero-parallax-img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  will-change: transform;
  transition: transform 0.05s linear;
  filter: drop-shadow(0 18px 40px rgba(13,59,102,0.18));
  user-select: none;
  pointer-events: none;
}
.vr-hero-search {
  margin-top: 28px;
  background: #f3f6fa;
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 2px 12px rgba(16,24,40,0.04);
}
.vr-hero-search .vr-search-form {
  display: flex;
  gap: 10px;
  position: relative;
  max-width: 100%;
  margin: 0;
}
.vr-hero-search .vr-search-form input[type=search] {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid #d8dee8;
  border-radius: 10px;
  font-size: 15px;
  background: #fff;
}
.vr-hero-search .vr-search-form button {
  padding: 14px 26px;
  border-radius: 10px;
  white-space: nowrap;
}
.vr-hero-search .vr-search-suggest {
  left: 0;
  right: 120px;
  top: calc(100% + 6px);
}
@media (max-width: 900px) {
  .vr-hero-top { grid-template-columns: 1fr; text-align: center; }
  .vr-hero.vr-hero-euro h1 { font-size: 30px; }
  .vr-hero.vr-hero-euro p { margin-left: auto; margin-right: auto; }
  .vr-hero-btns { justify-content: center; }
  .vr-hero-visual { min-height: 240px; order: -1; }
}
@media (max-width: 600px) {
  .vr-hero.vr-hero-euro { padding: 28px 0 24px; }
  .vr-hero-search .vr-search-form { flex-direction: column; }
  .vr-hero-search .vr-search-suggest { right: 0; }
}

/* Buttons */
.vr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none !important;
  line-height: 1.4;
}
.vr-btn-primary {
  background: var(--vr-primary);
  color: #fff !important;
}
.vr-btn-primary:hover {
  background: var(--vr-primary-dark);
  color: #fff !important;
}
.vr-btn-outline {
  background: transparent;
  border: 2px solid var(--vr-primary);
  color: var(--vr-primary) !important;
}
.vr-btn-outline:hover {
  background: var(--vr-primary);
  color: #fff !important;
}
.vr-btn-accent {
  background: var(--vr-accent);
  color: #fff !important;
}
.vr-btn-accent:hover {
  background: #c1121f;
  color: #fff !important;
}
.vr-btn-lg {
  padding: 14px 28px;
  font-size: 16px;
}
.vr-btn-whatsapp {
  background: #25d366;
  color: #fff !important;
}
.vr-btn-whatsapp:hover {
  background: #1da851;
  color: #fff !important;
}
.vr-btn-outline-white {
  background: transparent;
  border: 2px solid #fff;
  color: #fff !important;
}
.vr-btn-outline-white:hover {
  background: #fff;
  color: var(--vr-primary) !important;
}

/* Sections */
.vr-section {
  padding: 70px 0;
}
.vr-section-title {
  text-align: center;
  margin-bottom: 50px;
}
.vr-section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--vr-text);
}
.vr-section-title p {
  color: var(--vr-text-muted);
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto;
}

/* Features */
.vr-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.vr-feature-card {
  background: var(--vr-white);
  border-radius: var(--vr-radius);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--vr-shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.vr-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.vr-feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--vr-primary), var(--vr-primary-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
}
.vr-feature-card h3 {
  font-size: 17px;
  margin: 0 0 8px;
  color: var(--vr-text);
}
.vr-feature-card p {
  font-size: 14px;
  color: var(--vr-text-muted);
  margin: 0;
}

/* Services */
.vr-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.vr-service-card {
  background: var(--vr-white);
  border-radius: var(--vr-radius);
  overflow: hidden;
  box-shadow: var(--vr-shadow);
  transition: transform 0.2s;
}
.vr-service-card:hover {
  transform: translateY(-5px);
}
.vr-service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.vr-service-body {
  padding: 24px;
}
.vr-service-body h3 {
  font-size: 20px;
  margin: 0 0 10px;
  color: var(--vr-text);
}
.vr-service-body p {
  color: var(--vr-text-muted);
  font-size: 15px;
  margin: 0 0 16px;
}

/* Cars */
.vr-cars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}
.vr-car-card {
  background: var(--vr-white);
  border-radius: var(--vr-radius);
  overflow: hidden;
  box-shadow: var(--vr-shadow);
  transition: 0.2s;
}
.vr-car-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}
.vr-car-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  background: #e8eef5;
  display: block;
}
.vr-car-body {
  padding: 18px;
}
.vr-car-body h3 {
  font-size: 16px;
  margin: 0 0 6px;
  color: var(--vr-text);
}
.vr-car-body p {
  font-size: 13px;
  color: var(--vr-text-muted);
  margin: 0;
}

/* CTA */
.vr-cta-block {
  background: linear-gradient(135deg, var(--vr-primary-dark), var(--vr-primary));
  color: #fff;
  border-radius: 16px;
  padding: 50px 40px;
  text-align: center;
  margin: 20px 0;
}
.vr-cta-block h2 {
  font-size: 28px;
  margin: 0 0 12px;
  color: #fff;
}
.vr-cta-block p {
  opacity: 0.9;
  margin: 0 0 24px;
  font-size: 17px;
  color: #fff;
}

.vr-text-center { text-align: center; }
.vr-mt-4 { margin-top: 24px; }

/* Responsive */
@media (max-width: 992px) {
  .vr-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .vr-hero h1 { font-size: 34px; }
  .vr-hero p { margin-left: auto; margin-right: auto; }
  .vr-hero-btns { justify-content: center; }
  .vr-features { grid-template-columns: repeat(2, 1fr); }
  .vr-services { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .vr-features { grid-template-columns: 1fr; }
  .vr-services { grid-template-columns: 1fr; }
  .vr-hero { padding: 50px 0; }
  .vr-hero h1 { font-size: 28px; }
  .vr-section { padding: 50px 0; }
  .vr-cta-block { padding: 36px 24px; }
}

/* ========== CONTACTS PAGE ========== */
.vr-page-hero {
  background: linear-gradient(135deg, #0d3b66 0%, #1a6db5 50%, #32a9df 100%);
  color: #fff;
  padding: 50px 0;
  margin-bottom: 0;
}
.vr-page-hero h1 {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #fff;
}
.vr-page-hero p {
  opacity: 0.9;
  max-width: 600px;
  margin: 0;
  font-size: 17px;
  color: #fff;
}

.vr-contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}
.vr-contact-info {
  background: var(--vr-white);
  border-radius: var(--vr-radius);
  padding: 36px;
  box-shadow: var(--vr-shadow);
}
.vr-contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}
.vr-contact-item:last-child {
  margin-bottom: 0;
}
.vr-contact-icon {
  width: 48px;
  height: 48px;
  background: #e8f4fc;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--vr-primary);
  flex-shrink: 0;
}
.vr-contact-item h4 {
  font-size: 15px;
  color: var(--vr-text-muted);
  margin: 0 0 4px;
  font-weight: 500;
}
.vr-contact-item p,
.vr-contact-item a {
  font-size: 17px;
  font-weight: 500;
  color: var(--vr-text);
  margin: 0;
  line-height: 1.5;
}
.vr-contact-item a {
  color: var(--vr-primary);
  text-decoration: none;
}
.vr-contact-item a:hover {
  color: var(--vr-primary-dark);
}
.vr-contact-note {
  font-size: 14px !important;
  color: var(--vr-text-muted) !important;
  font-weight: 400 !important;
  margin-top: 4px !important;
}
.vr-map-wrap {
  border-radius: var(--vr-radius);
  overflow: hidden;
  box-shadow: var(--vr-shadow);
  width: 100%;
  height: 100%;
  min-height: 520px;
  background: #e0e0e0;
  position: relative;
  align-self: stretch;
}
.vr-map-wrap iframe,
.vr-map-wrap > ymaps,
.vr-map-wrap > div {
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  border: 0;
  display: block;
}

@media (max-width: 992px) {
  .vr-contacts-grid {
    grid-template-columns: 1fr;
  }
  .vr-map-wrap {
    height: 380px;
    min-height: 380px;
  }
}

@media (max-width: 600px) {
  .vr-map-wrap {
    height: 300px;
    min-height: 300px;
  }
}

/* ========== ENGINES PAGE ========== */
.vr-engines-intro {
  background: var(--vr-white);
  border-radius: var(--vr-radius);
  padding: 40px;
  box-shadow: var(--vr-shadow);
  margin-bottom: 40px;
}
.vr-engines-intro h2 {
  font-size: 26px;
  margin: 0 0 16px;
  color: var(--vr-text);
}
.vr-engines-intro > p {
  color: var(--vr-text-muted);
  margin: 0 0 16px;
  line-height: 1.65;
}
.vr-engines-intro > p:last-of-type {
  margin-bottom: 0;
}

.vr-engines-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.vr-engine-card {
  background: var(--vr-white);
  border-radius: var(--vr-radius);
  padding: 24px;
  box-shadow: var(--vr-shadow);
  border-left: 4px solid var(--vr-primary);
}
.vr-engine-card h3 {
  font-size: 18px;
  margin: 0 0 8px;
  color: var(--vr-text);
}
.vr-engine-card .vr-models {
  font-size: 14px;
  color: var(--vr-text-muted);
  margin-bottom: 12px;
}
.vr-engine-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
}
.vr-engine-card li {
  padding: 4px 0 4px 18px;
  position: relative;
  color: var(--vr-text);
}
.vr-engine-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--vr-primary);
  font-weight: 700;
}

.vr-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 24px;
}
.vr-step-num {
  font-size: 28px;
  font-weight: 700;
  color: var(--vr-primary);
  margin-bottom: 8px;
  line-height: 1;
}
.vr-step h3 {
  font-size: 17px;
  margin: 0 0 6px;
  color: var(--vr-text);
}
.vr-step p {
  font-size: 14px;
  color: var(--vr-text-muted);
  margin: 0;
}

.vr-features-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.vr-feature-card-border {
  box-shadow: none !important;
  border: 1px solid #e5e9ef;
}

@media (max-width: 768px) {
  .vr-features-3 {
    grid-template-columns: 1fr;
  }
  .vr-engines-intro {
    padding: 28px 20px;
  }
}


/* Hero exploded layers */
.vr-hero-visual{overflow:visible}
.vr-hero-part{
  position:absolute;
  z-index:2;
  pointer-events:none;
  user-select:none;
  filter:drop-shadow(0 8px 16px rgba(0,0,0,.12));
  opacity:.95;
}
.vr-hero.vr-hero-euro .vr-hero-parallax-img{
  background:transparent;
  border-radius:12px;
  mix-blend-mode:normal;
}
.vr-hero-glow{
  background: radial-gradient(circle, rgba(50,169,223,0.22) 0%, rgba(255,255,255,0) 68%) !important;
  width:90% !important;
  height:90% !important;
}


/* === HERO FIX (force EuroAuto layout) === */
section.vr-hero.vr-hero-euro {
  background: #ffffff !important;
  background-image: none !important;
  color: #1a1a1a !important;
  padding: 40px 0 32px !important;
  overflow: visible !important;
  border-bottom: 1px solid #eef1f5 !important;
  z-index: 100 !important;
}
section.vr-hero.vr-hero-euro h1 {
  color: #2c3a4a !important;
  font-size: 38px !important;
  line-height: 1.2 !important;
  margin: 0 0 14px !important;
}
section.vr-hero.vr-hero-euro p {
  color: #5e6b7a !important;
  opacity: 1 !important;
  font-size: 16px !important;
  max-width: 480px !important;
}
section.vr-hero.vr-hero-euro .vr-hero-top {
  display: grid !important;
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 1.15fr) !important;
  gap: 28px 40px !important;
  align-items: center !important;
}
section.vr-hero.vr-hero-euro .vr-hero-btns {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  justify-content: flex-start !important;
}
section.vr-hero.vr-hero-euro .vr-hero-btns .vr-btn {
  width: auto !important;
  min-width: 0 !important;
  flex: 0 0 auto !important;
  display: inline-flex !important;
  padding: 12px 22px !important;
}
section.vr-hero.vr-hero-euro .vr-hero-visual {
  min-height: 340px !important;
  background: transparent !important;
}
section.vr-hero.vr-hero-euro .vr-hero-parallax-img {
  max-width: 100% !important;
  width: auto !important;
  max-height: 420px !important;
  margin: 0 auto !important;
  display: block !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,.15)) !important;
}
section.vr-hero.vr-hero-euro .vr-hero-search {
  margin-top: 24px !important;
  background: #f4f7fb !important;
  border-radius: 14px !important;
  padding: 12px !important;
}
section.vr-hero.vr-hero-euro .vr-hero-part { display: none !important; }
@media (max-width: 900px) {
  section.vr-hero.vr-hero-euro .vr-hero-top {
    grid-template-columns: 1fr !important;
    text-align: center !important;
  }
  section.vr-hero.vr-hero-euro p { margin-left: auto !important; margin-right: auto !important; }
  section.vr-hero.vr-hero-euro .vr-hero-btns { justify-content: center !important; }
  section.vr-hero.vr-hero-euro h1 { font-size: 28px !important; }
  section.vr-hero.vr-hero-euro .vr-hero-visual { min-height: 240px !important; order: -1 !important; }
}


/* Search suggest above next sections */
section.vr-hero.vr-hero-euro,
section.vr-hero.vr-hero-euro .vr-hero-search,
section.vr-hero.vr-hero-euro .vr-search-form {
  position: relative;
  z-index: 50;
}
section.vr-hero.vr-hero-euro .vr-search-suggest,
.vr-hero-search .vr-search-suggest,
#vr-search-suggest {
  z-index: 1000 !important;
  position: absolute !important;
  background: #fff !important;
  box-shadow: 0 16px 40px rgba(0,0,0,.18) !important;
}
/* keep following sections below dropdown */
.vr-section { position: relative; z-index: 1; }


/* Search dropdown must not be clipped */
section.vr-hero.vr-hero-euro { overflow: visible !important; z-index: 100 !important; }
section.vr-hero.vr-hero-euro .vr-container { overflow: visible !important; }
section.vr-hero.vr-hero-euro .vr-hero-search {
  position: relative !important;
  z-index: 200 !important;
  overflow: visible !important;
}
section.vr-hero.vr-hero-euro .vr-search-form {
  position: relative !important;
  z-index: 201 !important;
  overflow: visible !important;
}
section.vr-hero.vr-hero-euro #vr-search-suggest,
section.vr-hero.vr-hero-euro .vr-search-suggest {
  position: absolute !important;
  left: 0 !important;
  right: 100px !important;
  top: calc(100% + 6px) !important;
  z-index: 9999 !important;
  background: #fff !important;
  border: 1px solid #e5e9ef !important;
  border-radius: 12px !important;
  box-shadow: 0 20px 50px rgba(0,0,0,.2) !important;
  max-height: 360px !important;
  overflow-y: auto !important;
}
/* next sections lower */
body .vr-section { position: relative; z-index: 1 !important; }


/* CTA equal-width action buttons */
.vr-cta-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}
.vr-cta-actions .vr-btn {
  width: 100%;
  justify-content: center;
  padding: 14px 12px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  box-sizing: border-box;
  text-align: center;
}
.vr-btn-telegram {
  background: #229ED9;
  color: #fff !important;
}
.vr-btn-telegram:hover {
  background: #1b8bc0;
  color: #fff !important;
}
.vr-cta-block .vr-btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.85);
  color: #fff !important;
}
.vr-cta-block .vr-btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  color: #fff !important;
}
@media (max-width: 768px) {
  .vr-cta-actions {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 420px) {
  .vr-cta-actions {
    grid-template-columns: 1fr;
  }
}


/* FAQ */
.vr-faq-section { background: #f7f9fc; }
.vr-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.vr-faq-item {
  border-bottom: 1px solid #e3e8ef;
  padding: 0;
  background: transparent;
}
.vr-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 36px 16px 0;
  font-size: 16px;
  font-weight: 600;
  color: #1a6db5;
  line-height: 1.4;
  position: relative;
}
.vr-faq-item summary::-webkit-details-marker { display: none; }
.vr-faq-item summary::after {
  content: "▾";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  color: #1a6db5;
  font-size: 14px;
  transition: transform .2s;
}
.vr-faq-item[open] summary::after { transform: translateY(-50%) rotate(180deg); }
.vr-faq-item summary:hover { color: #0d4a7a; }
.vr-faq-body {
  padding: 0 8px 16px 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.55;
}
@media (max-width: 800px) {
  .vr-faq-grid { grid-template-columns: 1fr; gap: 0; }
}


/* Homepage models horizontal scroll */
.vr-home-links .vr-models-scroll{
  display:flex;
  gap:14px;
  overflow-x:auto;
  overflow-y:hidden;
  padding:6px 4px 14px;
  margin:0 -4px;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:thin;
}
.vr-home-links .vr-models-scroll::-webkit-scrollbar{height:6px}
.vr-home-links .vr-models-scroll::-webkit-scrollbar-thumb{background:#c5d0de;border-radius:4px}
.vr-model-chip{
  flex:0 0 auto;
  width:168px;
  scroll-snap-align:start;
  display:flex;
  flex-direction:column;
  text-decoration:none!important;
  background:#fff;
  border:1px solid #e5e9ef;
  border-radius:12px;
  overflow:hidden;
  transition:box-shadow .15s, transform .15s;
  color:#1a1a1a!important;
}
.vr-model-chip:hover{
  box-shadow:0 8px 24px rgba(13,59,102,.12);
  transform:translateY(-2px);
}
.vr-model-chip-img{
  display:block;
  height:105px;
  background:#f3f6fa;
  overflow:hidden;
}
.vr-model-chip-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.vr-model-chip-name{
  display:block;
  padding:10px 10px 12px;
  font-size:13px;
  font-weight:600;
  text-align:center;
  color:#1a6db5;
  line-height:1.3;
}
.vr-seo-text-spaced{margin-top:28px!important}

.vr-home-links h2{text-align:center;margin:0 0 16px;}

/* Home SEO text — same width as FAQ (.vr-faq-grid max-width: 1100px) */
.vr-interlink.vr-home-links {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
.vr-home-links .vr-models-scroll {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.vr-home-links h2 {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.vr-home-links .vr-seo-wrap {
  max-width: 1100px !important;
  width: 100% !important;
  margin: 28px auto 0 !important;
  padding: 0 !important;
  box-sizing: border-box;
}
.vr-home-links .vr-seo-text {
  margin: 0 0 14px !important;
  line-height: 1.65 !important;
  color: #4b5563 !important;
  font-size: 15px !important;
  text-align: left;
}
.vr-home-links .vr-seo-text:last-child {
  margin-bottom: 0 !important;
}
.vr-home-links .vr-seo-text a {
  color: #1a6db5;
  text-decoration: underline;
  text-underline-offset: 2px;
}
/* models scroll list reset */
.vr-home-links .vr-models-scroll { list-style: none; }
