/* =====================================
   CSS RESET & BASE STYLES
   ===================================== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #fff;
  color: #151515;
}
ol, ul {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #151515;
  outline-offset: 2px;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
button, input, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

/* =====================================
   TYPOGRAPHY
   ===================================== */
:root {
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
  --color-bg: #fff;
  --color-bg-alt: #f5f5f5;
  --color-text: #1a1a1a;
  --color-black: #000;
  --color-dark: #151515;
  --color-gray-900: #232323;
  --color-gray-700: #454545;
  --color-gray-300: #ccc;
  --color-gray-200: #ececec;
  --color-gray-100: #f5f5f5;
  --color-primary: #284C33;
  --color-secondary: #D7B57A;
  --color-accent: #F5F3EC;
  --shadow-xs: 0 1px 4px rgba(0,0,0,0.04);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.07);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.13);
  --radius: 10px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text);
  background: var(--color-bg);
  min-height: 100vh;
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-black);
  line-height: 1.15;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.section h2 {
  color: var(--color-primary);
  text-shadow: 0 3px 16px rgba(0,0,0,0.04);
}
p, li, span, a, blockquote {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  color: var(--color-dark);
}
blockquote {
  padding-left: 18px;
  border-left: 4px solid var(--color-primary);
  color: var(--color-gray-900);
  font-style: italic;
  margin-bottom: 18px;
}
strong, b {
  font-weight: 700;
}

/* =====================================
   CONTAINER & SECTIONS
   ===================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  max-width: 720px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 28px 24px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s;
  min-width: 270px;
}
.card:hover {
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fafafb;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
  margin-bottom: 20px;
  border: 1.5px solid var(--color-gray-200);
}
.testimonial-card p {
  font-size: 1.1rem;
  color: var(--color-dark);
}
.testimonial-card span {
  color: var(--color-primary);
  font-size: 0.96em;
  font-weight: 600;
}

/* Section specifics */
.hero {
  background: linear-gradient(90deg, #fff 50%, #e2e2e2 100%);
  border-bottom: 1.5px solid var(--color-gray-200);
  box-shadow: 0 4px 24px rgba(0,0,0,0.02);
}
/* Monochrome hero effect */
.hero h1 {
  color: var(--color-primary);
  text-shadow: 0 2px 8px rgba(40,76,51,0.06);
}
.features ul,
.highlighted-recipes ul,
.newsletter ul,
.team-values ul,
.services-list,
.benefits-list ul,
.consulting-services ul,
.faq ul,
.recipe-categories ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 14px;
}
.features ul li, .newsletter ul li, .team-values ul li, .benefits-list ul li, .consulting-services ul li, .faq ul li, .recipe-categories ul li {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 10px 0;
  font-size: 1rem;
}
.features ul li img, .newsletter ul li img, .contact-details img {
  width: 26px;
  height: 26px;
  margin-right: 8px;
}
.services-list {
  gap: 24px;
}
.services-list li {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
  padding: 22px 18px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-width: 190px;
}

