/* =======================
   Lively Journeys Consulting – style.css
   Luxurious, Premium Brand Aesthetic, Responsive, Flexbox-only Layout
======================= */

/* === 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, 
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, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F5F6FA;
  color: #182236;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
  vertical-align: middle;
}
button {
  font: inherit;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}

/* === VARIABLE: LUXURY GOLD === */
:root {
  --gold: #C9A861;
  --luxury-blue: #1B395F;
  --accent: #F5F6FA;
  --secondary: #5EBFB6;
  --footer-bg: #161B24;
  --testimonial-bg: #ffffff;
  --testimonial-border: #e8e7e0;
  --shadow: 0 2px 20px rgba(27, 57, 95, 0.08);
  --border-radius: 14px;
}

/* ====================
   TYPOGRAPHY
==================== */
body {
  font-size: 16px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: var(--accent);
  color: #182236;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  color: var(--luxury-blue);
  letter-spacing: 0.5px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1rem;
}
p, ul, ol {
  font-size: 1rem;
  color: #182236;
}
p {
  margin-bottom: 10px;
}
strong, b {
  font-weight: bold;
}

/* Display/Lead font - Montserrat */
.display, .hero h1, .hero h2 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  letter-spacing: 0.5px;
}

/* Link Styling */
a {
  color: var(--luxury-blue);
  transition: color 0.22s;
}
a:hover {
  color: var(--gold);
}

/* ===========
   CONTAINERS, LAYOUT
================ */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border-radius: var(--border-radius);
}

@media (max-width: 768px) {
  .section {
    margin-bottom: 30px;
    padding: 24px 8px;
  }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
}

/* =================
   HEADER & NAV
================= */
header {
  background: #fff;
  box-shadow: var(--shadow);
  position: relative;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 20px 0;
  gap: 24px;
  position: relative;
}
header nav > a img {
  max-height: 48px;
  display: block;
}
header nav ul {
  display: flex;
  gap: 24px;
  align-items: center;
}
header nav ul li {
  display: flex;
  align-items: center;
}
header nav ul li a {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #233150;
  padding: 8px 10px;
  border-radius: 10px;
  transition: background 0.2s, color 0.2s;
}
header nav ul li a:hover {
  color: var(--gold);
  background: rgba(201, 168, 97, 0.05);
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  background: var(--luxury-blue);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 28px;
  border: none;
  border-radius: 31px;
  box-shadow: 0 2px 20px rgba(27, 57, 95, 0.10);
  cursor: pointer;
  transition: background 0.23s, color 0.15s, box-shadow 0.18s;
  margin-left: 16px;
  margin-top: 0;
  text-shadow: 0 1px 1px rgba(0,0,0,0.03);
  letter-spacing: 0.02em;
  position: relative;
  border: 2px solid var(--gold);
}
.cta-btn:hover,
.cta-btn:focus {
  background: var(--gold);
  color: var(--luxury-blue);
  box-shadow: 0 6px 28px 0 rgba(201,168,97,0.13);
}

/* MOBILE MENU BUTTON */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: var(--luxury-blue);
  margin-left: 16px;
  z-index: 42;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.2s;
}
.mobile-menu-toggle:hover {
  background: rgba(27,57,95,0.09);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(27,57,95,0.91);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.53, 0.05, 0.12, 0.99);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 52px;
  width: 100vw;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 28px;
  background: #fff;
  color: var(--luxury-blue);
  border-radius: 50%;
  font-size: 1.7rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1002;
  box-shadow: var(--shadow);
  border: 2px solid var(--gold);
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-close:hover {
  background: var(--gold);
  color: var(--luxury-blue);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 72px;
  width: 100%;
  align-items: center;
}
.mobile-nav a {
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-weight: 500;
  padding: 14px 38px;
  border-radius: 10px;
  transition: background 0.22s, color 0.18s;
  text-align: center;
  width: 80vw;
  max-width: 360px;
}
.mobile-nav a:hover {
  background: var(--gold);
  color: var(--luxury-blue);
}

