/* === 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;
  background: #fff;
  color: #17426A;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
}
*, *:before, *:after {
  box-sizing: inherit;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  outline: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}
table { border-collapse: collapse; border-spacing: 0; }

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

:root {
  --color-primary: #17426A;
  --color-secondary: #F2A65A;
  --color-accent: #FFFFFF;
  --color-bg-playful: #FDF7ED;
  --color-info: #59C3C3;
  --color-fun1: #FFD166; /* pastel yellow */
  --color-fun2: #F54291; /* fun pink */
  --color-fun3: #49BEAA; /* fun teal */
  --color-fun4: #FFE156; /* lemon */
  --color-dark: #17426A;
  --color-light: #FFFFFF;
  --shadow-1: 0 2px 12px rgba(23,66,106,0.12);
  --shadow-2: 0 8px 32px rgba(241,64,160,0.08);
  --radius: 18px;
  --transition: 0.3s cubic-bezier(.5,1.5,.6,1);
}

body {
  background-color: var(--color-bg-playful);
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--color-dark);
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--color-primary);
}
h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  line-height: 1.12;
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
p, li, blockquote {
  font-size: 1.08rem;
  color: var(--color-dark);
}
blockquote {
  color: var(--color-fun2);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  border-left: 5px solid var(--color-secondary);
  background: var(--color-fun1);
  margin-bottom: 0.7em;
  padding: 10px 18px 10px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
}

/* === SPACING & LAYOUT FLEXBOX RULES === */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 0;
}
/* Sections */
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--radius);
  background: var(--color-light);
  box-shadow: var(--shadow-1);
  position: relative;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-fun1);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  margin-bottom: 20px;
  position: relative;
  padding: 24px;
  min-width: 270px;
  max-width: 380px;
  flex: 1 1 260px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-7px) scale(1.04) rotate(-1deg);
  box-shadow: var(--shadow-2);
}
.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;
  background: var(--color-fun4);
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 18px rgba(23,66,106,0.13);
  border: 2px solid var(--color-fun2);
  transition: box-shadow 0.22s, transform var(--transition);
  font-family: 'Montserrat', sans-serif;
  color: #16314d;
}
.testimonial-card:hover {
  box-shadow: 0 3px 32px rgba(241,64,160,0.13);
  transform: scale(1.018) rotate(0.8deg);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-fun1);
  border-radius: 14px;
  padding: 18px 20px;
}

/* === HEADER & NAVIGATION === */
header {
  width: 100%;
  background: var(--color-accent);
  box-shadow: 0 2px 10px rgba(23,66,106,0.04);
  z-index: 99;
  position: relative;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
header nav a {
  color: var(--color-primary);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 7px 13px;
  border-radius: 9px;
  transition: background 0.24s, color 0.21s;
  position: relative;
}
header nav a:hover, header nav a:focus {
  background: var(--color-secondary);
  color: var(--color-accent);
}
header img {
  height: 50px;
  width: auto;
  margin-right: 14px;
}
.cta-btn {
  background: var(--color-secondary);
  color: var(--color-accent);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 1rem;
  padding: 11px 28px;
  border: 0;
  border-radius: 999px;
  min-width: 140px;
  box-shadow: 0 4px 18px rgba(242,166,90,0.11);
  transition: background 0.17s, color 0.17s, box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
  margin-left: 20px;
  outline: none;
  position: relative;
  z-index: 1;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-fun2);
  color: var(--color-accent);
  box-shadow: 0 8px 40px rgba(241,64,160,0.11);
  transform: translateY(-2px) scale(1.04);
}

/* --- Burger & Mobile Navigation --- */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 22px;
  right: 20px;
  z-index: 1100;
  background: var(--color-secondary);
  color: #fff;
  border: none;
  font-size: 2.5rem;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  cursor: pointer;
  box-shadow: 0 2px 9px rgba(174,82,144,0.10);
  transition: box-shadow 0.2s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  box-shadow: 0 0 0 4px #fff6df;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background: var(--color-fun3);
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 1200;
  padding: 32px 26px 24px 26px;
  transform: translateX(-100vw);
  transition: transform 0.33s cubic-bezier(.6,1.6,.56,1.05);
  box-shadow: 0 8px 44px rgba(23,66,106,0.18);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  color: var(--color-secondary);
  background: var(--color-light);
  border: 0;
  font-size: 2.1rem;
  margin-bottom: 26px;
  border-radius: 50%;
  height: 48px;
  width: 48px;
  align-content: center;
  align-items: center;
  display: flex;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(23,66,106,0.13);
}
.mobile-menu-close:focus,
.mobile-menu-close:active {
  outline: 2px solid var(--color-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  padding: 15px 14px 15px 10px;
  border-radius: 12px;
  color: var(--color-primary);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.22rem;
  letter-spacing: 0.01em;
  background: var(--color-fun1);
  box-shadow: 0 1px 6px rgba(30,30,60,0.07);
  margin-left: 8px;
  margin-bottom: 2px;
  transition: background var(--transition), color 0.19s, transform 0.19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-fun2);
  color: var(--color-light);
  transform: translateX(5px) scale(1.04);
}

