/* =======================
   CSS RESET & NORMALIZE
   ======================= */
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, main, 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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section { display: block; }
body { line-height: 1.5; }
ol, ul { list-style: none; }
a { background-color: transparent; text-decoration: none; color: inherit; }
img { border-style: none; max-width: 100%; height: auto; display: block; }
table { border-collapse: collapse; border-spacing: 0; }
button { border: none; background: none; font: inherit; cursor: pointer; }
*:focus { outline: 2px solid #D8A900; outline-offset: 2px; }

/* =======================
   CUSTOM PROPERTIES & FONTS
   ======================= */
:root {
  --color-primary: #24283B;
  --color-secondary: #D8A900;
  --color-accent: #ECEFF4;
  --color-warm1: #FFF8E6;
  --color-warm2: #FFEBC0;
  --color-warm3: #F6E8CB;
  --color-success: #59AE70;
  --color-error: #D9534F;
  --color-grey: #B2B7BC;
  --color-dark: #1a1922;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-primary);
  background: var(--color-warm1);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.03em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 0.6em;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.6rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.34rem; font-weight: 600; }
h4, h5, h6 { font-weight: 500; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.14rem; }
}

/* =======================
   MAIN CONTAINER LAYOUTS
   ======================= */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 24px;
}

.section, .about, .features, .services, .how-to, .contact-details, .about-approach, .events-agenda, .cookie-policy, .privacy-policy, .terms-of-service, .rgpd {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 15px 0 rgba(216, 169, 0, 0.05), 0 0.5px 1px 0 rgba(36,40,59,0.03);
}
main > section.hero {
  background: linear-gradient(90deg, #FFF8E6 0%, #FFF3D8 100%);
  margin-bottom: 48px;
  border-radius: 0 0 36px 36px;
  box-shadow: 0 6px 32px 0 rgba(216, 169, 0, 0.13);
  padding-top: 36px;
  padding-bottom: 36px;
}

@media (max-width: 768px) {
  .section, .about, .features, .services, .how-to, .contact-details, .about-approach, .events-agenda, .cookie-policy, .privacy-policy, .terms-of-service, .rgpd {
    padding: 28px 8px;
    margin-bottom: 36px;
  }
  main > section.hero {
    border-radius: 0 0 18px 18px;
    padding-top: 20px;
    padding-bottom: 24px;
  }
}

/* =======================
   NAVIGATION HEADER
   ======================= */
header {
  background: var(--color-primary);
  color: #fff;
  width: 100%;
  z-index: 50;
  box-shadow: 0 0 14px 0 rgba(36,40,59,0.09);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: 28px;
}
.logo img {
  height: 42px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.08rem;
  padding: 10px 10px;
  border-radius: 12px;
  transition: background 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: rgba(232,203,51,0.16);
  color: var(--color-secondary);
}
.cta-btn.primary {
  background: var(--color-secondary);
  color: var(--color-primary);
  border-radius: 25px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.03rem;
  padding: 12px 32px;
  margin-left: 22px;
  transition: background 0.2s, box-shadow 0.2s , color 0.2s;
  box-shadow: 0 2px 16px 0 rgba(216,169,0,0.16);
  letter-spacing: 0.02em;
  display: inline-block;
}
.cta-btn.primary:hover, .cta-btn.primary:focus {
  background: #FFD641;
  color: var(--color-primary);
  box-shadow: 0 3px 22px 0 rgba(216,169,0, 0.23);
}
.cta-btn.secondary {
  background: #fff;
  color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
  border-radius: 25px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.01rem;
  padding: 12px 28px;
  margin-top: 16px;
  display: inline-block;
  transition: background 0.2s, color 0.19s, border-color 0.17s, box-shadow 0.2s;
  box-shadow: 0 2px 14px 0 rgba(216,169,0,0.07);
}
.cta-btn.secondary:hover, .cta-btn.secondary:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
  border-color: var(--color-secondary);
  box-shadow: 0 3px 26px 0 rgba(216,169,0, 0.16);
}

/* ==========
   BURGER MENU (Mobile)
   ===========*/
.mobile-menu-toggle {
  background: none;
  color: #fff;
  font-size: 2rem;
  margin-left: 14px;
  border: none;
  display: none;
  position: relative;
  z-index: 160;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  transition: background .19s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: rgba(216,169,0,0.13);
  color: var(--color-secondary);
}