@media (max-width: 1024px) {
  header nav ul {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}

@media (min-width: 1025px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
  header nav ul {
    display: flex;
  }
  .cta-btn {
    display: inline-flex;
  }
}

/* ===================
   HERO SECTION
=================== */
.hero {
  background: linear-gradient(95deg, #F5F6FA 70%, var(--gold) 120%);
  border-radius: var(--border-radius);
  min-height: 310px;
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero .container {
  height: 100%;
}
.hero .content-wrapper {
  padding: 24px 0;
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  color: var(--luxury-blue);
  font-size: 2.7rem;
  line-height: 1.1;
  letter-spacing: 1px;
  text-shadow: 0 3px 18px rgba(27,57,95,0.10);
}
.hero p {
  font-size: 1.15rem;
  max-width: 530px;
  margin-bottom: 16px;
}
.hero .cta-btn {
  font-size: 1.08rem;
  margin-top: 12px;
}
@media (max-width: 768px) {
  .hero {
    min-height: 200px;
    margin-bottom: 22px;
    padding: 16px 0;
  }
  .hero h1 {
    font-size: 2rem;
  }
}

/* =====================================
   MANDATORY FLEXBOX PATTERNS - LAYOUTS
===================================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  padding: 28px 24px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  min-width: 260px;
  min-height: 120px;
  flex: 1 1 260px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width:900px) {
  .content-grid, .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.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: var(--testimonial-bg);
  border: 1px solid var(--testimonial-border);
  border-left: 5px solid var(--gold);
  box-shadow: var(--shadow);
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  transition: box-shadow 0.22s;
}
.testimonial-card blockquote {
  font-style: italic;
  color: #182236;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
}
.testimonial-card span {
  font-size: .97rem;
  font-family: 'Open Sans', sans-serif;
  color: #555F6A;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px 0 rgba(201,168,97,0.15);
  border-left: 5px solid var(--luxury-blue);
}

/* CARDS FOR CASES/BLOG/TEAM */
.case-card, .blog-post-card, .team-member-card {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  padding: 24px 20px;
  transition: box-shadow 0.18s, border-color 0.15s;
  position: relative;
  border-left: 4px solid transparent;
}
.case-card:hover, .blog-post-card:hover, .team-member-card:hover {
  box-shadow: 0 8px 20px 0 rgba(27,57,95,0.13);
  border-left: 4px solid var(--gold);
}

/* TEAM GRID (flex) */
.team-card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: flex-start;
}
.team-member-card {
  min-width: 210px;
  flex: 1 1 210px;
  margin-bottom: 20px;
}
@media (max-width:900px) {
  .team-card-list {
    flex-direction: column;
    gap: 16px;
  }
}

/* SERVICE GRID */
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 24px;
}
.service-grid > div {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 26px 18px 22px 18px;
  flex: 1 1 250px;
  min-width: 240px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s, border-color 0.2s;
  border-left: 4px solid transparent;
}
.service-grid > div:hover {
  border-left: 4px solid var(--gold);
  box-shadow: 0 8px 28px 0 rgba(201,168,97,0.18);
}
.service-grid img {
  height: 38px;
  margin-bottom: 12px;
  filter: grayscale(20%);
  opacity: 0.93;
}
.service-grid h3 {
  color: var(--luxury-blue);
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.service-grid p {
  color: #233150;
  margin-bottom: 0;
}
@media (max-width:900px) {
  .service-grid {
    flex-direction: column; 
  }
  .service-grid > div {
    width: 100%;
    min-width: unset;
    align-items: flex-start;
  }
}

/* ===============
   FEATURES, ICONS
================ */
.features ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.features ul li {
  display: flex;
  align-items: center;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.08rem;
  color: #223043;
  padding: 8px 0;
  line-height: 1.45;
}
.features ul li img {
  width: 30px;
  margin-right: 15px;
  filter: grayscale(20%);
  opacity: 0.93;
}

/* ===============
   PROCESS OL STEPS
================ */
.process ol {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 12px;
}
.process ol li {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 16px 12px;
  gap: 16px;
}
.process ol li img {
  width: 32px;
  margin-right: 8px;
}
.process ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ===========
   CASE STUDY
============= */
.case-study-list .case-card {
  margin-bottom: 24px;
  border-left: 5px solid var(--gold);
}
.case-study-list .case-card h3 {
  font-size: 1.15rem;
  color: var(--luxury-blue);
}

/* ===========
   CTA BANNER
============ */
.cta-banner, .contact-cta {
  background: linear-gradient(95deg, #fff 70%, var(--gold) 120%);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 46px;
  padding: 32px 20px;
  text-align: center;
}
.cta-banner h2, .contact-cta h2 {
  color: var(--luxury-blue);
  margin-bottom: 10px;
}
.cta-banner p, .contact-cta p {
  color: #233150;
  margin-bottom: 18px;
  font-size: 1.06rem;
}
.social-links {
  display: flex;
  flex-direction: row;
  gap: 18px;
  justify-content: center;
  margin-top: 16px;
}
.social-links a {
  opacity: 0.82;
  transition: opacity 0.17s;
}
.social-links a:hover {
  opacity: 1;
}

@media (max-width:768px) {
  .cta-banner, .contact-cta {
    padding: 18px 9px;
    margin-bottom: 30px;
  }
}

/* ===========
   BLOG CARDS
============ */
.blog-list .blog-post-card {
  border-left: 5px solid var(--gold);
}
.blog-list .blog-post-card h3 {
  font-size: 1.1rem;
}
.blog-list .blog-post-card p img {
  display: inline-block;
  width: 23px;
  vertical-align: middle;
  margin-right: 6px;
}

/* ===========
   FACTS & NUMBERED LISTS
============ */
.facts-numbers ul, .about-company ul, .history ul, .team-values ul, .legal ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}
.facts-numbers ul li strong, .about-company ul li strong, .history ul li strong {
  color: var(--gold);
}

/* ===========
   CONTACT SECTIONS
============ */
.contact-form-info ul,
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-form-info ul li img,
.contact-details ul li img {
  width: 24px;
  vertical-align: middle;
  margin-right: 7px;
}
.contact-footer {
  margin-top: 14px;
  font-size: 0.97rem;
  color: #D6CBAC;
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1.5;
}
.contact-footer a {
  color: var(--gold);
  text-decoration: underline;
}
.contact-footer p{
  color: white;
}
.contact-footer a:hover {
  color: var(--secondary);
  text-decoration: underline;
}

/* ===========
   FOOTER
============ */
footer {
  background: var(--footer-bg);
  color: #ECE9DF;
  padding: 32px 0 8px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  margin-bottom: 10px;
}
footer nav a {
  color: #ECE9DF;
  font-size: .97rem;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.16s;
  padding: 0 4px;
  border-radius: 6px;
}
footer nav a:hover {
  color: var(--gold);
}
@media (max-width:800px) {
  footer .container {
    gap: 10px;
  }
  footer nav {
    flex-direction: column;
    gap: 7px;
  }
}

/* ===========
   THANK YOU
============ */
.thank-you {
  min-height: 320px;
  background: #fffdf4;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-top: 30px;
  margin-bottom: 38px;
  padding: 32px 18px;
  text-align: center;
}
.thank-you h1 {
  color: var(--luxury-blue);
  margin-bottom: 14px;
}
.thank-you a.cta-btn {
  margin-top: 20px;
}

/* ================
   LEGAL PAGES
================ */
.legal {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 40px;
  padding: 32px 20px;
  color: #212C3D;
}
.legal h1, .legal h2 {
  color: var(--luxury-blue);
}
.legal ul {
  margin-left: 20px;
}
.legal a {
  color: var(--luxury-blue);
  text-decoration: underline;
}
.legal a:hover {
  color: var(--gold);
}

/* ===============
   MISC
================ */
::-webkit-input-placeholder { color: #b3b1b1; }
::-moz-placeholder { color: #b3b1b1; }
:-ms-input-placeholder { color: #b3b1b1; }
::placeholder { color: #b3b1b1; }

input, textarea {
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  font-size: 1rem;
  padding: 10px 14px;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-bottom: 12px;
  width: 100%;
}
input:focus, textarea:focus {
  outline: 1.5px solid var(--gold);
  border-color: var(--gold);
}

/* ===============
   HOVER SHADOW INTENT
================ */
.card:hover {
  box-shadow: 0 8px 22px 0 rgba(201,168,97,0.16);
  border-left: 4px solid var(--gold);
}

/* ===============
   MEDIA QUERIES: MOBILE SIZING
================ */
@media (max-width: 600px) {
  html, body { font-size: 15px; }
  .section { padding: 16px 2px; }
  .hero h1, h1 { font-size: 1.38rem; }
  h2 { font-size: 1.08rem; }
}

/* ===============
   SCROLLBAR
================ */
::-webkit-scrollbar { width: 9px; background: #e5e4e1; }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 8px; }

/* =====================
   COOKIE CONSENT BANNER
===================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-top: 3px solid var(--gold);
  box-shadow: 0 -4px 32px 0 rgba(27,57,95,0.13);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 22px 10px 14px 10px;
  font-size: 1rem;
  animation: slideUpCookie 0.7s cubic-bezier(.63,0,.21,1);
}
@keyframes slideUpCookie {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.cookie-banner .cookie-banner-text {
  color: #191e28;
  padding: 0 6px;
  text-align: center;
}
.cookie-banner .cookie-banner-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 6px;
}
.cookie-btn {
  padding: 7px 21px;
  border-radius: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-right: 3px;
  border: none;
  cursor: pointer;
  transition: background 0.21s, color 0.13s;
  box-shadow: var(--shadow);
}
.cookie-btn.accept {
  background: var(--luxury-blue);
  color: #fff;
  border: 1.5px solid var(--gold);
}
.cookie-btn.accept:hover {
  background: var(--gold);
  color: var(--luxury-blue);
}
.cookie-btn.reject {
  background: #fff;
  border: 1.5px solid var(--luxury-blue);
  color: var(--luxury-blue);
}
.cookie-btn.reject:hover {
  background: var(--luxury-blue);
  color: #fff;
}
.cookie-btn.settings {
  background: #f8f7ef;
  border: 1.5px solid var(--gold);
  color: var(--luxury-blue);
}
.cookie-btn.settings:hover {
  background: var(--gold);
  color: #fff;
}
@media (max-width:600px) {
  .cookie-banner {
    font-size: 0.97rem;
    padding: 13px 3px 7px 3px;
  }
  .cookie-banner .cookie-banner-actions {
    gap: 7px;
  }
}

/* COOKIE MODAL POPUP */
.cookie-modal-overlay {
  position: fixed;
  z-index: 3100;
  inset: 0;
  background: rgba(27,57,95,0.50);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadein 0.37s;
}
.cookie-modal {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 44px 0 rgba(27,57,95,0.17);
  padding: 36px 26px 23px 26px;
  min-width: 300px;
  max-width: 95vw;
  width: 430px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.cookie-modal h2 {
  color: var(--luxury-blue);
  margin-bottom: 7px;
  font-size: 1.23rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal .close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--gold);
  color: var(--luxury-blue);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.13rem;
  cursor: pointer;
  transition: background 0.21s, color 0.14s;
}
.cookie-modal .close-btn:hover {
  background: var(--luxury-blue);
  color: #fff;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-modal .category-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 1rem;
  padding: 7px 0;
}
.cookie-modal .category-row label {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--luxury-blue);
}
.cookie-modal .switch {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 22px;
}
.cookie-modal .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: #e8e7e0;
  transition: background 0.22s;
  border-radius: 13px;
}
.cookie-modal .switch input:checked + .slider {
  background: var(--gold);
}
.cookie-modal .slider:before {
  position: absolute;
  content: '';
  height: 15px; width: 15px;
  left: 5px; bottom: 3.5px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.22s;
  box-shadow: 0 1px 2px 0 rgba(27,57,95,0.10);
}
.cookie-modal .switch input:checked + .slider:before {
  transform: translateX(10px);
}
.cookie-modal .category-row .desc {
  color: #666a7a;
  font-size: 0.94rem;
  margin-left: 5px;
  font-weight: 400;
}
.cookie-modal .category-row .alwayson {
  background: var(--secondary);
  padding: 1px 11px;
  border-radius: 18px;
  font-size: 0.82rem;
  color: #fff;
  font-weight: 600;
  margin-left: 6px;
}
@media (max-width:500px) {
  .cookie-modal {
    padding: 22px 4vw 12px 4vw;
    min-width: 0;
  }
}

@keyframes fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}
/* =========== END ========== */