.benefits ul, .faq ul {
  gap: 16px;
}
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 12px;
}
.tag-cloud span {
  background: #ededed;
  color: #232323;
  border-radius: 16px;
  padding: 4px 14px;
  font-size: 0.92em;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.recipe-preview-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.recipe-preview-grid > div {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
  padding: 18px 16px;
  min-width: 230px;
  flex: 1 1 230px;
  transition: box-shadow 0.18s;
  margin-bottom: 18px;
}
.recipe-preview-grid > div:hover {
  box-shadow: var(--shadow-md);
  background: #f4f4f4;
}
.member-bios, .team-values {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.member-bios > div, .team-values ul li {
  background: #fff;
  padding: 20px 16px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
  min-width: 210px;
  flex: 1 1 210px;
}

/* Pricing Table */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
  margin-top: 18px;
  overflow-x: auto;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
}
.pricing-table th, .pricing-table td {
  padding: 13px 14px;
  text-align: left;
  font-size: 1rem;
  color: var(--color-dark);
}
.pricing-table th {
  background: #f7f6f4;
  color: var(--color-black);
  font-family: var(--font-display);
  border-bottom: 1.5px solid #ddd;
}
.pricing-table tr td:last-child {
  font-weight: 700;
  color: var(--color-primary);
}
.pricing-table tr {
  border-radius: var(--radius);
}

/* Newsletter Success Message */
.newsletter-success {
  background: #f8f9fa;
  color: #232323;
  border-radius: var(--radius);
  padding: 14px 6px;
  font-size: 1.02rem;
  margin-top: 14px;
}
.newsletter-success a {
  color: var(--color-primary);
  font-weight: 600;
}

/* Map Placeholder */
.map-placeholder {
  background: #fafafb;
  border-radius: var(--radius);
  padding: 18px 12px;
  color: #454545;
  font-size: 1em;
  text-align: center;
  margin-top: 10px;
}

/* =====================================
   BUTTONS & LINKS
   ===================================== */
.cta-btn, .content-wrapper a.cta-btn, .card a.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.11rem;
  background: var(--color-primary);
  color: #fff;
  border-radius: 36px;
  padding: 13px 32px;
  margin-top: 6px;
  box-shadow: var(--shadow-xs);
  border: 2px solid transparent;
  transition: background 0.16s, color 0.2s, border 0.16s, box-shadow 0.18s, transform 0.12s;
  cursor: pointer;
  letter-spacing: 0.03em;
}
.cta-btn:hover, .cta-btn:active, .cta-btn:focus-visible {
  background: #fff;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  box-shadow: var(--shadow-md);
  text-decoration: underline;
}
.content-wrapper a {
  color: var(--color-primary);
  font-weight: 500;
  position: relative;
  transition: color 0.2s;
}
.content-wrapper a:not(.cta-btn):hover {
  color: var(--color-secondary);
  text-decoration: underline;
}

/* =====================================
   HEADER & NAVIGATION
   ===================================== */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 14px rgba(0,0,0,0.09);
  position: relative;
  z-index: 30;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}
.logo img {
  height: 42px;
  width: auto;
  vertical-align: middle;
}

.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin-left: 40px;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 500;
  color: var(--color-primary);
  position: relative;
  padding: 6px 10px 6px 0px;
  transition: color 0.13s;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--color-secondary);
}
.main-nav a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -3px; height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  width: 100%;
}
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  color: var(--color-primary);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 102;
  margin-left: 16px;
  transition: background 0.12s;
  border-radius: 6px;
  padding: 0 8px;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--color-primary);
}

/* Mobile Menu Styles */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(248, 247, 246, 0.99);
  box-shadow: 0 8px 36px rgba(0,0,0,0.16);
  z-index: 101;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(0.59,0.01,0.43,0.98);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 28px 26px 0 26px;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.3rem;
  background: none;
  border: none;
  color: var(--color-primary);
  padding: 4px 10px 4px 2px;
  cursor: pointer;
  margin-bottom: 16px;
  transition: color 0.13s;
  border-radius: 8px;
}
.mobile-menu-close:hover {
  color: var(--color-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--color-primary);
  padding: 14px 6px;
  border-radius: 8px;
  transition: background 0.14s, color 0.14s;
}
.mobile-nav a:hover {
  background: #eee;
  color: var(--color-secondary);
}

/* Show/Hide navigation - mobile first */
@media (max-width: 960px) {
  .main-nav, .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}
@media (min-width: 961px) {
  .mobile-menu {
    display: none !important;
  }
}

/* =============================
   FOOTER
   ============================= */
footer {
  width: 100%;
  background: #141414;
  color: #f8f8f8;
  padding: 45px 0 18px 0;
  border-top: 3px solid var(--color-primary);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-accent);
  gap: 12px;
  margin-bottom: 14px;
}
.footer-brand img {
  height: 34px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1rem;
  color: #f2f2f2;
}
.footer-nav a {
  color: #f2f2f2;
  transition: color 0.15s;
}
.footer-nav a:hover {
  color: var(--color-secondary);
  text-decoration: underline;
}
.footer-contact {
  font-size: 1rem;
  color: #e8e8e8;
}
.footer-contact a {
  color: var(--color-secondary);
  text-decoration: underline;
}
.footer-contact p{
  color: #e8e8e8;
}
.footer-newsletter {
  margin-top: 12px;
}
.footer-newsletter p {
  color: #f0f0f0;
  font-size: 1.03em;
  margin-bottom: 4px;
}
.footer-newsletter .cta-btn {
  background: var(--color-secondary);
  color: #151515;
}
.footer-newsletter .cta-btn:hover {
  background: #151515;
  color: var(--color-secondary);
}
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}
.footer-social a img {
  width: 32px;
  height: 32px;
}

