/**
 * yrsite.net - Official Brand Theme Stylesheet
 * Palette: Teal (#1e5fa8), Cream (#fbf2df), Mustard (#f0a63e), Hibiscus (#e2536f), Ink (#142238)
 * Strict Zero-Horizontal-Overflow Responsive Architecture
 */

:root {
  --teal: #1e5fa8;
  --teal-deep: #123f74;
  --teal-deeper: #0a2a52;
  --teal-bright: #3f8ff0;
  --cream: #fbf2df;
  --cream-soft: #fdf8ed;
  --mustard: #f0a63e;
  --mustard-deep: #d7862a;
  --hibiscus: #e2536f;
  --hibiscus-deep: #c53a58;
  --ink: #142238;
  --ink-soft: #41546e;
  --ink-light: #64748b;
  --card-border: #e6dbcb;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
}

body.yr-theme {
  margin: 0;
  padding: 0;
  font-family: 'Cairo', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
  position: relative;
}

/* Fallback for browsers not supporting overflow-x: clip */
@supports not (overflow-x: clip) {
  html, body.yr-theme {
    overflow-x: hidden;
  }
}

img, svg {
  max-width: 100%;
  height: auto;
}

.wrap {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(14px, 3.5vw, 24px);
  box-sizing: border-box;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: 100px;
  border: 2px solid transparent;
  transition: all .15s ease;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  box-sizing: border-box;
  line-height: 1.2;
}
.btn:active { transform: scale(0.97); }
.btn-mustard { background: var(--mustard); color: var(--ink); }
.btn-mustard:hover { background: var(--mustard-deep); color: #fff; }
.btn-teal { background: var(--teal); color: var(--cream); }
.btn-teal:hover { background: var(--teal-deep); color: #fff; }
.btn-hibiscus { background: var(--hibiscus); color: #fff; }
.btn-hibiscus:hover { background: var(--hibiscus-deep); }
.btn-outline-cream { border-color: var(--cream); color: var(--cream); }
.btn-outline-cream:hover { background: rgba(251, 242, 223, 0.15); }
.btn-outline-ink { border-color: var(--ink); color: var(--ink); }
.btn-outline-ink:hover { background: rgba(20, 34, 56, 0.08); }
.btn-outline-teal { border-color: var(--teal); color: var(--teal); }
.btn-outline-teal:hover { background: rgba(30, 95, 168, 0.1); }

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--cream);
  text-decoration: none;
  flex: none;
}
.logo-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--mustard);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.05rem;
  flex: none;
}

/* Header & Nav */
header.yr-header {
  background: var(--teal);
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 14px;
  gap: 16px;
  width: 100%;
}
.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}
.nav-links a {
  font-size: 0.92rem;
  color: var(--cream);
  opacity: 0.88;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.nav-links a:hover {
  opacity: 1;
  color: var(--mustard);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.lang-toggle {
  font-size: 0.82rem;
  font-weight: 700;
  border: 2px solid var(--cream);
  border-radius: 100px;
  background: transparent;
  color: var(--cream);
  padding: 6px 13px;
  cursor: pointer;
  line-height: 1;
}
.lang-toggle:hover { background: rgba(251, 242, 223, 0.14); }

/* Hero Section */
.hero {
  background: var(--teal);
  padding-top: clamp(48px, 6vw, 64px);
  padding-bottom: 0 !important;
  position: relative;
  overflow: clip;
  width: 100%;
  max-width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .32;
  pointer-events: none;
  max-width: 50vw;
  max-height: 50vw;
}
.hero-orb.o1 {
  width: 320px;
  height: 320px;
  background: var(--teal-bright);
  top: -100px;
  inset-inline-end: 0;
  animation: drift 12s ease-in-out infinite;
}
.hero-orb.o2 {
  width: 220px;
  height: 220px;
  background: var(--mustard);
  bottom: -40px;
  inset-inline-start: 0;
  animation: drift 9s ease-in-out infinite reverse;
}
@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-10px, 12px) scale(1.04); }
}