/* Hamburger visible on mobile */
@media (max-width: 991px) {
  .main-nav, .cta-btn.primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/*
   MOBILE FULLSCREEN MENU
*/
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(36,40,59, 0.98);
  transform: translateX(-100vw);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(.56,1.82,.37,1), opacity 0.19s;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2.2rem;
  color: var(--color-secondary);
  background: none;
  align-self: flex-end;
  margin: 28px 34px 14px 0;
  border-radius: 12px;
  padding: 2px 14px;
  transition: background 0.2s;
  z-index: 220;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: rgba(235,203,65,0.09);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  margin-left: 36px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
  padding: 13px 0;
  border-radius: 10px;
  transition: color .19s, background .21s;
  width: 100%;
  display: block;
}
.mobile-nav a:active,
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--color-secondary);
  background: rgba(216, 169, 0, 0.10);
}

@media (max-width: 400px) {
  .mobile-nav { margin-left: 16px; }
}

/* =====================
   HERO SECTION
   ==================== */
.hero h1 {
  color: var(--color-primary);
  font-size: 2.6rem;
  margin-bottom: 16px;
}
.hero .subheadline {
  font-size: 1.18rem;
  color: #79651B;
  font-family: var(--font-body);
  margin-bottom: 32px;
  max-width: 700px;
  line-height: 1.6;
  font-weight: 500;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero .subheadline {
    font-size: 1.01rem;
    margin-bottom: 22px;
  }
}

/* ====================
   FLEXBRICKS for CARDS & CONTENT
   ==================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(36,40,59,0.11);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 22px;
  transition: box-shadow 0.24s, transform 0.22s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 26px rgba(216,169,0,0.16), 0 1.5px 5px 0 rgba(36,40,59,0.05);
  transform: translateY(-4px) scale(1.018);
}

.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;
}

@media (max-width: 768px) {
  .card-container, .content-grid, .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

.testimonial-card {
  background: var(--color-warm2);
  border-radius: 16px;
  box-shadow: 0 3px 22px 0 rgba(216,168,0,0.07);
  margin-bottom: 20px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-direction: column;
  color: #513A00;
  font-size: 1.05rem;
  font-family: var(--font-body);
  position: relative;
  min-width: 0;
  max-width: 590px;
  transition: box-shadow 0.18s, transform 0.17s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(216,169,0,0.17);
  transform: translateY(-2px) scale(1.01);
}
.testimonial-card p {
  margin-bottom: 12px;
  color: #513A00;
  font-size: 1.04rem;
}
.author-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-primary);
  font-weight: 500;
  font-size: 1.01rem;
}
@media (max-width: 600px) {
  .testimonial-card {
    padding: 14px 9px;
    font-size: 0.97rem;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(216,169,0,0.06);
  padding: 18px 15px;
  margin-bottom: 20px;
}

/* ====================
   FEATURE GRIDS & LISTS
   ==================== */
.feature-grid, .selling-points, .service-list, .process-timeline, .highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid li, .selling-points li, .service-list li, .process-timeline li, .highlights li {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(216,169,0,0.08);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.21s;
  min-width: 0;
}
.feature-grid li img,
.selling-points li img,
.process-timeline li img,
.highlights li img {
  width: 38px;
  height: 38px;
}
.feature-grid li:hover,
.selling-points li:hover,
.service-list li:hover,
.process-timeline li:hover,
.highlights li:hover {
  box-shadow: 0 6px 23px rgba(216,169,0,0.20), 0 1.5px 5px 0 rgba(36,40,59,0.02);
  transform: translateY(-4px) scale(1.02);
}

