/* 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,
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, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  background: #F2F4F8;
  color: #222;
  font-family: 'Open Sans', Arial, sans-serif;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #254372;
  text-decoration: none;
  transition: color .2s cubic-bezier(.55, 0, .1, 1);
}
a:hover, a:focus {
  color: #F7B801;
  outline: none;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 8px;
}


/* BRAND FONTS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600&display=swap');

h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: #254372;
}
h1 { font-size: 2.25rem; line-height: 1.15; margin-bottom: 16px; }
h2 { font-size: 1.5rem; line-height: 1.22; margin-bottom: 12px; }
h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 8px; }
h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }

p, li, blockquote {
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #222;
  font-weight: 400;
  margin-bottom: 8px;
}
blockquote {
  font-style: italic;
  font-size: 1.05rem;
  color: #254372;
  background: #F7B80111;
  border-left: 4px solid #F7B801;
  padding: 8px 16px;
  margin-bottom: 12px;
}
strong { color: #254372; font-weight: 700; }

/* CONTAINERS & FLEX LAYOUTS */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 2px 16px 0 #25437212;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 8px 0 #F7B80122;
  padding: 24px 20px;
  margin-bottom: 20px;
  transition: transform .15s cubic-bezier(.67, 0, .11, 1), box-shadow .15s;
  position: relative;
}
.card:hover {
  transform: translateY(-5px) scale(1.025);
  box-shadow: 0 6px 20px 0 #25437222;
}

.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fffbe7;
  border-radius: 24px;
  box-shadow: 0 1px 7px 0 #25437214;
  margin-bottom: 20px;
  border: 2.5px dashed #F7B801;
  transition: box-shadow .18s;
}
.testimonial-card blockquote {
  color: #254372;
  font-size: 1.07rem;
  line-height: 1.6;
  border-left: none;
  background: transparent;
  padding: 0;
  margin: 0;
}
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #f5faff;
  border-radius: 20px;
  box-shadow: 0 1px 6px #F7B80110;
  padding: 18px 14px;
  min-width: 240px;
  flex: 1 1 260px;
  margin-bottom: 24px;
  transition: background .12s;
}
.feature-item img {
  width: 38px;
  height: 38px;
  margin-bottom: 4px;
}
.feature-item:hover {
  background: #F7B80122;
}


/********** HEADER/NAVIGATION **********/
header {
  background: #fff;
  box-shadow: 0 4px 20px -8px #25437221;
  padding: 0 0 0 0;
  position: sticky;
  top: 0;
  z-index: 1002;
}
header .container {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #254372;
  padding: 10px 14px;
  border-radius: 14px;
  background: none;
  transition: background .17s, color .18s, box-shadow .13s;
}
.main-nav a:hover, .main-nav a.active {
  background: #F7B801;
  color: #254372;
  box-shadow: 0 2px 12px #F7B80118;
}
.cta-btn {
  padding: 12px 30px;
  background: #F7B801;
  color: #254372;
  border-radius: 30px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.08rem;
  border: none;
  box-shadow: 0 2px 20px 0 #F7B80112;
  cursor: pointer;
  transition: background .19s, color .19s, box-shadow .16s, transform .16s;
  position: relative;
  text-align: center;
  margin-left: 16px;
}
.cta-btn:hover, .cta-btn:focus {
  background: #254372;
  color: #fff;
  box-shadow: 0 6px 24px #25437219;
  transform: scale(1.04) rotate(-2deg);
  outline: none;
}

/* MOBILE BURGER MENU */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  background: #F7B801;
  border: none;
  border-radius: 18px;
  color: #254372;
  padding: 7px 18px;
  margin-left: 16px;
  cursor: pointer;
  z-index: 12010;
  transition: background .2s, color .19s, transform .19s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #254372;
  color: #fff;
  transform: scale(1.08) rotate(2deg);
  outline: none;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 12020;
  padding: 40px 26px 26px 26px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  box-shadow: 0 8px 36px #25437228;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.57,0,.53,1);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2rem;
  color: #254372;
  margin-bottom: 32px;
  padding: 4px 12px;
  border-radius: 15px;
  transition: background .18s, color .16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F7B801;
  color: #254372;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #254372;
  font-size: 1.25rem;
  font-weight: 800;
  background: #F2F4F8;
  padding: 16px 13px;
  border-radius: 16px;
  transition: background .16s, color .17s, transform .19s;
  box-shadow: 0 1px 8px #25437211;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: #F7B801;
  color: #254372;
  transform: scale(1.03);
  outline: none;
}
@media (max-width: 1024px) {
  .container { max-width: 98vw; }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .cta-btn {
    margin-left: 0;
  }
}