/* =====================================
   COOKIE CONSENT BANNER & MODAL
   ===================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #232323;
  color: #fff;
  box-shadow: 0 -2px 18px rgba(30,30,30,0.11);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 250;
  padding: 22px 26px;
  gap: 30px;
  font-size: 1rem;
  border-radius: 18px 18px 0 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: transform 0.33s cubic-bezier(0.5,0.1,0.5,1), opacity 0.15s;
}
.cookie-banner.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}
.cookie-banner .cookie-btn {
  padding: 9px 18px;
  font-family: var(--font-body);
  border-radius: 8px;
  font-size: 1.04em;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.14s, color 0.13s, box-shadow 0.13s;
}
.cookie-banner .cookie-btn.accept {
  background: var(--color-secondary);
  color: #151515;
  box-shadow: var(--shadow-xs);
}
.cookie-banner .cookie-btn.reject {
  background: #fff;
  color: var(--color-primary);
  border: 1.3px solid var(--color-gray-300);
}
.cookie-banner .cookie-btn.settings {
  background: var(--color-primary);
  color: #fff;
  border: none;
}
.cookie-banner .cookie-btn:hover {
  background: #141414;
  color: var(--color-secondary);
}

.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 251;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(30,30,30,0.37);
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open {
  display: flex;
  animation: fadeIn 0.20s;
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #181818;
  padding: 36px 22px 28px 26px;
  border-radius: 18px;
  box-shadow: 0 8px 40px rgba(30,30,30,0.18);
  min-width: 320px;
  min-height: 180px;
  max-width: 96vw;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: dropDownModal 0.37s cubic-bezier(0.3,0.84,0.27,1.06);
}
@keyframes dropDownModal {
  0% { transform: translateY(-56px) scale(0.9); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  margin-bottom: 16px;
  font-family: var(--font-display);
  color: var(--color-primary);
}
.cookie-modal-category {
  margin-bottom: 14px;
}
.cookie-modal-category label {
  font-size: 1.04rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-right: 14px;
}
.cookie-toggle {
  appearance: none;
  background: #e1e0df;
  border-radius: 15px;
  width: 38px;
  height: 20px;
  display: inline-block;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.15s;
  vertical-align: middle;
}
.cookie-toggle:checked {
  background: var(--color-secondary);
}
.cookie-toggle::before {
  content: "";
  position: absolute;
  top: 2.3px; left: 2.3px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1.5px 6px rgba(44,44,44,0.09);
  transition: left 0.21s cubic-bezier(0.5,0.2,0.7,1.0);
}
.cookie-toggle:checked::before {
  left: 20px;
}
.cookie-modal-btns {
  display: flex;
  gap: 13px;
  margin-top: 10px;
}
.cookie-modal-btn {
  padding: 9px 17px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.04em;
  cursor: pointer;
  background: var(--color-primary);
  color: #fff;
  border: none;
  transition: background 0.14s, color 0.12s;
}
.cookie-modal-btn:hover {
  background: var(--color-secondary);
  color: #151515;
}
.cookie-modal-close {
  position: absolute;
  top: 14px; right: 18px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--color-primary);
  cursor: pointer;
}
.cookie-modal-close:hover {
  color: var(--color-secondary);
}

/* =========================
   RESPONSIVE BREAKPOINTS
   ========================= */