/* Subdomain Reservation Box */
.hero-subdomain-box {
  background: rgba(10, 42, 82, 0.45);
  border: 2px solid rgba(251, 242, 223, 0.25);
  border-radius: 20px;
  padding: 8px;
  max-width: 520px;
  width: 100%;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  box-sizing: border-box;
}
.hero-subdomain-form {
  display: flex;
  gap: 8px;
  align-items: stretch;
  flex-wrap: wrap;
  width: 100%;
}
.hero-subdomain-input-wrap {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  padding: 4px 12px;
  flex: 1;
  min-width: min(100%, 200px);
  max-width: 100%;
  box-sizing: border-box;
  direction: ltr !important;
}
.hero-subdomain-input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  padding: 8px 4px;
  font-weight: 700;
  color: var(--teal-deep);
  font-family: inherit;
  font-size: 0.95rem;
  direction: ltr;
  text-align: left;
}
.hero-subdomain-input:focus { outline: none; }

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  width: 100%;
}

.hero-meta {
  display: flex;
  gap: clamp(14px, 3vw, 28px);
  flex-wrap: wrap;
  width: 100%;
}
.hero-meta span {
  font-size: 0.85rem;
}

/* Hanging Sign Graphic */
.sign-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 10px;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  animation: yr-sway 6s ease-in-out infinite;
  transform-origin: top center;
}
@keyframes yr-sway {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(1.2deg); }
}
.sign-rope { width: 2px; height: 34px; background: var(--cream); opacity: 0.5; }
.sign-hook {
  width: 20px; height: 20px; border: 3px solid var(--cream); opacity: 0.6;
  border-radius: 50%; border-bottom-color: transparent; margin-bottom: -10px; transform: rotate(200deg);
}
.sign-board {
  background: var(--mustard);
  border-radius: 20px;
  padding: clamp(16px, 4vw, 24px);
  width: 100%;
  max-width: 420px;
  box-sizing: border-box;
  transform: rotate(-2deg);
  box-shadow: 0 14px 0 -6px rgba(10, 42, 82, 0.25);
}
.sign-inner { background: var(--cream); border-radius: 12px; padding: 16px; width: 100%; box-sizing: border-box; }
.sign-url { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; overflow: hidden; }
.sign-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--hibiscus); flex: none; }
.sign-dot:nth-child(2) { background: var(--mustard-deep); }
.sign-dot:nth-child(3) { background: var(--teal); }
.sign-url span { font-size: 0.75rem; color: var(--ink-soft); margin-inline-start: 6px; font-family: monospace; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sign-line { height: 8px; border-radius: 6px; background: var(--teal); opacity: 0.18; margin-bottom: 8px; }
.sign-line.w70 { width: 70%; }
.sign-line.w45 { width: 45%; }
.sign-blocks { display: flex; gap: 8px; margin-top: 10px; width: 100%; }
.sign-blocks div { flex: 1; height: 44px; border-radius: 8px; }
.sign-blocks div:nth-child(1) { background: var(--hibiscus); }
.sign-blocks div:nth-child(2) { background: var(--teal); }
.sign-blocks div:nth-child(3) { background: var(--mustard-deep); }

/* Waves */
.wave {
  display: block;
  width: 100%;
  height: clamp(28px, 4vw, 42px) !important;
  margin-top: clamp(28px, 4vw, 48px);
  margin-bottom: -1px;
  vertical-align: bottom;
  position: relative;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

/* Sections */
section.yr-sec {
  padding-block: clamp(45px, 6vw, 70px);
  width: 100%;
  max-width: 100%;
  position: relative;
  overflow: clip;
}
.section-head { margin-bottom: clamp(24px, 4vw, 44px); max-width: 60ch; }
.section-head h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); font-weight: 900; margin: 0 0 12px; line-height: 1.25; }
.section-head p { opacity: 0.85; font-size: 1rem; margin: 0; line-height: 1.6; }
section.on-teal { background: var(--teal); color: var(--cream); }
section.on-teal .section-head p { color: var(--cream); }
section.on-mustard { background: var(--mustard); color: var(--ink); }