/*********** HERO/BIG CALL-TO-ACTION **************/
.hero {
  background: #F7B801;
  padding: 60px 0 60px 0;
  border-bottom: 6px solid #254372;
  border-radius: 0 0 40px 40px;
  margin-bottom: 60px;
  overflow-x: clip;
  position: relative;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 28px;
}
.hero h1, .hero h2 {
  color: #254372;
  font-size: 2.6rem;
  font-weight: 900;
}
.hero p {
  color: #254372;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.25rem;
}
@media (max-width: 600px) {
  .hero {
    padding: 36px 0 30px 0;
    border-radius: 0 0 18px 18px;
  }
  .hero h1, .hero h2 { font-size: 1.4rem; }
}

/********** FEATURES/WHY-US **********/
.features, .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.feature-grid {
  width: 100%;
  padding-top: 24px;
}
@media (max-width: 768px) {
  .feature-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
}

/********** SERVICES/CARDS **********/
.service-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 28px;
}
.service-item {
  background: #f5faff;
  border-radius: 20px;
  box-shadow: 0 1px 6px #F7B80115;
  padding: 28px 20px;
  min-width: 240px;
  flex: 1 1 258px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  transition: background .14s;
}
.service-item img {
  width: 38px;
  height: 38px;
}
.service-item:hover {
  background: #F7B80121;
}
@media (max-width: 768px) {
  .service-grid {
    flex-direction: column;
    gap: 16px;
  }
}

/*********** TESTIMONIALS ************/
.testimonials {
  margin-bottom: 60px;
}
.testimonial-card {
  /* already set above */
  min-width: 255px;
  flex: 1 1 300px;
  font-size: 1rem;
}
.testimonial-card img {
  width: 28px;
  height: 28px;
  display: inline-block;
  margin-right: 2px;
}

/********* BLOG CATEGORIES *********/
.blog-categories {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.blog-categories a {
  color: #fff;
  background: #254372;
  border-radius: 15px;
  padding: 7px 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  transition: background .16s, color .17s, box-shadow .15s;
  box-shadow: 0 1px 7px #25437212;
}
.blog-categories a:hover, .blog-categories a:focus {
  background: #F7B801;
  color: #254372;
  box-shadow: 0 2px 12px #F7B80118;
  outline: none;
}

/********* BLOG LATEST POSTS LIST ********/
.latest-posts ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.latest-posts li {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 8px #25437208;
  padding: 22px 18px;
  flex: 1 1 300px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  transition: box-shadow .13s, transform .13s;
}
.latest-posts li:hover {
  box-shadow: 0 4px 16px #F7B80133;
  transform: translateY(-3px) scale(1.03);
}
.latest-posts h3 {
  color: #254372;
  font-size: 1.19rem;
}

/********* FOOTER **********/
footer {
  background: #254372;
  color: #fff;
  padding: 38px 0 14px 0;
  border-top-left-radius: 34px;
  border-top-right-radius: 34px;
  box-shadow: 0 -3px 28px #25437222;
}
footer p {
  color: white !important;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 18px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  gap: 50px;
  flex: 2 1 330px;
  min-width: 180px;
}
.footer-nav nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  opacity: 0.85;
  transition: color .15s, opacity .13s;
}
.footer-nav a:hover {
  color: #F7B801;
  opacity: 1;
}
.footer-contact {
  flex: 1 1 195px;
  font-size: 1rem;
}
.footer-contact img {
  width: 21px;
  height: 21px;
  vertical-align: middle;
  margin-right: 8px;
}
.newsletter {
  flex: 1 1 180px;
  padding: 10px 0;
}
.newsletter h3 {
  color: #F7B801;
  margin-bottom: 6px;
}
.newsletter .cta-btn {
  margin: 14px 0 0 0;
  background: #fff;
  color: #254372;
  font-size: 1rem;
  box-shadow: 0 2px 12px #fff1;
}
.newsletter .cta-btn:hover {
  background: #F7B801;
  color: #254372;
  box-shadow: 0 5px 16px #F7B80155;
}
.social-links {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
  margin-left: auto;
  margin-bottom: 16px;
}
.social-links img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 5px #25437218;
  transition: transform .13s;
}
.social-links a:hover img {
  transform: scale(1.11) rotate(-13deg);
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 28px 0;
    align-items: stretch;
  }
  .footer-nav {
    flex-direction: column;
    gap: 18px;
  }
}