@media (max-width: 960px) {
  .container,
  section, .section {
    padding: 28px 10px;
  }
  header .container {
    flex-direction: row;
    align-items: center;
    height: 62px;
    gap: 14px;
  }
  .content-grid, .card-container, .member-bios, .team-values {
    flex-direction: column;
    gap: 17px;
  }
  .recipe-preview-grid {
    flex-direction: column;
    gap: 20px;
  }
  .footer-brand, .footer-contact, .footer-newsletter, .footer-social {
    margin-top: 6px;
  }
  .footer-nav {
    flex-direction: row;
    gap: 18px;
    flex-wrap: wrap;
  }
  .hero {
    padding: 28px 0 24px 0;
  }
  .content-wrapper {
    gap: 15px;
  }
  .testimonial-card, .card {
    padding: 18px 12px;
  }
  .map-placeholder{
    padding: 14px 6px;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .container {
    max-width: 98vw;
    padding: 0 6px;
  }
  h1 {
    font-size: 1.75rem;
    margin-bottom: 9px;
  }
  h2 {
    font-size: 1.28rem;
    margin-bottom: 8px;
  }
  .footer-brand img {
    height: 25px;
  }
  .footer-contact, .footer-newsletter {
    font-size: 0.95em;
  }
  .mobile-menu {
    padding: 12px 6px 0 12px;
  }
  .cookie-modal {
    padding: 22px 8px 18px 8px;
  }
}
@media (max-width:480px) {
  .hero, .section, section {
    padding: 16px 0;
  }
  .card, .testimonial-card {
    padding: 8px 4px;
  }
  .footer-brand, .footer-contact, .footer-newsletter {
    margin-top: 3px;
    font-size: 0.91em;
  }
  .footer-social a img {
    width: 23px;
    height: 23px;
  }
  .cookie-banner {
    padding: 13px 3vw;
    font-size: 0.97em;
    gap: 11px;
  }
}

/* =====================================
   MICRO-INTERACTIONS & TRANSITIONS
   ===================================== */
.card, .testimonial-card, .services-list li, .member-bios > div, .team-values ul li, .recipe-preview-grid > div {
  transition: box-shadow 0.18s, transform 0.15s;
}
.card:hover, .recipe-preview-grid > div:hover, .testimonial-card:hover, .services-list li:hover, .member-bios > div:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px) scale(1.01);
}
.cta-btn:active {
  transform: scale(0.96);
}

/* ======== Utility & Misc ======== */
::-webkit-input-placeholder { color: #898989; }
::-moz-placeholder { color: #898989; }
:-ms-input-placeholder { color: #898989; }
::placeholder { color: #898989; }
.hidden { display: none !important; }

/***** MINIMUM SPACING BETWEEN CARDS/SECTIONS *****/
.section, section, .card, .testimonial-card, .card-container > *, .content-grid > *, .recipe-preview-grid > *, .member-bios > *, .services-list > *, .team-values ul li, .card:not(:last-child), .testimonial-card:not(:last-child) {
  margin-bottom: 20px;
}

/***** Prevent Overlapping, Ensure Z-Index *****/
.card, .testimonial-card, .cookie-banner, .mobile-menu {
  z-index: 10;
}

/***** Accessibility & Focus *****/
:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

/***** Table Scroll (mobile) *****/
.pricing-table {
  overflow-x: auto;
  display: block;
}

/***** Contact Details Icon Spacing *****/
.contact-details {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 8px;
}
.contact-details span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1rem;
}
.contact-details img {
  width: 20px; height: 20px;
}

/***** Confirmation section *****/
.confirmation {
  background: #f7f7f8;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
}

/***** Special for gdpr/privacy/terms pages *****/
.gdpr-info, .privacy-policy, .cookie-policy, .terms-of-service {
  background: #fafbfd;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
  margin-bottom: 0px;
  padding-bottom: 54px;
}

/***** Hide scrollbars on mob-menu *****/
.mobile-menu {
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.mobile-menu::-webkit-scrollbar {
  display: none;
}

/****** Animations Keyframes ******/
@keyframes slide-in-left {
  from { transform: translateX(-100vw);} to { transform: translateX(0); }
}
@keyframes slide-out-left {
  from { transform: translateX(0);} to { transform: translateX(-100vw); }
}
