/* --- CSS RESET & BASE --------------------------------------------------- */
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;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #F6F8FA;
  color: #153A6B;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #1D64F2;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #79B043;
  outline: none;
}
button, .cta {
  font-family: inherit;
  cursor: pointer;
}
ul, ol {
  list-style: none;
}
strong {
  font-weight: bold;
}
.visual-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
}

/* --- COLOR VARIABLES ----------------------------------------------------- */
:root {
  --color-primary: #153A6B;
  --color-secondary: #79B043;
  --color-accent: #F6F8FA;
  --color-white: #fff;
  --color-black: #04131E;
  --color-vibrant-orange: #FF8800;
  --color-vibrant-blue: #1D64F2;
  --color-vibrant-pink: #DF2472;
  --color-vibrant-yellow: #FFE900;
  --shadow-card: 0px 6px 24px 0 rgba(21,58,107,0.09);
  --border-radius: 20px;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

/* --- TYPOGRAPHY ---------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--color-primary);
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.13;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  line-height: 1.22;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.3;
}
@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.08rem; }
}
.subheadline {
  font-size: 1.2rem;
  color: #1D64F2;
  font-weight: 500;
  margin-bottom: 24px;
  font-family: var(--font-display);
  letter-spacing: -0.25px;
}
p, ul, ol {
  margin-bottom: 16px;
  font-size: 1rem;
}
dt {
  font-weight: 600;
  color: var(--color-primary);
  margin-top: 28px;
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-size: 1.08rem;
}
dd {
  margin-left: 0;
  margin-bottom: 16px;
  color: var(--color-black);
}
blockquote {
  color: var(--color-primary);
  font-style: italic;
  margin: 12px 0 20px;
  padding-left: 18px;
  border-left: 4px solid var(--color-vibrant-pink);
}

/* --- CONTAINER & LAYOUT -------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  flex-direction: column;
  gap: 0; /* so we do not add extra vertical spacing */
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Additional layout for feature/testimonial/service/team grids */
.feature-grid,
.service-grid,
.team-list,
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 20px;
}
.feature-grid li,
.service-grid li,
.team-member,
.testimonial-card {
  background: var(--color-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  padding: 28px 24px;
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 340px;
  transition: transform .18s, box-shadow .18s;
  margin-bottom: 0 !important;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.feature-grid li:hover,
.service-grid li:hover,
.testimonial-card:hover,
.team-member:hover {
  transform: translateY(-6px) scale(1.02) rotate(-1deg);
  box-shadow: 0px 10px 24px 2px rgba(223,36,114,0.09),var(--shadow-card);
}

/* --- NAVIGATION ---------------------------------------------------------- */
header {
  background: var(--color-white);
  border-bottom: 3px solid var(--color-vibrant-blue);
  padding-top: 12px;
  padding-bottom: 12px;
  margin-bottom: 0;
  position: relative;
  z-index: 30;
}
header .container {
  flex-direction: row;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}
header img {
  height: 48px;
  width: auto;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
}
header nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-primary);
  text-transform: uppercase;
  padding: 7px 0 7px 0;
  letter-spacing: 0.06em;
  position: relative;
}
header nav a:hover, header nav a:focus {
  color: var(--color-vibrant-blue);
}
header nav a.active, header nav a[aria-current=page] {
  color: var(--color-secondary);
  font-weight: 800;
  border-bottom: 3px solid var(--color-vibrant-pink);
}
.cta.primary {
  background: var(--color-vibrant-pink);
  color: var(--color-white);
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: 30px;
  padding: 12px 34px;
  margin-left: 22px;
  box-shadow: 0 2px 9px rgba(223,36,114,0.12);
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  outline: none;
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--color-vibrant-orange);
  color: var(--color-black);
  box-shadow: 0 6px 18px 0 rgba(255,136,0,0.13);
  text-decoration: none;
}
.cta.secondary {
  background: var(--color-secondary);
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-display);
  border: none;
  border-radius: 30px;
  padding: 11px 28px;
  margin-top: 12px;
  box-shadow: 0 2px 8px rgba(121,176,67,0.13);
  transition: background 0.19s, color 0.19s, box-shadow 0.19s;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #57A948;
  color: var(--color-white);
  box-shadow: 0 6px 14px 0 rgba(121,176,67,0.18);
}