@media (max-width: 900px) {
  .feature-grid li,
  .selling-points li,
  .service-list li,
  .process-timeline li,
  .highlights li {
    flex: 1 1 90%;
  }
}
@media (max-width: 600px) {
  .feature-grid, .service-list, .selling-points, .process-timeline, .highlights {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid li, .service-list li, .selling-points li, .process-timeline li, .highlights li {
    width: 100%;
    min-width: 0;
    margin-bottom: 15px;
  }
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.service-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(216,169,0,0.09);
  padding: 28px 20px;
  flex: 1 1 270px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  transition: box-shadow 0.18s, transform 0.19s;
}
.service-card:hover {
  box-shadow: 0 8px 29px 0 rgba(216,169,0,0.19);
  transform: translateY(-3px) scale(1.015);
}
.price {
  color: var(--color-secondary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.09rem;
}
@media (max-width: 900px) {
  .service-card {
    flex: 1 1 90%;
  }
}
@media (max-width: 600px) {
  .service-cards {
    flex-direction: column;
    gap: 16px;
  }
}

/* ============
   TABLES
   =============*/
.comparison-table {
  width: 100%;
  background: #fff;
  border-radius: 12px;
  font-family: var(--font-body);
  border: 1px solid #f3e1aa;
  margin-bottom: 24px;
  box-shadow: 0 1px 8px 0 rgba(216, 169, 0, 0.07);
  overflow: hidden;
}
.comparison-table th, .comparison-table td {
  padding: 14px 12px;
  border-bottom: 1px solid #f3e1aa;
  text-align: left;
  font-size: 1rem;
}
.comparison-table th {
  background: var(--color-warm3);
  color: var(--color-primary);
}
.comparison-table tr:last-child td {
  border-bottom: none;
}
@media (max-width: 650px) {
  .comparison-table, .comparison-table thead, .comparison-table tbody, .comparison-table tr, .comparison-table th, .comparison-table td {
    display: block;
    width: 100%;
  }
  .comparison-table tr {
    margin-bottom: 16px;
    box-shadow: 0 1px 4px 0 rgba(216, 169, 0, 0.02);
  }
  .comparison-table th, .comparison-table td {
    border: none;
    padding: 10px 6px;
  }
}

/* =============
   ABOUT & TEXT
   =============*/
.text-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.text-section h3 {
  margin-top: 18px;
  margin-bottom: 7px;
}
.text-section ul {
  margin-left: 18px;
  margin-bottom: 0px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: disc inside;
}

.text-section p, .text-section li {
  font-size: 1.09rem;
  color: #28282b;
  line-height: 1.64;
}

/* ================
   CONTACT DETAILS
   =================*/
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-info-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1.05rem;
  color: #514940;
}
.contact-info-list img {
  width: 22px;
  height: 22px;
}

.quick-info {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.quick-info li {
  background: var(--color-accent);
  border-radius: 13px;
  box-shadow: 0 1px 4px rgba(216,169,0,0.09);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1rem;
  color: var(--color-primary);
  margin-bottom: 11px;
}
.quick-info img {
  width: 23px;
  height: 23px;
}

@media (max-width: 650px) {
  .quick-info {
    flex-direction: column;
    gap: 14px;
    padding-left: 2px;
  }
}

/* =============
   FOOTER
   =============*/
footer {
  background: #24283B;
  color: #fff;
  padding: 48px 0 22px 0;
  border-radius: 32px 32px 0 0;
  margin-top: 70px;
  box-shadow: 0 -2px 22px #f2dcc0cc;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.footer-logo img {
  height: 54px;
  width: auto;
  margin-bottom: 16px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 6px;
}
.footer-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.01rem;
  font-weight: 500;
  border-radius: 10px;
  padding: 6px 11px;
  transition: background .14s, color .15s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  background: rgba(216, 169, 0, 0.08);
  color: var(--color-secondary);
}
.footer-contact {
  color: var(--color-accent);
  margin-top: 7px;
  font-size: 0.97rem;
  text-align: center;
}

/* ==============
   MICRO-INTERACTIONS
   ============== */
a, button, .cta-btn {
  transition: background 0.19s, color 0.19s, box-shadow 0.23s, border-color 0.13s, outline 0.09s;
}

/* Focus ring styling */
a:focus-visible,
.button:focus-visible,
.cta-btn:focus-visible,
.mobile-menu-close:focus-visible {
  outline: 2.5px solid var(--color-secondary);
  outline-offset: 2px;
  box-shadow: 0 2px 12px rgba(216,169,0,0.13);
}

/* ============== 
   RESPONSIVE DESIGN
   ============== */
@media (max-width: 991px) {
  header .container {
    padding: 0 11px;
  }
}
@media (max-width: 650px) {
  main > section.hero {
    padding-top: 12px;
    padding-bottom: 14px;
  }
  footer {
    border-radius: 16px 16px 0 0;
    padding: 30px 0 13px 0;
  }
  .footer-logo img {
    height: 35px;
  }
}

/* ===========
   UTILITIES
   ===========*/
.mt-2 { margin-top: 12px; }
.mb-2 { margin-bottom: 12px; }
.mt-4 { margin-top: 24px; }
.mb-4 { margin-bottom: 24px; }
.text-center { text-align: center; }

/* ============
   COOKIES BANNER
   ============*/
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff9ee;
  color: #403a2c;
  box-shadow: 0 -1.5px 18px rgba(36,40,59,0.08),0 -1px 8px #e9d1a2dd;
  padding: 20px 18px 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  z-index: 4002;
  font-size: 1.01rem;
  border-radius: 24px 24px 0 0;
  opacity: 1;
  pointer-events: auto;
  transition: transform .32s cubic-bezier(.46,.13,.53,1), opacity .22s;
}
#cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
#cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 2px;
}
#cookie-banner .cookie-btn {
  border-radius: 20px;
  padding: 10px 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.01rem;
  margin: 0 2px;
  border: none;
  cursor: pointer;
  transition: background .17s, color .16s, box-shadow .18s;
}
#cookie-banner .accept-btn {
  background: var(--color-secondary);
  color: var(--color-primary);
  box-shadow: 0 2px 13px 0 rgba(216,169,0,0.14);
}
#cookie-banner .accept-btn:hover, #cookie-banner .accept-btn:focus {
  background: #ffd934;
  color: var(--color-primary);
}
#cookie-banner .reject-btn {
  background: #fff;
  color: #a37200;
  border: 2px solid var(--color-secondary);
}
#cookie-banner .reject-btn:hover, #cookie-banner .reject-btn:focus {
  background: #FFE084;
}
#cookie-banner .settings-btn {
  background: #fff9ee;
  color: var(--color-primary);
  border: 2px solid var(--color-grey);
}
#cookie-banner .settings-btn:hover, #cookie-banner .settings-btn:focus {
  background: #fff1cc;
  border: 2px solid var(--color-secondary);
}

