/*
Theme Name: Gildedfresh - Child
Version: 1.0
Description: A child theme of DMM by Almina
Template: mts_schema
Text Domain: schema
*/
@import url("../mts_schema/style.css");
:root {
  --pColor:       #1E3A5F;
  --sColor:       #15294A;
  --aColor:       #4A6FA5;
  --bg:           #FFFFFF;
  --bg-elev:      #F4F7FC;
  --bg-tint:      #E8EEF7;
  --navy:         var(--pColor);
  --navy-dk:      var(--sColor);
  --steel:        var(--aColor);
  --sky:          #8BA8CC;
  --azure:        #3B82F6;
  --hairline:     rgba(30, 58, 95, 0.12);
  --ink:          #0F172A;
  --graphite:    #475569;
  --ease-out:    cubic-bezier(0.22, 0.61, 0.36, 1);
  --shadow-2:    0 4px 24px rgba(30, 30, 28, 0.08);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: #FFFFFF;
  color: var(--ink);
  
  font-size: 17px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5 {
  font-weight: 400;
  color: var(--navy);
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
p { margin: 0 0 16px; }
a { color: var(--navy); text-decoration: none; }

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 64px;
}
@media (max-width: 800px) { .wrap { padding: 0 24px; } }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 0px;
}

.italic { font-style: italic; color: var(--steel); }