@media (max-width: 992px) {
  header .container nav {
    gap: 12px;
  }
  .cta.primary {
    margin-left: 0;
    padding: 10px 22px;
  }
}

/* --- MOBILE NAV ---------------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 111;
  background: var(--color-vibrant-blue);
  color: #fff;
  font-size: 2.1rem;
  border: none;
  border-radius: 8px;
  padding: 8px 13px 10px 13px;
  box-shadow: 0 2px 16px rgba(21,58,107,0.15);
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-vibrant-pink);
  color: var(--color-yellow, #ffe900);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(21,58,107,0.97);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 32px 24px 0 24px;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.79,0,.17,1);
}
.mobile-menu.active {
  transform: translateX(0%);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #fff;
  align-self: flex-end;
  margin-bottom: 18px;
  margin-right: 4px;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-vibrant-yellow);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-top: 28px;
}
.mobile-nav a {
  font-family: var(--font-display);
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  padding: 12px 0;
  border-bottom: 2px solid rgba(245,245,245,0.14);
  transition: color 0.2s, border-color 0.22s;
  border-radius: 4px;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: var(--color-vibrant-yellow);
  border-bottom: 2px solid var(--color-vibrant-pink);
  background: rgba(121,176,67,0.197);
}

@media (max-width: 900px) {
  header .container nav,
  header .container .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (min-width: 901px) {
  .mobile-menu-toggle,
  .mobile-menu {
    display: none !important;
  }
}

/* --- HERO + CTA SECTIONS ------------------------------------------------- */
.hero {
  background: linear-gradient(90deg, #153A6B 69%, #DF2472 100%);
  color: #fff;
  margin-bottom: 60px;
  padding: 56px 0 48px 0;
  border-radius: 0 0 36px 36px;
  box-shadow: 0 8px 30px rgba(29,100,242,0.12);
}
.hero .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.hero h1,
.hero .subheadline {
  color: #fff;
}
.hero .cta.primary {
  background: var(--color-vibrant-yellow);
  color: #153A6B;
  margin-top: 24px;
  box-shadow: 0 6px 32px 0 rgba(255,233,0,0.22);
}
.hero .cta.primary:hover,
.hero .cta.primary:focus {
  background: var(--color-vibrant-pink);
  color: #fff;
}

.cta {
  text-align: center;
  margin: 0 auto 48px auto;
  padding: 24px 0 32px 0;
}
.cta h2 {
  color: var(--color-vibrant-pink);
}
.cta .cta.secondary {
  margin-top: 17px;
}

/* --- FEATURES / SERVICES / TEAM ------------------------------------------ */
.feature-grid img,
.service-grid img,
.team-member img {
  width: 46px;
  margin-bottom: 8px;
  border-radius: 10px;
  background: #EEF5FF;
  padding: 6px;
  box-shadow: 0 1px 6px 0 rgba(29,100,242,0.09);
}
.feature-grid li h3,
.service-grid li h3 {
  color: var(--color-vibrant-pink);
  margin-bottom: 5px;
  font-size: 1.13rem;
}
.feature-grid li p,
.service-grid li p,
.team-member p {
  color: var(--color-black);
  font-size: 0.98rem;
}
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.team-member {
  flex: 1 1 250px;
}

/* --- TESTIMONIALS -------------------------------------------------------- */
.testimonials .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 10px;
}
.testimonial-card {
  background: #fff;
  color: #153A6B;
  border-radius: var(--border-radius);
  box-shadow: 0 6px 28px 0 rgba(21,58,107,0.10);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 32px 24px 22px 24px;
  min-width: 250px;
  max-width: 350px;
  margin-bottom: 0 !important;
  position: relative;
  transition: box-shadow 0.18s, transform 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 34px 0 rgba(25,100,242,0.13);
  transform: translateY(-5px) scale(1.023);
}
.stars {
  color: var(--color-vibrant-yellow);
  font-size: 1.12em;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.18em;
  margin-bottom: 10px;
}
.testimonial-card p,
.testimonial-card blockquote {
  color: #143051;
  font-size: 1.05rem;
  margin-bottom: 13px;
  font-style: italic;
  line-height: 1.5;
}
.client-details, .testimonial-card .client-details span {
  margin-top: 8px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--color-vibrant-pink);
  font-weight: 600;
}