/* Hide desktop nav on mobile */
@media (max-width: 1024px) {
  header nav {
    display: none;
  }
  .cta-btn {
    margin-left: 0;
  }
}
@media (max-width: 1024px){
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* --- Hide mobile menu on desktop --- */
@media (min-width: 1025px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* === HERO & PLAYFUL ELEMENTS === */
.hero-section {
  background: linear-gradient(120deg, var(--color-fun2) 7%, var(--color-fun1) 52%, var(--color-secondary) 93%);
  color: var(--color-primary);
  box-shadow: 0 6px 32px rgba(242,166,90,0.08);
}
.hero-section .content-wrapper {
  padding-top: 30px;
  padding-bottom: 10px;
  align-items: flex-start;
  gap: 12px;
}
.hero-section h1, .hero-section p {
  color: var(--color-dark);
}
.hero-section h1 {
  font-size: 2.3rem;
  background: none;
  text-shadow: 1px 1px 0 #faf6e3, 0px 0px 2px #ffe15655;
}
.hero-section p {
  font-size: 1.14rem;
  color: var(--color-dark);
}

/* === GENERIC COMPONENTS & MICRO-INTERACTIONS === */
ul, ol {
  margin-left: 15px;
  margin-bottom: 12px;
}
ul li,
ol li {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.65;
  padding-left: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
ul li img,
ol li img {
  height: 27px;
  width: auto;
}

/* --- Animated fun underlines on headings --- */
h2, h1 {
  position: relative;
}
h2:after, h1:after {
  content: '';
  display: block;
  height: 9px;
  width: 58px;
  border-radius: 7px;
  background: var(--color-fun2);
  position: absolute;
  left: 0; top: 97%;
  z-index: 0;
  opacity: 0.38;
  animation: jump-underline 2.2s infinite cubic-bezier(.6,1.6,.56,1.05);
}
@keyframes jump-underline {
  0% { transform: translateY(0) scaleX(1.05);} 
  23% { transform: translateY(-5px) scaleX(1.18);} 
  48% { transform: translateY(2px) scaleX(0.93);}
  65% { transform: translateY(0) scaleX(1.07);}
  100% { transform: translateY(0) scaleX(1.05);}
}

/* --- Playful floating shapes --- */
.section::before {
  content: '';
  position: absolute;
  top: -15px; left: -22px;
  width: 48px;
  height: 48px;
  background: var(--color-fun3);
  border-radius: 33% 75% 61% 82%/82% 37% 83% 33%;
  opacity: 0.15;
  z-index: 1;
  animation: float1 6s infinite linear alternate;
}
.section::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -27px;
  width: 38px; height: 38px;
  background: var(--color-fun2);
  border-radius: 100%;
  opacity: 0.18;
  z-index: 1;
  animation: float2 8s infinite ease-in-out alternate;
}
@keyframes float1 {
  0% { transform: translateY(0) rotate(0deg); }
  60% { transform: translateY(10px) rotate(17deg); }
  100% { transform: translateY(-12px) rotate(-10deg); }
}
@keyframes float2 {
  0% { transform: translateY(-2px) scale(1.03);}
  60% { transform: translateY(4px) scale(1.1);}
  100% { transform: translateY(-3px) scale(1.05);}
}

/* === FEATURE LISTS, CARDS, TESTIMONIALS === */
.features-section li,
.benefits-section ul li,
.resources-section ul li {
  background: var(--color-fun1);
  border-radius: 12px;
  padding: 11px 16px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--color-dark);
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  box-shadow: 0 1px 5px rgba(23,66,106,0.04);
  font-size: 1.08rem;
  transition: background 0.14s, box-shadow 0.13s;
}
.features-section li:hover, .resources-section ul li:hover {
  background: var(--color-fun3);
  color: var(--color-accent);
  transition: all 0.15s;
}
.curriculum-section ul li {
  background: var(--color-fun4);
  border-radius: 14px;
  padding: 13px 18px;
  margin-bottom: 13px;
  color: var(--color-primary);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  box-shadow: 0 1px 5px rgba(255,225,86,0.09);
}
ol li {
  counter-increment: step-counter;
  padding-left: 26px;
  position: relative;
}
ol li:before {
  content: counter(step-counter) ". ";
  color: var(--color-fun2);
  font-weight: 700;
  position: absolute;
  left: 0;
}

/* --- Distinctive testimonials design (readable) --- */
.testimonial-card {
  background: #fffbe1;
  color: #181938;
  border-left: 7px solid var(--color-fun2);
  font-size: 1.08rem;
}
.testimonial-card blockquote {
  background: none;
  box-shadow: none;
  border-left: 0;
  color: var(--color-fun2);
  margin-bottom: 0;
  padding: 0 12px 0 0;
  font-family: 'Montserrat', sans-serif;
}
.testimonial-card p {
  color: #555d7b;
  font-size: 0.98rem;
  margin-left: 8px;
}

/* --- Call to action section --- */
.cta-section {
  text-align: center;
  background: linear-gradient(99deg, #FFF2E0 30%, #F54291 250%);
  border-radius: calc(var(--radius) + 12px);
  margin-bottom: 60px;
  box-shadow: var(--shadow-1);
}
.cta-section .content-wrapper {
  align-items: center;
  gap: 15px;
}
.cta-section h2 {
  color: var(--color-primary);
  font-size: 1.6rem;
}
.cta-section p {
  color: var(--color-primary);
}

/* === ABOUT / TEAM SECTION === */
.team-section li {
  background: var(--color-fun3);
  color: var(--color-accent);
  border-radius: 10px;
  padding: 13px 15px;
  margin-bottom: 11px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(65,174,193,0.08);
}

/* === CONTACT INFO BLOCK === */
.contact-info-block {
  background: var(--color-fun1);
  border-radius: 17px;
  padding: 26px 24px;
  box-shadow: 0 3px 18px rgba(247,189,23,0.07);
  margin-bottom: 20px;
  margin-top: 10px;
  font-size: 1.05rem;
}
.contact-info-block img {
  height: 23px;
  width: auto;
  margin-right: 10px;
}

/* === THANK YOU SECTION === */
.thank-you-section {
  background: linear-gradient(113deg, var(--color-fun3) 0%, var(--color-fun1) 82%, var(--color-secondary) 100%);
  border-radius: 20px;
}
.thank-you-section .content-wrapper {
  align-items: center;
  gap: 14px;
}

/* === FOOTER === */
footer {
  width: 100%;
  background: var(--color-primary);
  color: var(--color-accent);
  padding: 28px 0 7px 0;
  margin-top: 50px;
  font-size: 1rem;
  border-radius: 34px 34px 0 0;
  box-shadow: 0 -2px 10px rgba(23,66,106,0.04);
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 13px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 6px;
}
.footer-nav a {
  color: var(--color-secondary);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  padding: 5px 8px;
  border-radius: 7px;
  transition: background 0.22s;
}
.footer-nav a:hover {
  background: var(--color-fun2);
  color: var(--color-light);
}
.brand-statement {
  color: var(--color-accent);
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  opacity: 0.75;
  text-align: center;
}


/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: var(--color-primary);
  color: var(--color-light);
  width: 100vw;
  z-index: 1240;
  padding: 26px 16px 20px 16px;
  box-shadow: 0 -2px 32px rgba(23,66,106,0.19);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  animation: cookie-slideup 0.92s cubic-bezier(.61,1.25,.49,1.02);
  border-radius: 24px 24px 0 0;
}
@keyframes cookie-slideup {
  0% { transform: translateY(140px); opacity: 0; }
  80%{ transform: translateY(-7px); opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-left: 15px;
}
.cookie-banner button {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin: 0 3px;
  padding: 10px 16px;
  transition: background 0.2s, color 0.2s, box-shadow 0.19s;
}
.cookie-banner .accept {
  background: var(--color-secondary);
  color: var(--color-dark);
}
.cookie-banner .accept:hover {
  background: var(--color-fun2);
  color: var(--color-light);
}
.cookie-banner .reject {
  background: #fffbe1;
  color: var(--color-fun2);
}
.cookie-banner .reject:hover {
  background: var(--color-fun2);
  color: var(--color-light);
}
.cookie-banner .settings {
  background: var(--color-light);
  color: var(--color-primary);
  border: 2px solid var(--color-fun3);
}
.cookie-banner .settings:hover {
  background: var(--color-fun1);
  color: var(--color-dark);
}
/* --- Cookie Modal --- */
.cookie-modal {
  position: fixed;
  z-index: 2090;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(30,30,60,0.48);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookie-fadein .34s;
}
@keyframes cookie-fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #fffbe1;
  border-radius: 19px;
  max-width: 390px;
  width: 94vw;
  padding: 34px 24px 28px 24px;
  box-shadow: 0 11px 64px rgba(241,64,160,0.11);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  animation: modal-pop .32s cubic-bezier(.61,1.25,.49,1.02);
}
@keyframes modal-pop {
  0% { transform: scale(0.8) translateY(130px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-content h2 {
  margin-bottom: 4px;
  font-size: 1.22rem;
  color: var(--color-fun2);
}
.cookie-modal-content ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.cookie-toggle-row {
  display: flex;
  align-items: center;
  gap: 9px;
}
.cookie-toggle {
  width: 36px; height: 21px;
  background: var(--color-fun3);
  border-radius: 11px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-right: 7px;
  cursor: pointer;
}
.cookie-toggle input {
  opacity: 0; width: 0; height: 0;
}
.cookie-toggle-slider {
  position: absolute;
  top: 3px; left: 3px;
  width: 15px; height: 15px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(23,66,106,0.13);
  transition: 0.2s;
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  left: 18px;
  background: var(--color-secondary);
}
.cookie-modal-close {
  position: absolute; top: 9px; right: 19px;
  font-size: 1.6rem;
  background: #fffbe1;
  color: var(--color-fun2);
  border: none;
  border-radius: 50%;
  width: 38px; height: 38px;
  cursor: pointer;
  box-shadow: 0 2px 9px rgba(23,66,106,0.07);
  transition: background 0.23s, color 0.19s;
}
.cookie-modal-close:hover {
  background: var(--color-fun1);
  color: var(--color-dark);
}

/* === FORMS === */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 11px 13px;
  border-radius: 8px;
  border: 2px solid #eee0bf;
  background: #fff;
  margin-bottom: 12px;
  outline: none;
  transition: border 0.19s, box-shadow 0.13s;
}
input:focus, textarea:focus {
  border-color: var(--color-fun2);
  box-shadow: 0 0 0 2px #ffe15655;
}

button {
  font-family: inherit;
  font-size: 1rem;
  background: var(--color-fun2);
  border: none;
  color: #fff;
  padding: 10px 22px;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(241,64,160,0.10);
  transition: background 0.17s, box-shadow 0.17s, transform 0.15s;
}
button:hover, button:focus {
  background: var(--color-secondary);
  color: var(--color-dark);
  transform: scale(1.04);
}

/* ------------------------------------------------------
   RESPONSIVENESS: Mobile First, then up for larger screens
------------------------------------------------------- */
@media (max-width: 600px) {
  .container {
    padding: 0 6px;
  }
  .section, section {
    padding: 28px 6px;
  }
  .card-container, .content-grid, .features-section ul, .curriculum-section ul, .resources-section ul {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 9px;
    padding: 17px 7px;
  }
  .hero-section .content-wrapper {
    padding-top: 19px;
    padding-bottom: 3px;
  }
  .cta-section {
    padding: 19px 0 16px 0;
  }
  .footer-nav {
    flex-direction: column;
    gap: 3px;
  }
  .contact-info-block {
    padding: 13px 6px;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .card-container,
  .content-grid{
    flex-direction: column;
    gap: 14px;
  }
  .cta-section .content-wrapper{
    align-items: center;
    gap: 12px;
  }
  .brand-statement {
    font-size: 0.95rem;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 13px;
    padding: 18px 5px 12px 5px;
    font-size: 0.97rem;
  }
}
@media (min-width: 768px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2.1rem; }
  .hero-section .content-wrapper { padding-top: 47px; }
}

/* ==========================
   MISCELLANEOUS / UTILITIES
   ==========================
*/
::-webkit-input-placeholder { color: #badaf7;}
::-moz-placeholder { color: #badaf7;}
:-ms-input-placeholder { color: #badaf7;}
::placeholder { color: #badaf7;}

.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* ===============================
   End of "playful_dynamic" style
   =============================== */