html .btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 15px; font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 200ms var(--ease-out);
  white-space: nowrap;
}
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-dk); transform: translateY(-1px); color: #fff; }
html .btn-ghost {background: transparent;color: var(--navy);border-color: var(--hairline);color: #fff;}
.btn-ghost:hover { border-color: var(--navy); background: var(--bg-elev); }

/* Nav */
.nav-bar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--hairline);
}
.nav-utility {
  background: var(--navy);
  color: #fff;
  font-size: 13px;
}
.nav-utility .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 8px; padding-bottom: 8px;
  gap: 24px;
}
.nav-utility .utility-left { display: flex; gap: 24px; align-items: center; }
.nav-utility a {
  color: #fff; opacity: 0.9;
  display: inline-flex; align-items: center; gap: 8px;
}
.nav-utility a:hover { opacity: 1; color: #fff; }
.nav-utility .utility-right { display: flex; gap: 24px; align-items: center; }
.nav-utility .util-rating { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.nav-utility .util-rating-label { opacity: 0.75; }
.nav-utility .util-rating-stars { color: #F4B400; letter-spacing: 2px; }
.nav-utility .util-rating-sub { opacity: 0.6; }
.nav-utility .social-row { display: flex; gap: 14px; align-items: center; }
.nav-utility .social-row a { font-size: 14px; opacity: 0.85; }

.nav-main .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 18px; padding-bottom: 18px;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; color: var(--navy); }
.brand-logo {width: auto;max-width: 150px;}
.brand-mark {
  width: 36px; height: 36px;
  background: var(--navy); color: #fff;
  border-radius: 999px;
  display: grid; place-items: center;
  font-size: 18px;
}
.brand-text {
  font-size: 20px;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.brand-text small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
  font-weight: 500;
  margin-top: 2px;
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links .menu { list-style: none; padding: 0; margin: 0; display: flex; gap: 4px; }
.nav-links a, .nav-links .menu a {
  font-size: 14px; color: var(--ink);
  padding: 10px 14px;
  border-radius: 999px;
  transition: background 160ms;
}
.nav-links a:hover, .nav-links .menu a:hover { background: var(--bg-elev); color: var(--navy); }
.nav-cta { display: flex; gap: 10px; align-items: center; }
.toggle-mobile-menu { display: none; }

@media (max-width: 1280px) { .nav-utility .social-row { display: none; } }
@media (max-width: 1180px) { .nav-links { display: none; } }
@media (max-width: 1000px) {
  .nav-utility .utility-right { display: none; }
  .nav-cta .btn-ghost { display: none; }
}

/* Hero */
.hero.hero-centered {
  position: relative;
  padding: 0;
  background: var(--bg-elev);
  overflow: hidden;
  min-height: 72vh;
  display: grid;
  place-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(139,168,204,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(30,58,95,0.10) 0%, transparent 55%),
    var(--bg-elev);
  z-index: 1;
  opacity: 0.7;
}
.hero-bg-fade {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(180deg, transparent 0%, #fff 100%);
}
.hero-centered-inner {
  position: relative;
  text-align: center;
  padding: 120px 0;
  max-width: 880px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 15px;
}
.hero-eyebrow .pulse {
  width: 8px; height: 8px; border-radius: 999px;
  background: #10B981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
  70% { box-shadow: 0 0 0 12px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
.hero-h2 {
  
  font-weight: 400;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin: 0 0 28px;
}
.hero-h2 em, .hero-h2 .italic {
  font-style: italic;
  font-weight: 300;
  color: var(--steel);
}
.hero-lede {
  font-size: 19px;
  color: var(--graphite);
  line-height: 1.55;
  max-width: 620px;
  margin: 0 auto 40px;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Welcome */
.welcome { padding: 140px 0; background: #fff; }
.welcome .wrap {
  display: grid;
  grid-template-columns: 6fr 6fr;
  gap: 96px;
  align-items: center;
}
.welcome-text h2 {
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 55px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin: 0 0 28px;
}
.welcome-text h2 em { font-style: italic; color: var(--steel); }
.welcome-text p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--graphite);
  margin: 0 0 20px;
}
.welcome-text .signature { margin-top: 36px; display: flex; align-items: center; gap: 16px; }
.welcome-text .sig-name {
  
  font-size: 24px;
  font-style: italic;
  color: var(--navy);
  line-height: 1;
}
.welcome-text .sig-title { font-size: 13px; color: var(--graphite); margin-top: 4px; }
.welcome-portrait {
  position: relative;
  aspect-ratio: 1 / 1.15;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg-tint);
}
.welcome-portrait img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) {
  .welcome { padding: 96px 0; }
  .welcome .wrap { grid-template-columns: 1fr; gap: 56px; }
}

/* Difference */
.difference { padding: 120px 0; background: var(--bg-elev); }
.difference-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 56px;
  gap: 32px;
}
.difference-header .left h2,
.difference-header .left p {
  
  font-weight: 400;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--navy);
  max-width: 700px;
  margin: 12px 0 0;
}
.difference-header .right {
  max-width: 360px;
  color: var(--graphite);
  font-size: 16px;
  line-height: 1.6;
}
.difference-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.pillar {
  background: #fff;
  border-radius: 24px;
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 20px;
  min-height: 320px;
  transition: transform 320ms var(--ease-out), box-shadow 320ms var(--ease-out);
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.pillar .num {
  
  font-style: italic;
  font-size: 14px;
  color: var(--steel);
}
.pillar .icon {
  width: 56px; height: 56px; border-radius: 999px;
  background: var(--bg-elev); color: var(--navy);
  display: grid; place-items: center;
  overflow: hidden;
}
.pillar .icon img { width: 28px; height: 28px; object-fit: contain; }
.pillar h3 {
  
  font-size: 22px; font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--navy);
}
.pillar p { font-size: 15px; line-height: 1.55; color: var(--graphite); margin: 0; flex: 1; }
.pillar-link {
  margin-top: auto;
  font-size: 13px;
  color: var(--navy);
  display: inline-flex; align-items: center; gap: 6px;
}
.pillar-link::after { content: "→"; transition: transform 200ms; }
.pillar:hover .pillar-link::after { transform: translateX(4px); }
@media (max-width: 1000px) {
  .difference-grid { grid-template-columns: repeat(2, 1fr); }
  .difference-header { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 540px) { .difference-grid { grid-template-columns: 1fr; } }

/* Services */
.services { padding: 140px 0; background: #fff; }
.section-head { text-align: center; margin-bottom: 64px; }
.section-head h2 {
  
  font-weight: 400;
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin: 0 auto 16px;
  max-width: 740px;
}
.section-head h2 em { font-style: italic; color: var(--steel); }
.section-head p {
  font-size: 18px;
  color: var(--graphite);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.55;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.service-card {
  background: var(--bg-elev);
  border-radius: 24px;
  padding: 36px 32px 32px;
  display: flex; flex-direction: column;
  min-height: 380px;
  transition: all 320ms var(--ease-out);
  color: var(--ink);
}
.service-card:hover { background: var(--navy); color: #fff; }
.service-card .image-ph {
  width: 100%;
  aspect-ratio: 5 / 3;
  border-radius: 16px;
  background: var(--bg-tint);
  display: grid; place-items: center;
  margin-bottom: 24px;
  overflow: hidden;
}
.service-card .image-ph img { width: 100%; height: 100%; object-fit: cover; }
.service-card h3 {
  
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
  color: var(--navy);
  transition: color 320ms;
}
.service-card:hover h3 { color: #fff; }
.service-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--graphite);
  margin: 0 0 24px;
  flex: 1;
  transition: color 320ms;
}
.service-card:hover p { color: rgba(255,255,255,0.85); }
.service-card .more {
  font-size: 13px;
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--navy);
  transition: color 320ms;
}
.service-card:hover .more { color: #fff; }
.services-cta {
  text-align: center;
  display: flex; justify-content: center; gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  .services { padding: 96px 0; }
}

/* Testimonials */
.testimonials {
  padding: 120px 0;
  background: #0F2240;
  color: #fff;
  overflow: hidden;
  position: relative;
}
.testimonials::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 999px;
  background: rgba(139,168,204,0.05);
}
.t-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 32px; margin-bottom: 56px;
  flex-wrap: wrap;
  position: relative;
}
.t-head .eyebrow { color: var(--sky); }
.t-head h2 {
  
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 12px 0 0;
  max-width: 680px;
}
.t-head h2 em { font-style: italic; color: var(--sky); }
.t-rating {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
}
.t-rating strong { color: #fff; font-size: 18px; }
.t-rating .t-stars { color: #F4B400; letter-spacing: 2px; }
.t-rating-sub { color: rgba(255,255,255,0.55); }
.t-slider { position: relative; overflow: hidden; }
.t-track {
  display: flex;
  transition: transform 600ms var(--ease-out);
}
.t-slide { flex: 0 0 100%; padding: 0 4px; }
.t-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 28px;
  padding: 56px 64px;
  max-width: 880px;
  margin: 0 auto;
  position: relative;
}
.t-quote-mark {
  position: absolute;
  top: 20px; left: 32px;
  
  font-size: 120px;
  line-height: 1;
  color: rgba(139,168,204,0.18);
}
.t-card blockquote {
  
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 36px;
  position: relative;
}
.t-author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.t-avatar {
  width: 44px; height: 44px; border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  display: grid; place-items: center;
   font-size: 18px;
}
.t-name { color: #fff; font-weight: 500; font-size: 15px; }
.t-when { color: rgba(255,255,255,0.55); font-size: 13px; margin-top: 2px; }
.t-stars-row {
  margin-left: auto;
  color: #F4B400; letter-spacing: 2px; font-size: 15px;
}
.t-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 24px;
  margin-top: 40px;
}
.t-btn {
  width: 44px; height: 44px; border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  cursor: pointer;
  display: grid; place-items: center;
  font-size: 20px;
  transition: all 200ms;
}
.t-btn:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.32); }
.t-dots { display: flex; gap: 8px; }
.t-dot {
  width: 8px; height: 8px; border-radius: 999px;
  border: none;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 200ms;
  padding: 0;
}
.t-dot.active { background: var(--sky); width: 24px; }

/* Visit */
.visit { padding: 120px 0; background: var(--bg-elev); }
.visit .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
}
.visit-info { display: flex; flex-direction: column; justify-content: center; }
.visit-info h2 {
  
  font-weight: 400;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin: 0 0 32px;
}
.visit-info h2 em { font-style: italic; color: var(--steel); }
.info-blocks { display: grid; gap: 24px; margin-bottom: 32px; }
.info-block { display: flex; gap: 16px; align-items: flex-start; }
.info-block .ico {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: #fff;
  color: var(--navy);
  display: grid; place-items: center;
  border: 1px solid var(--hairline);
}
.info-block .label {
  font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 4px;
  font-weight: 500;
}
.info-block .value { font-size: 17px; color: var(--ink); line-height: 1.45; }
.info-block .value a { color: var(--navy); border-bottom: 1px solid var(--hairline); }
.info-block .value a:hover { border-bottom-color: var(--navy); }
.hours-table { font-size: 15px; }
.hours-table p { margin: 0 0 6px; padding: 6px 0; border-bottom: 1px dashed var(--hairline); }
.hours-table p:last-child { border-bottom: none; }
.visit-map {
  border-radius: 24px;
  overflow: hidden;
  min-height: 460px;
  border: 1px solid var(--hairline);
  background: var(--bg-tint);
  position: relative;
}
.visit-map iframe {
  width: 100%; height: 100%;
  min-height: 460px;
  border: 0;
  display: block;
  filter: grayscale(0.2) contrast(0.95);
}
.visit-actions { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 900px) {
  .visit .wrap { grid-template-columns: 1fr; gap: 40px; }
  .visit-map { min-height: 340px; }
}

/* Footer */
.footer {
  background: var(--sColor);
  color: rgba(255,255,255,0.78);
  padding: 80px 0 32px;
}
.footer .wrap.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer .brand { color: #fff; margin-bottom: 20px; }
.footer .brand-mark { background: #fff; color: var(--navy); }
.footer .brand-text small { color: var(--sky); }
.footer p { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.7); max-width: 320px; }
.footer h5 {
  
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: #fff;
  margin: 0 0 20px;
}
.footer a { color: rgba(255,255,255,0.85); font-size: 14px; transition: color 160ms; }
.footer a:hover { color: #fff; }
.f-info {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.5;
}
.f-info i { margin-top: 4px; opacity: 0.7; }
.f-hours { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; }
.f-hours i { margin-top: 4px; opacity: 0.7; }
.f-hours-content { flex: 1; color: rgba(255,255,255,0.85); }
.f-hours-content p {
  display: flex; justify-content: space-between; gap: 16px;
  margin: 0;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
}
.f-hours-content p:last-child { border-bottom: none; }
.footer-social {
  display: flex; gap: 10px;
  margin-top: 20px;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  display: grid; place-items: center;
  color: #fff;
}
.footer-social a:hover { background: rgba(255,255,255,0.08); }
.footer-bottom {
  padding-top: 28px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.footer-bottom a { color: rgba(255,255,255,0.55); }

@media (max-width: 900px) {
  .footer .wrap.footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer .wrap.footer-grid { grid-template-columns: 1fr; }
}

/* Reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-fade { opacity: 0; transform: none; transition: opacity 900ms var(--ease-out); }
.reveal-fade.is-visible { opacity: 1; }
.reveal-left { opacity: 0; transform: translateX(-32px); transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out); }
.reveal-left.is-visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(32px); transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out); }
.reveal-right.is-visible { opacity: 1; transform: translateX(0); }
.reveal-zoom { opacity: 0; transform: scale(0.96); transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out); }
.reveal-zoom.is-visible { opacity: 1; transform: scale(1); }

.stagger > * { transition-delay: 0ms; }
.stagger > *:nth-child(1).is-visible { transition-delay: 60ms; }
.stagger > *:nth-child(2).is-visible { transition-delay: 140ms; }
.stagger > *:nth-child(3).is-visible { transition-delay: 220ms; }
.stagger > *:nth-child(4).is-visible { transition-delay: 300ms; }
.stagger > *:nth-child(5).is-visible { transition-delay: 380ms; }
.stagger > *:nth-child(6).is-visible { transition-delay: 460ms; }

/* Hero entrance */
.hero-centered-inner > * {
  opacity: 0;
  transform: translateY(20px);
  animation: heroIn 900ms var(--ease-out) forwards;
}
.hero-centered-inner > *:nth-child(1) { animation-delay: 120ms; }
.hero-centered-inner > *:nth-child(2) { animation-delay: 260ms; }
.hero-centered-inner > *:nth-child(3) { animation-delay: 400ms; }
.hero-centered-inner > *:nth-child(4) { animation-delay: 540ms; }
@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

.hero-h2 p {
    font-size: 34px;
    margin-top: 25px;
}

.hero-h2 {
    font-size: 56px;
}

.nav-links a, .nav-links .menu a { position: relative; }
.nav-links a::after, .nav-links .menu a::after {
  content: ""; position: absolute;
  left: 14px; right: 14px; bottom: 6px;
  height: 1px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms var(--ease-out);
}

section.hero.hero-centered video {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100% !important;
    width: 100% !important;
    object-fit: cover;
    z-index: 1;
    opacity: 0.6;
}

.nav-links a:hover::after, .nav-links .menu a:hover::after { transform: scaleX(1); }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-fade, .reveal-left, .reveal-right, .reveal-zoom,
  .hero-centered-inner > * {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
  html { scroll-behavior: auto; }
}

div#page {
    padding: 0px !important;
}

nav .dm-rate-us span {
    color: #fff;
    font-size: 14px;
}

h2.hero-h2 p {
    font-size: 26px;
    font-family: 'Roboto';
    font-weight: 300;
    max-width: 600px;
    margin: 25px auto 0px;
    line-height: 1.2;
}

.hide-d {
    display: none;
}