/********* CTA SECTION *********/
.cta {
  background: linear-gradient(90deg, #fff 70%, #F7B801 120%);
  padding: 48px 0 48px 0;
  border-radius: 32px;
  box-shadow: 0 1px 11px #f7b80122;
  margin-bottom: 60px;
}
.cta .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta .content-wrapper {
  align-items: center;
  gap: 22px;
  text-align: center;
}
.cta h2 {
  color: #F7B801;
  text-shadow: 1px 1px 0 #25437222;
  font-size: 2rem;
  margin-bottom: 6px;
}
.cta-btn {
  animation: bouncemove 2.7s infinite alternate cubic-bezier(.83,0,.21,1);
}
@keyframes bouncemove {
  0% { transform: translateY(0); }
  60% { transform: translateY(-3px); }
  100% { transform: translateY(4px); }
}

/******* MAP PLACEHOLDER & CONTACT ********/
.map-placeholder {
  background: #f5faff;
  border-radius: 20px;
  padding: 18px;
  margin-top: 16px;
  margin-bottom: 12px;
  text-align: center;
  color: #254372;
  font-weight: 700;
  font-size: 1.08rem;
}

/********* COOKIE CONSENT BANNER ******/
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: #fffbe7;
  box-shadow: 0 -4px 25px #25437233;
  color: #222;
  z-index: 18000;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 20px 20px 20px;
  gap: 20px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  border-top: 3.5px solid #F7B801;
  animation: cookieIn .63s cubic-bezier(.69,0,.21,1) backwards;
}
@keyframes cookieIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 18px;
}
.cookie-banner button {
  padding: 10px 22px;
  border-radius: 18px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: background .17s, color .17s, box-shadow .13s, transform .13s;
  margin-top: 0;
  margin-bottom: 0;
}
.cookie-banner .accept {
  background: #F7B801;
  color: #254372;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #254372;
  color: #fff;
  outline: none;
  box-shadow: 0 2px 8px #25437233;
}
.cookie-banner .reject, .cookie-banner .settings {
  background: #fff;
  color: #254372;
  border: 2px solid #F7B801;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus, .cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #F7B801;
  color: #254372;
}

