/* CSS RESET & BASE TYPOGRAPHY */
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;
}
/* Better box-sizing for all */
*, *:before, *:after {
  box-sizing: inherit;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  background: #F5F7FA;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #1C3C6B;
  background: #F5F7FA;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #227549;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #1C3C6B;
  text-decoration: underline;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
li {
  line-height: 1.7;
  margin-bottom: 8px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #1C3C6B;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p {
  margin-bottom: 16px;
  line-height: 1.7;
  font-size: 1rem;
  color: #174765;
}
blockquote {
  font-style: italic;
  color: #1C3C6B;
  background: #E1F4EC;
  padding: 20px 28px;
  border-left: 6px solid #50A56C;
  border-radius: 18px;
  margin-bottom: 16px;
  font-size: 1.16rem;
}
table {
  border-collapse: collapse;
  width: 100%;
  background: #fff;
  margin-bottom: 30px;
  border-radius: 25px;
  overflow: hidden;
}
th,
td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid #E6EAF2;
  font-size: 1rem;
}
th {
  background: #227549;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}
tr:last-child td {
  border-bottom: none;
}
label {
  font-weight: 500;
  margin-bottom: 4px;
}
select, input, textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1.5px solid #CED4E2;
  background: #F5F7FA;
  margin-bottom: 10px;
  outline: none;
}
select:focus, input:focus, textarea:focus {
  border-color: #50A56C;
  background: #fff;
}

/* LAYOUT & CONTAINERS */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section,
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}

/* FLEX LAYOUT PATTERNS */
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; border-radius: 18px; background: #fff; box-shadow: 0 2px 16px 0 rgba(33,62,130,0.11); }
.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: center; gap: 20px; padding: 20px; background: #fff; border-radius: 20px; box-shadow: 0 2px 12px 0 rgba(28,60,107,0.08); margin-bottom: 24px; min-width: 260px; max-width: 390px; transition: box-shadow 0.22s; }
.testimonial-card:hover { box-shadow: 0 6px 24px rgba(80, 165, 108, 0.18); }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* HEADER & NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(36,64,120,0.08);
  position: sticky; top: 0; z-index: 900;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  gap: 0;
}
.logo img {
  height: 48px;
  width: auto;
  transition: transform 0.25s cubic-bezier(.45,.05,.3,1.3);
}
.logo:hover img {
  transform: rotate(-8deg) scale(1.08);
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1C3C6B;
  padding: 6px 16px;
  border-radius: 12px;
  transition: background 0.17s, color 0.17s;
  background: none;
}
.main-nav a:hover, .main-nav a.active {
  background: #E1F4EC;
  color: #227549;
}
.cta.primary {
  background: #50A56C;
  color: #fff !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  padding: 11px 30px;
  border: none;
  border-radius: 18px;
  margin-left: 22px;
  box-shadow: 0 2px 12px 0 rgba(80, 165, 108, 0.12);
  transition: background 0.22s, box-shadow 0.22s, transform 0.17s;
  cursor: pointer;
  letter-spacing: 0.04em;
  will-change: background, transform;
  display: inline-block;
}
.cta.primary:hover, .cta.primary:focus {
  background: #227549;
  box-shadow: 0 6px 22px 0 rgba(80, 165, 108, 0.20);
  color: #fff;
  transform: translateY(-1px) scale(1.02);
}
.cta {
  background: #1C3C6B;
  color: #fff !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 24px;
  border-radius: 16px;
  text-align: center;
  display: inline-block;
  box-shadow: 0 2px 10px rgba(28,60,107,0.07);
  transition: background 0.22s, transform 0.16s;
}
.cta:hover, .cta:focus {
  background: #50A56C;
  color: #fff;
  transform: translateY(-2px) scale(1.07);
}

.mobile-menu-toggle {
  display: none;
  background: #50A56C;
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 12px;
  width: 48px; height: 48px;
  align-items: center;
  justify-content: center;
  transition: background 0.21s, transform 0.16s;
  cursor: pointer;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #227549;
  outline: none;
}