@media (max-width: 700px) {
  #cookie-banner { font-size: 0.97rem; padding: 12px 7px 15px 7px; }
  #cookie-banner .cookie-actions { gap: 8px; }
}

/* Cookie Modal */
#cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(36,40,59,0.84);
  z-index: 5001;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.18s;
}
#cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
#cookie-modal .modal-content {
  background: #fff9ee;
  border-radius: 20px;
  box-shadow: 0 8px 44px 0 rgba(36,40,59,0.13);
  padding: 38px 26px 20px 26px;
  min-width: 320px;
  min-height: 200px;
  max-width: 98vw;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-size: 1.02rem;
  color: #6a5820;
}
#cookie-modal h3 {
  font-family: var(--font-display);
  color: var(--color-secondary);
  font-size: 1.19rem;
  margin-bottom: 12px;
}
#cookie-modal label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  margin-bottom: 14px;
}
#cookie-modal input[type=checkbox] {
  accent-color: var(--color-secondary);
  width: 18px;
  height: 18px;
  border-radius: 5px;
}
#cookie-modal .essential {
  color: #447C13;
  font-weight: 500;
  font-size: 1.05rem;
}
#cookie-modal .close-modal {
  position: absolute;
  top: 8px;
  right: 16px;
  font-size: 1.68rem;
  color: #ac8710;
  background: none;
  border-radius: 12px;
  padding: 0 7px;
  transition: background 0.16s, color 0.15s;
}
#cookie-modal .close-modal:hover, #cookie-modal .close-modal:focus {
  background: #fff1cc;
  color: var(--color-secondary);
}
#cookie-modal .modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 15px;
}
#cookie-modal .modal-actions .cookie-btn {
  padding: 7px 20px;
  border-radius: 13px;
  font-size: 0.99rem;
}

@media (max-width: 480px) {
  #cookie-modal .modal-content {
    padding: 16px 4px 9px 8px;
    font-size: 0.95rem;
    min-width: 0;
  }
}


/* ==========
   ANIMATIONS
   ==========*/
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
.hero .content-wrapper > * {
  animation: fadeInUp .7s cubic-bezier(.67,.14,.66,1.09) both;
}
.hero .content-wrapper > *:nth-child(1) { animation-delay: 0.14s; }
.hero .content-wrapper > *:nth-child(2) { animation-delay: 0.21s; }
.hero .content-wrapper > *:nth-child(3) { animation-delay: 0.38s; }

/* ==================
   END OF CSS FILE
   ================== */