/* Feature Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 28px 24px;
  width: 100%;
}
.card {
  position: relative;
  border-radius: 28px 28px 14px 14px;
  padding: clamp(22px, 4vw, 34px) clamp(18px, 3vw, 26px) 26px;
  color: var(--cream);
  transition: transform .25s ease, box-shadow .25s ease;
  width: 100%;
  box-sizing: border-box;
}
.card::before {
  content: ""; position: absolute;
  top: -14px; inset-inline-start: 50%;
  transform: translateX(-50%);
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--cream); opacity: 0.6;
}
html[dir="rtl"] .card::before { transform: translateX(50%); }
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 30px -14px rgba(10, 42, 82, 0.35); }
.card.c-teal { background: var(--teal); }
.card.c-hibiscus { background: var(--hibiscus); }
.card.c-mustard { background: var(--mustard-deep); }
.card h3 { font-size: 1.15rem; margin: 0 0 10px; font-weight: 800; }
.card p { margin: 0; opacity: 0.92; font-size: 0.92rem; line-height: 1.6; }

/* Steps */
.steps {
  display: flex;
  gap: 0;
  position: relative;
  margin-top: 20px;
  width: 100%;
}
.step {
  flex: 1;
  text-align: center;
  padding-inline: 14px;
  position: relative;
  min-width: 0;
}
.step-badge {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--ink); color: var(--mustard);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.25rem; margin: 0 auto 16px;
}
.step h3 { font-size: 1.1rem; font-weight: 800; margin: 0 0 8px; }
.step p { font-size: 0.9rem; opacity: 0.85; margin: 0; max-width: 26ch; margin-inline: auto; }
.step-line {
  position: absolute; top: 26px; height: 2px;
  background-image: repeating-linear-gradient(to right, var(--ink) 0 10px, transparent 10px 18px);
  inset-inline-start: calc(50% + 36px);
  width: calc(100% - 72px); opacity: 0.5;
}
/* Prevent last step line from overflowing out of the page */
.step:last-child .step-line {
  display: none !important;
}

/* Showcase Grid */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 24px;
  width: 100%;
}
.showcase-card {
  background: #fff;
  border: 2px solid var(--card-border);
  border-radius: 24px;
  padding: clamp(16px, 3vw, 24px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 20px -10px rgba(10,42,82,.1);
  transition: all .2s ease;
  width: 100%;
  box-sizing: border-box;
}
.showcase-card:hover { transform: translateY(-4px); border-color: var(--teal); box-shadow: 0 18px 30px -12px rgba(10,42,82,.2); }
.showcase-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; border-radius: 100px; font-size: 0.75rem; font-weight: 800;
}
.badge-restaurant { background: rgba(240, 166, 62, 0.15); color: var(--mustard-deep); }
.badge-clinic { background: rgba(226, 83, 111, 0.15); color: var(--hibiscus-deep); }
.badge-company { background: rgba(30, 95, 168, 0.15); color: var(--teal); }
.badge-store { background: rgba(20, 34, 56, 0.1); color: var(--ink); }

/* Pricing tags */
.tags {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
  width: 100%;
}
.tag {
  position: relative;
  border-radius: 16px;
  padding: 24px 20px;
  width: 100%;
  color: var(--cream);
  box-shadow: 0 10px 20px -8px rgba(10, 42, 82, 0.25);
  box-sizing: border-box;
}
.tag::after {
  content: ""; position: absolute; top: 16px; inset-inline-end: 14px;
  width: 9px; height: 9px; border-radius: 50%; background: var(--cream); opacity: 0.5;
}
.tag.t1 { background: var(--teal); }
.tag.t2 { background: var(--hibiscus); }
.tag.t3 { background: var(--mustard-deep); color: var(--ink); }
.tag.t3::after { background: var(--ink); }
.tag.t4 { background: var(--ink); border: 2px solid var(--mustard); }
.tag-period { font-size: 0.88rem; font-weight: 700; opacity: 0.85; margin-bottom: 8px; display: block; }
.tag-price { font-size: 1.85rem; font-weight: 900; display: block; line-height: 1.2; }
.tag-save { font-size: 0.78rem; opacity: 0.8; margin-top: 6px; display: block; }