/* --- FAQ ACCORDION ------------------------------------------------------- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-accordion dt {
  font-size: 1.10rem;
  cursor: pointer;
  font-family: var(--font-display);
  padding: 10px 10px 10px 0;
  border-left: 4px solid var(--color-vibrant-blue);
  background: #f2f8fc;
  transition: background 0.19s;
  border-radius: 0 7px 7px 0;
}
.faq-accordion dt:hover, .faq-accordion dt:focus {
  background: #e4f2ff;
  border-left: 4px solid var(--color-vibrant-pink);
}
.faq-accordion dd {
  padding-left: 14px;
  color: #26324e;
  font-size: 1rem;
  background: #fff;
  border-radius: 0 0 6px 6px;
  border-left: 2px dashed #acf5f7;
}

.quick-links a {
  color: var(--color-vibrant-blue);
  font-weight: 600;
  transition: color 0.18s;
}
.quick-links a:focus, .quick-links a:hover {
  color: var(--color-vibrant-pink);
}

/* --- FOOTER -------------------------------------------------------------- */
footer {
  background: #153A6B;
  color: #fff;
  border-top: 6px solid var(--color-vibrant-pink);
  margin-top: 60px;
  box-shadow: 0 -2px 20px rgba(21,58,107,0.10);
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding: 35px 16px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
footer nav a {
  color: #fff;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  text-decoration: underline;
  padding: 2px 0;
  transition: color 0.18s;
}
footer nav a:focus, footer nav a:hover {
  color: var(--color-vibrant-yellow);
}
.footer-contact p, .footer-contact a {
  color: #fff;
  font-size: 0.98rem;
  line-height: 1.6;
}
.footer-contact a { text-decoration: underline; }

footer img {
  width: 44px;
  margin-right: 16px;
}

/* --- LEGAL/STATIC PAGES -------------------------------------------------- */
.legal .text-section {
  background: #fff;
  padding: 32px 22px;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 16px 0 rgba(21,58,107,0.08);
}
.legal .text-section h2 {
  color: var(--color-vibrant-blue);
  margin-top: 22px;
}

/* --- ABOUT/TEAM PAGES ---------------------------------------------------- */
.text-section {
  max-width: 750px;
  margin: 0 auto;
  padding: 0;
  font-size: 1.05rem;
}
.text-section h3 {
  color: var(--color-vibrant-blue);
}

/* --- CONTACT PAGE -------------------------------------------------------- */
.contact-info {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-info p strong {
  color: var(--color-vibrant-pink);
  font-weight: 700;
}
.contact-info a {
  color: var(--color-vibrant-blue);
  text-decoration: underline;
}
.contact-info a:hover { color: var(--color-secondary); }
.map-embed img {
  width: 220px;
  border: 3px solid var(--color-vibrant-blue);
  border-radius: 16px;
  box-shadow: 0 4px 18px 0 rgba(29,100,242,0.11);
  margin-top: 12px;
}

/* --- THANK YOU PAGE ------------------------------------------------------ */
.success {
  text-align: center;
  background: linear-gradient(90deg, #F6F8FA 60%, #79B043 100%);
  padding-top: 60px; padding-bottom: 60px;
  border-radius: 0 0 30px 30px;
}
.success h1 {
  color: var(--color-secondary);
  margin-bottom: 18px;
}
.success a.cta.primary {
  margin-top: 24px;
  display: inline-block;
}

/* --- COOKIE BANNER & MODAL ----------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  color: #153A6B;
  box-shadow: 0 -4px 24px rgba(223,36,114,0.11);
  border-top: 4px solid var(--color-vibrant-pink);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  justify-content: space-between;
  z-index: 50000;
  font-size: 1rem;
  padding: 22px 24px 18px 24px;
  animation: cookie-in 0.7s cubic-bezier(.79,0,.17,1);
}
@keyframes cookie-in {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
  flex: 1 1 0;
  margin-right: 18px;
}
.cookie-banner__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-btn {
  border: none;
  outline: none;
  padding: 10px 24px;
  border-radius: 30px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  margin-right: 0;
  transition: background 0.18s, color 0.18s;
  margin-bottom: 0;
}
.cookie-btn.accept {
  background: var(--color-vibrant-pink);
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: var(--color-vibrant-blue);
  color: #fff;
}
.cookie-btn.reject {
  background: var(--color-white);
  color: var(--color-vibrant-pink);
  border: 2px solid var(--color-vibrant-pink);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #ffe0ef;
  color: var(--color-vibrant-pink);
}
.cookie-btn.settings {
  background: var(--color-secondary);
  color: #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #57A948;
  color: #fff;
}

.cookie-modal {
  display: none;
  position: fixed;
  z-index: 60000;
  left: 0; right: 0;
  top: 0; bottom: 0;
  background: rgba(29,100,242,0.26);
  align-items: center;
  justify-content: center;
  animation: cookie-fadein 0.5s cubic-bezier(.79,0,.17,1);
}
@keyframes cookie-fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal.active {
  display: flex;
  flex-direction: column;
}
.cookie-modal__inner {
  background: #fff;
  border-radius: 22px;
  max-width: 410px;
  width: 95vw;
  padding: 32px 24px 24px 24px;
  box-shadow: 0 14px 34px 0 rgba(21,58,107,0.18);
  font-size: 1rem;
  position: relative;
  display: flex;
  flex-direction: column;
  animation: cookie-panel-in 0.45s cubic-bezier(.84,0,.17,1);
}
@keyframes cookie-panel-in {
  from { transform: scale(0.84) translateY(48px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal__close {
  position: absolute;
  top: 16px; right: 18px;
  background: none;
  border: none;
  color: var(--color-vibrant-pink);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  color: var(--color-vibrant-yellow);
}
.cookie-modal h2 {
  color: var(--color-vibrant-blue);
  font-size: 1.5rem;
  margin-top: 0;
}
.cookie-categories {
  margin: 24px 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-category label {
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--color-primary);
  margin-left: 4px;
}
.cookie-category input[type=checkbox],
.cookie-category input[type=radio] {
  accent-color: var(--color-vibrant-pink);
  width: 21px; height: 21px;
}
.cookie-category .always {
  color: #fff;
  background: var(--color-vibrant-blue);
  border-radius: 10px;
  padding: 5px 12px;
  font-size: 0.97em;
  margin-left: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.cookie-modal__actions {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  flex-direction: row;
  justify-content: flex-end;
}

/* --- ANIMATION UTILS ----------------------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
  .cta.primary, .cta.secondary,
  .feature-grid li, .service-grid li, .testimonial-card, .team-member,
  .mobile-menu, .cookie-banner, .cookie-modal {
    transition: all 0.2s cubic-bezier(.79,0,.17,1);
  }
}

/* --- RESPONSIVE / MOBILE-FIRST ------------------------------------------- */
@media (max-width: 768px) {
  .section {
    margin-bottom: 36px;
    padding: 24px 8px;
  }
  .container {
    max-width: 98vw;
    padding-left: 6vw;
    padding-right: 6vw;
  }
  header .container {
    padding-top: 6px;
    padding-bottom: 6px;
  }
  .content-wrapper {
    gap: 13px;
  }
  .feature-grid,
  .service-grid,
  .testimonial-list,
  .team-list {
    gap: 15px;
  }
  .feature-grid li,
  .service-grid li,
  .testimonial-card,
  .team-member {
    min-width: 95vw !important;
    max-width: 100vw !important;
    padding-left: 10vw;
    padding-right: 10vw;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  footer .container {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding: 20px 4vw;
  }
  .hero {
    padding: 38px 0 28px 0;
  }
  .success {
    padding-top: 36px; padding-bottom: 36px;
  }
}
@media (max-width: 520px) {
  .hero h1, .hero .subheadline, h1, h2, h3 {
    word-break: break-word;
  }
  .feature-grid li, .service-grid li, .testimonial-card, .team-member {
    padding-left: 5vw; padding-right: 5vw;
  }
  .cookie-banner { flex-direction: column; gap: 12px; padding: 10px 2vw; }
}

/* --- UTILS --------------------------------------------------------------- */
.hide { display: none !important; }

/* --- END OF STYLE -------------------------------------------------------- */