/* MOBILE NAVIGATION OFFCANVAS */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #227549;
  transform: translateX(-100vw);
  transition: transform 0.28s cubic-bezier(0.4,0,0.2,1);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 0;
  will-change: transform;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: #fff;
  font-size: 2.2rem;
  border: none;
  padding: 28px 24px 12px 19px;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.21s;
  z-index: 10001;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #FDE15D;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 14px;
  width: 100vw;
  padding-left: 45px;
}
.mobile-nav a {
  color: #fff !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  padding: 14px 8px 14px 8px;
  border-radius: 10px;
  text-shadow: 1px 1px 0 rgba(28,60,107,0.09);
  transition: background 0.13s, color 0.13s;
  width: fit-content;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FDE15D;
  color: #1C3C6B !important;
}

/* HERO SECTION */
.hero {
  min-height: 280px;
  background: #FDE15D;
  animation: appearHero 0.92s cubic-bezier(.4,-0.05,.57,1.1);
  border-radius: 0 0 46px 46px;
  box-shadow: 0 8px 56px -24px #FFD84B81;
  margin-bottom: 40px;
}
@keyframes appearHero {
  0% { opacity: 0; transform: translateY(-52px) scale(1.06); }
  100% { opacity: 1; transform: none; }
}
.hero h1 {
  color: #1C3C6B;
  font-size: 2.3rem;
  margin-bottom: 12px;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-shadow: 2px 3px 0px #FFD84B19;
}
.hero p {
  color: #227549;
  font-weight: 600;
  font-size: 1.12rem;
  margin-bottom: 20px;
}
.hero .cta {
  margin-top: 14px;
}

/* FEATURES GRID & FEATURE CARDS */
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
  margin-top: 18px;
}
.feature {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 3px 16px rgba(28,60,107,0.09);
  padding: 26px 22px 32px 22px;
  min-width: 260px;
  max-width: 340px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 17px;
  transition: box-shadow 0.18s, transform 0.14s;
  position: relative;
}
.feature img {
  width: 46px;
  height: 46px;
  margin-bottom: 2px;
  filter: drop-shadow(0 2px 7px #E1F4EC99);
  animation: float 2.5s infinite alternate cubic-bezier(.15,.8,.7,1.2);
}
@keyframes float {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-11px) scale(1.03); }
}
.feature:hover {
  box-shadow: 0 8px 38px 0 #1C3C6B13;
  transform: translateY(-3px) scale(1.021);
}
.feature h3 {
  color: #50A56C;
  font-size: 1.28rem;
  font-family: 'Montserrat', sans-serif;
}
.feature p {
  color: #174765;
  font-size: 1rem;
}

/* ABOUT/SHORT ABOUT */
.about-short, .about {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 2px 18px rgba(33,62,130,0.07);
}
.team-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 12px;
}
.team-member {
  background: #FDE15D;
  border-radius: 22px;
  box-shadow: 0 2px 12px #FFD84B24;
  padding: 22px 20px 20px 14px;
  min-width: 210px; max-width: 320px;
  flex: 1 1 190px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.01rem;
  color: #1C3C6B;
  align-items: center;
  display: flex;
  flex-direction: column;
  text-align: left;
  transition: box-shadow 0.15s, transform 0.12s;
  margin-bottom: 20px;
}
.team-member img {
  width: 35px;
  height: 35px;
  margin-bottom: 6px;
  animation: swingy 2.7s infinite alternate cubic-bezier(.41,.56,.61,.98);
}
@keyframes swingy {
  0% { transform: rotate(-10deg); }
  100% { transform: rotate(11deg) scale(1.06); }
}
.team-member b {
  font-size: 1.07rem;
  color: #50A56C;
}