.plan-includes {
  background: var(--teal);
  color: var(--cream);
  border-radius: 20px;
  padding: clamp(20px, 4vw, 32px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 14px 24px;
  width: 100%;
  box-sizing: border-box;
}
.plan-includes h4 { grid-column: 1/-1; margin: 0 0 6px; font-size: 1.05rem; font-weight: 800; }
.plan-includes div { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; opacity: 0.92; }
.check {
  width: 20px; height: 20px; border-radius: 50%; background: var(--mustard); color: var(--ink);
  display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 900; flex: none;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 24px;
  width: 100%;
}
.t-card {
  background: #fff;
  border-radius: 20px;
  padding: clamp(18px, 3vw, 26px) clamp(16px, 3vw, 24px);
  box-shadow: 0 10px 26px -18px rgba(10,42,82,.25);
  border: 1px solid var(--card-border);
  width: 100%;
  box-sizing: border-box;
}
.t-stars { color: var(--mustard-deep); font-size: 1rem; margin-bottom: 10px; letter-spacing: 2px; }
.t-quote { font-size: .94rem; opacity: .88; margin: 0 0 16px; color: var(--ink); line-height: 1.6; }
.t-person { display: flex; align-items: center; gap: 12px; }
.t-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; color: var(--cream); flex: none; font-size: 0.95rem; }
.t-person b { display: block; font-size: .92rem; color: var(--ink); }
.t-person span { display: block; font-size: .8rem; opacity: .7; color: var(--ink-soft); }

/* Auth Section */
.auth-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: 24px;
  width: 100%;
}
.auth-side {
  background: #fff;
  color: var(--ink);
  border-radius: 24px;
  padding: clamp(20px, 4vw, 38px);
  box-shadow: 0 15px 35px -15px rgba(10, 42, 82, 0.2);
  width: 100%;
  box-sizing: border-box;
}
.auth-side h3 { font-size: 1.3rem; margin: 0 0 8px; font-weight: 900; color: var(--ink); }
.auth-side p { opacity: .8; font-size: .92rem; margin: 0 0 24px; color: var(--ink-soft); }
.google-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 12px; border-radius: 12px; border: 2px solid #e4dcc8; background: #fff; color: var(--ink);
  font-weight: 700; font-size: .95rem; margin-bottom: 14px; cursor: pointer; transition: background .15s ease;
  box-sizing: border-box;
}
.google-btn:hover { background: #f9f9f9; border-color: #cbd5e1; }
.divider { display: flex; align-items: center; gap: 12px; color: var(--ink-soft); font-size: .8rem; margin: 18px 0; opacity: .7; }
.divider::before, .divider::after { content: ""; flex: 1; height: 1px; background: #e4dcc8; }
.field { margin-bottom: 14px; width: 100%; }
.field label { display: block; font-size: .85rem; color: var(--ink-soft); margin-bottom: 6px; font-weight: 700; }
.field input {
  width: 100%; padding: 12px 14px; background: #fff; border: 2px solid #e4dcc8; border-radius: 10px; color: var(--ink); font-size: .95rem; font-family: inherit;
  box-sizing: border-box;
}
.field input:focus { outline: none; border-color: var(--teal); }
.auth-passwords-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
}

/* Forms and Inputs in Theme */
.yr-input {
  width: 100%; padding: 12px 14px; background: #fff;
  border: 2px solid #e4dcc8; border-radius: 12px;
  color: var(--ink); font-size: 0.95rem; font-family: inherit;
  transition: border-color .15s ease;
  box-sizing: border-box;
}
.yr-input:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(30, 95, 168, 0.15); }