.cookie-modal {
  position: fixed;
  bottom: 0; right: 0;
  left: 0; top: 0;
  z-index: 31000;
  background: #25437220;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity .28s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal .cookie-modal-dialog {
  background: #fff;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -8px 42px #25437255;
  padding: 32px 26px 28px 26px;
  min-width: 320px;
  max-width: 100vw;
  width: 100%;
  margin-bottom: 0;
  margin-top: auto;
  animation: cookiedialogIn .53s cubic-bezier(.67,0,.15,1) backwards;
}
@keyframes cookiedialogIn {
  from { transform: translateY(35vh); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal .cookie-modal-dialog h2 {
  color: #254372;
  font-size: 1.25rem;
  margin-bottom: 17px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-bottom: 21px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f5faff;
  border-radius: 9px;
  padding: 12px 14px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
}
.cookie-category .cookie-switch {
  display: inline-flex;
  align-items: center;
}
.cookie-switch input[type="checkbox"] {
  width: 42px;
  height: 24px;
  appearance: none;
  background: #F2F4F8;
  border: 2px solid #254372;
  border-radius: 14px;
  outline: none;
  cursor: pointer;
  transition: background .18s, border .13s;
  position: relative;
}
.cookie-switch input[type="checkbox"]:checked {
  background: #F7B801;
  border-color: #F7B801;
}
.cookie-switch input[type="checkbox"]:after {
  content: '';
  position: absolute;
  left: 3px; top: 2px;
  width: 17px; height: 17px;
  border-radius: 11px;
  background: #254372;
  transition: left .13s;
}
.cookie-switch input[type="checkbox"]:checked:after {
  left: 21px;
  background: #fff;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 17px;
  align-items: center;
}
.cookie-modal .cookie-modal-actions button {
  font-size: 1rem;
  padding: 11px 23px;
}
.cookie-modal .cookie-modal-actions .close-modal {
  background: #fff;
  color: #254372;
  border: 2px solid #F7B801;
}
.cookie-modal .cookie-modal-actions .close-modal:hover {
  background: #F7B801;
  color: #254372;
}
.cookie-category.essential .cookie-switch input[type="checkbox"] {
  opacity: 0.5;
  pointer-events: none;
}
.cookie-modal .cookie-modal-dialog::-webkit-scrollbar {
  width: 0;
}

/*********** PAGE LAYOUTS & MISC **********/
.privacy-policy, .gdpr-info, .cookies-policy, .terms-conditions, .confirmation, .contact-hero, .contact-details {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 2px 16px #25437210;
}

/********** RESPONSIVE ***********//*
  flex-direction: column for text-image-section and similar layouts under 768px
*/
@media (max-width: 768px) {
  .container { padding: 0 8px; }
  .footer-nav { flex-direction: column; gap: 20px; }
  .section { padding: 24px 8px; margin-bottom: 38px; border-radius: 19px; }
  .content-grid, .card-container, .testimonial-grid {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
  }
  .cta, .cta .container, .cta .content-wrapper {
    padding-left: 0;
    padding-right: 0;
    align-items: center;
  }
  .feature-item, .service-item {
    min-width: 0;
    width: 100%;
  }
}
@media (max-width: 550px) {
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.05rem; }
  .section, .privacy-policy, .gdpr-info, .cookies-policy, .terms-conditions, .confirmation, .contact-hero, .contact-details {
    padding: 18px 3.5vw;
    margin-bottom: 28px;
  }
  .newsletter h3 { font-size: 1.05rem; }
  .newsletter p { font-size: .96rem; }
  .cta-btn { font-size: .97rem; padding: 8px 18px; }
}

/****** FUN FONTS & ANIMATIONS *******/
h1, h2, h3, h4, .cta-btn, .main-nav a, .feature-item h3, .mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif !important;
}
.cta-btn, .main-nav a, .mobile-nav a,
.cookie-banner button, .cookie-modal-actions button {
  letter-spacing: 0.5px;
  font-weight: 800;
}
@media (max-width:400px) {
  .main-nav a, .mobile-nav a { font-size: 1.04rem; }
  .cta-btn { font-size: .93rem; padding: 7px 13px; border-radius: 18px; }
}

/****** ENERGETIC/PLAYFUL EXTRAS ******/
.feature-item, .service-item, .testimonial-card, .card {
  animation: funpop .7s cubic-bezier(.71,0,.17,1) backwards;
}
@keyframes funpop {
  from { transform: scale(.86) rotate(-1.5deg); opacity: 0; }
  to { transform: scale(1) rotate(0); opacity: 1; }
}
.testimonial-card:hover {
  box-shadow: 0 6px 16px #F7B80133, 0 7px 14px #25437208;
  transform: scale(1.035) rotate(1deg);
}
.feature-item:hover, .service-item:hover {
  background: #f9edd0;
  box-shadow: 0 2px 16px #F7B80133;
  transform: scale(1.03) rotate(-1.5deg);
}
.card:hover {
  background: #f5faff;
  border: 2px solid #25437222;
}

/******* SPACING UTILITIES & MARGINS ******/
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.gap-1 { gap: 10px; }
.gap-2 { gap: 20px; }

/****** ACCESSIBILITY *****/
:focus {
  outline: 2.5px solid #F7B801;
  outline-offset: 3px;
}

/******* SCROLLBAR STYLES ******/
::-webkit-scrollbar {
  width: 11px;
  background: #f5faff;
}
::-webkit-scrollbar-thumb {
  background: #F7B80188;
  border-radius: 13px;
}
::-webkit-scrollbar-track { background: #fff; }

/****** END ******/