/* CLUB GRID & CARDS */
.club-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}
.club {
  background: #fff;
  border-radius: 25px;
  box-shadow: 0 4px 24px rgba(34,117,73,0.07);
  padding: 27px 22px 31px 22px;
  min-width: 250px; max-width: 330px;
  flex: 1 1 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  position: relative;
  margin-bottom: 20px;
}
.club img {
  width: 40px; height: 40px;
  filter: grayscale(0) drop-shadow(0 2px 8px #50A56C37);
  transition: transform 0.16s;
}
.club:hover img {
  transform: scale(1.1) rotate(-9deg);
}
.club h3 {
  color: #1C3C6B;
  font-size: 1.15rem;
}
.club .cta {
  background: #227549;
  margin-top: 12px;
}
.club .cta:hover, .club .cta:focus {
  background: #1C3C6B;
}

/* TESTIMONIAL SLIDER */
.testimonials .testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 20px;
  margin-top: 12px;
}
.testimonial-card blockquote {
  background: #fff;
  color: #1C3C6B;
  border-left: 7px solid #50A56C;
  border-radius: 13px;
  padding: 20px 18px;
  font-size: 1.08rem;
  margin-bottom: 8px;
  box-shadow: 0 2px 16px #50A56C08;
}
.testimonial-card span {
  color: #227549;
  font-size: 1rem;
  font-style: normal;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* SCHEDULE TABLE */
.course-timetable {
  margin-top: 16px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 12px 0 #1c3c6b14;
}
.filter-options {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}
.filter-options select {
  min-width: 110px;
  background: #fff;
  border: 1.5px solid #227549;
  color: #227549;
  font-weight: 600;
  border-radius: 9px;
}

/* FORM SECTION & PRIVACY */
.privacy-notice {
  background: #E1F4EC;
  padding: 14px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.privacy-notice img {
  width: 23px;
  margin-right: 7px;
}

/* NEWS LIST */
.news-list {
  list-style: disc inside;
  margin-left: 4px;
  color: #1C3C6B;
  font-size: 1.06rem;
  font-weight: 600;
}
.news-list li {
  background: #FDE15D;
  border-radius: 7px;
  padding: 7px 18px;margin-bottom: 10px;
  color: #174765;
  font-family: 'Montserrat', sans-serif;
}
.news-list li b {
  color: #227549;
}

/* SOCIAL ICONS */
.social-links {
  display: flex;
  gap: 18px;
  margin-top: 14px;
}
.social-links a img {
  width: 30px;
  border-radius: 7px;
  transition: box-shadow 0.19s, background 0.13s;
}
.social-links a:hover img {
  background: #FDE15D;
  box-shadow: 0 2px 10px #FFD84B55;
}

/* FOOTER */
footer {
  background: #227549;
  color: #fff;
  margin-top: 60px;
  padding: 44px 0 36px 0;
  font-size: 1rem;
  border-radius: 34px 34px 0 0;
  box-shadow: 0 -2px 22px #22754915;
  position: relative;
  z-index: 1;
}
footer .container {
  gap: 28px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 14px;
}
.footer-nav a {
  color: #fff;
  opacity: 0.88;
  font-weight: 600;
  text-decoration: underline dotted #FDE15D 2px;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  transition: color 0.17s, opacity 0.17s;
}
.footer-nav a:hover {
  opacity: 1;
  color: #FDE15D;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.98rem;
  opacity: 0.97;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 8px;
}
.footer-contact img {
  width: 18px;
  height: 18px;
}
.footer-brand {
  margin-top: 10px;
  font-size: 1.10rem;
  letter-spacing: 0.013em;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #fff;
}
.footer-brand img {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 2px 6px #50A56C34);
}

/* THANK YOU & MISC */
.thank-you, .legal, .form-section {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 16px rgba(33,62,130,0.07);
}
.next-steps ul {
  margin-top: 12px;
}
.next-steps li {
  color: #50A56C;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #1C3C6B;
  color: #fff;
  padding: 24px 14px 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  box-shadow: 0 -2px 28px #1C3C6B34;
  z-index: 12001;
  animation: cookieIn .42s cubic-bezier(.38,-0.1,.54,1.22); 
}
@keyframes cookieIn {
  from { opacity: 0; transform: translateY(120px) scale(0.98); } 
  to { opacity: 1; transform: none; } 
}
.cookie-banner p {
  color: #fff;
  margin-bottom: 4px;
  font-size: 1.02rem;
  text-align: center;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}
.cookie-banner button {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 16px;
  border: none;
  padding: 9px 23px;
  margin: 0 4px;
  cursor: pointer;
  transition: background 0.18s, color 0.14s, transform 0.18s;
  box-shadow: 0 2px 10px #FDE15D22;
}
.cookie-banner .accept {
  background: #50A56C;
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #227549;
}
.cookie-banner .reject {
  background: #FDE15D;
  color: #1C3C6B;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #fff;
  color: #227549;
}
.cookie-banner .settings {
  background: transparent;
  color: #fff;
  border: 2px solid #FDE15D;
  padding: 7px 18px;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #227549;
  color: #FDE15D;
}

/* COOKIE MODAL/POPUP  */
.cookie-modal-backdrop {
  position: fixed; inset: 0; z-index: 12002;
  background: rgba(28,60,107,0.68);
  animation: fadeInB 0.38s cubic-bezier(.31,-0.08,.62,1.19);
}
@keyframes fadeInB {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%) scale(1);
  background: #fff;
  min-width: 330px; max-width: 98vw;
  border-radius: 20px;
  padding: 34px 28px 26px 28px;
  box-shadow: 0 8px 48px #1C3C6B2B;
  z-index: 12003;
  animation: slideUpCookie 0.44s cubic-bezier(.20,.85,.43,1.04);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@keyframes slideUpCookie {
  from { opacity: 0; transform: translate(-50%,40%) scale(0.94); }
  to   { opacity: 1; transform: translate(-50%,-50%) scale(1); }
}
.cookie-modal h3 {
  font-size: 1.3rem;
  color: #1C3C6B;
  margin-bottom: 9px;
  font-family: 'Montserrat', sans-serif;
}
.cookie-modal .cookie-cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 13px;
}
.cookie-modal .cookie-cat label {
  font-size: 1.07rem;
  color: #1C3C6B;
  font-weight: 500;
}
.cookie-modal .cookie-cat input[type="checkbox"] {
  accent-color: #50A56C;
  width: 20px;
  height: 20px;
  margin-left: 12px;
}
.cookie-modal .cookie-cat.disabled label {
  color: #CED4E2;
}
.cookie-modal-buttons {
  display: flex;
  gap: 14px;
  margin-top: 12px;
}
.cookie-modal .close-modal {
  background: transparent;
  color: #1C3C6B;
  border: none;
  font-size: 1.5rem;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.19s; margin-bottom: 9px;
}
.cookie-modal .close-modal:hover { color: #50A56C; }

.cookie-modal .accept, .cookie-modal .reject, .cookie-modal .save {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 14px;
  border: none;
  padding: 8px 21px;
  cursor: pointer;
}
.cookie-modal .accept {
  background: #50A56C; color: #fff;
}
.cookie-modal .reject {
  background: #FDE15D; color: #1C3C6B;
}
.cookie-modal .save {
  background: #1C3C6B; color: #fff;
}
.cookie-modal .accept:hover, .cookie-modal .save:hover {
  background: #227549;
}
.cookie-modal .reject:hover {
  background: #fff; color: #227549;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1020px) {
  .features .feature-grid, .club-grid, .team-profiles, .testimonial-slider {
    flex-direction: column; align-items: stretch;
  }
  .feature, .club, .team-member, .testimonial-card {
    max-width: 98vw;
    min-width: 0;
  }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  header .cta.primary {
    display: none;
  }
  .footer-contact {
    gap: 12px; flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  section, .section {
    padding: 30px 8px;
    margin-bottom: 42px;
  }
  .container {
    padding: 0 7px;
  }
  .content-wrapper {
    gap: 18px;
    padding: 0;
  }
  .feature, .club, .team-member, .testimonial-card {
    padding: 18px 10px 18px 11px;
    min-width: 0;
  }
  .text-image-section {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  .footer-nav {
    gap: 11px; font-size: 0.93rem;
  }
  .hero {
    border-radius: 0 0 25px 25px;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.22rem; }
  .section, section { padding: 18px 4px; }
  .footer-brand img { width: 28px; height: 28px; }
}

/* MICRO-INTERACTIONS & PLAYFUL TOUCHES */
.cta, .cta.primary, .cookie-banner button, .cookie-modal .accept, .cookie-modal .reject, .cookie-modal .save {
  transition: transform 0.17s, box-shadow 0.20s, background 0.18s, color 0.12s;
}
.cta:active, .cta.primary:active, .cookie-banner button:active, .cookie-modal .accept:active, .cookie-modal .reject:active, .cookie-modal .save:active {
  transform: scale(0.94);
}

/* SCROLLBAR (playful color) */
body::-webkit-scrollbar { width: 9px; background: #FDE15D; }
body::-webkit-scrollbar-thumb { background: #50A56C; border-radius: 8px; }

/* Custom playful font for energetic headings (web-safe fallback; Montserrat)*/
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

/* Hide overlapping elements (if any) */
[hidden] { display: none !important; }

/* END */