/* Dashboard Common Cards & Grids */
.dash-box {
  background: #fff;
  border: 2px solid var(--card-border);
  border-radius: 24px;
  padding: clamp(16px, 3vw, 24px);
  box-shadow: 0 8px 24px -10px rgba(10, 42, 82, 0.08);
  width: 100%;
  box-sizing: border-box;
}
.kpi-card {
  background: #fff;
  border: 2px solid var(--card-border);
  border-radius: 20px;
  padding: clamp(14px, 2.5vw, 20px);
  box-shadow: 0 4px 14px -6px rgba(10, 42, 82, 0.06);
  width: 100%;
  box-sizing: border-box;
}
.dash-grid-220 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 16px;
  width: 100%;
}
.dash-grid-260 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 16px;
  width: 100%;
}
.dash-grid-280 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 18px;
  width: 100%;
}
.dash-grid-300 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 16px;
  width: 100%;
}
.dash-grid-320 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 24px;
  width: 100%;
}

/* Footer */
footer.yr-footer { background: var(--teal-deeper); color: var(--cream); padding-block: 44px; width: 100%; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
  gap: 32px;
  margin-bottom: 32px;
  width: 100%;
}
.footer-col h4 { font-size: 0.9rem; opacity: 0.65; margin: 0 0 14px; font-weight: 700; }
.footer-col a { display: block; opacity: 0.85; font-size: 0.9rem; margin-bottom: 9px; color: inherit; text-decoration: none; }
.footer-col a:hover { opacity: 1; color: var(--mustard); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  border-top: 1px solid rgba(251, 242, 223, 0.15); padding-top: 22px; font-size: 0.82rem; opacity: 0.7;
}

/* Floating Live Support & AI Chat Widgets */
.yr-floating-widgets {
  position: fixed;
  bottom: clamp(14px, 3vw, 24px);
  left: clamp(14px, 3vw, 24px);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Cairo', sans-serif;
  max-width: calc(100vw - 32px);
  pointer-events: auto;
}
.yr-ai-chatbox {
  display: none;
  position: fixed;
  bottom: clamp(80px, 12vw, 90px);
  left: clamp(14px, 3vw, 24px);
  width: 340px;
  max-width: calc(100vw - 32px);
  height: min(460px, calc(100vh - 120px));
  background: #fff;
  border: 2px solid var(--teal);
  border-radius: 20px;
  box-shadow: 0 16px 36px rgba(10, 42, 82, 0.25);
  z-index: 9999;
  flex-direction: column;
  overflow: hidden;
  font-family: 'Cairo', sans-serif;
}

/* Comprehensive Responsive Breakpoints */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .hero-subdomain-box { margin-inline: auto; }
  .hero-ctas { justify-content: center; }
  .hero-meta { justify-content: center; gap: 20px; }
  .steps { flex-direction: column; gap: 28px; }
  .step-line { display: none !important; }
}

@media (max-width: 600px) {
  .nav {
    padding-block: 10px;
    gap: 8px;
  }
  .logo { font-size: 1.15rem; }
  .logo-badge { width: 32px; height: 32px; font-size: 0.95rem; }
  .nav-actions { gap: 6px; }
  .nav-actions .btn { padding: 6px 12px; font-size: 0.8rem; }
  .lang-toggle { padding: 5px 10px; font-size: 0.78rem; }
  
  .sign-wrap { animation: none; }
  .sign-board { transform: none; max-width: 100%; }

  .hero-subdomain-form { flex-direction: column; }
  .hero-subdomain-input-wrap { width: 100%; }
  .hero-subdomain-form button { width: 100%; }

  .auth-passwords-row { grid-template-columns: 1fr; }
}

/* Scroll Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s cubic-bezier(0.16, 1, 0.3, 1), transform .55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
