/* ===== 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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  height: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F4F6F8;
  color: #20374C;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #27A7B7;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #20405A;
  text-decoration: underline;
}
ul, ol {
  list-style-position: inside;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}
input,textarea,select {
  font-family: inherit;
  box-sizing: border-box;
}

/* ===== VARIABLES ===== */
:root {
  --primary: #20405A;
  --primary-dark: #153149;
  --secondary: #27A7B7;
  --accent: #F4F6F8;
  --electric-sky: #12D8FA;
  --electric-purple: #715AFF;
  --electric-orange: #FF574D;
  --electric-yellow: #FFEB3B;
  --white: #fff;
  --grey: #E6E8EA;
  --shadow: 0 4px 20px rgba(32,64,90,0.08);
  --radius-xs: 6px;
  --radius: 16px;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
  --font-weight-bold: 700;
  --font-weight-semi: 600;
}

/* ====== LAYOUT HELPERS ====== */
.container {
  width: 100%;
  max-width: 1180px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
  background: var(--accent);
  border-radius: var(--radius);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 24px;
  transition: box-shadow 0.25s, transform 0.22s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 36px 0 rgba(39,167,183,0.20);
  transform: translateY(-4px) scale(1.02);
  z-index: 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;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 24px;
  margin-bottom: 20px;
  min-width: 250px;
  max-width: 500px;
  transition: box-shadow 0.2s, transform 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 36px 0 rgba(39,167,183,0.16);
  transform: translateY(-2px) scale(1.015);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 24px 18px;
  background: var(--white);
  border-radius: var(--radius-xs);
  box-shadow: 0 2px 10px rgba(39,167,183,0.10);
  min-width: 220px;
  flex: 1 1 0;
  margin-bottom: 20px;
  transition: box-shadow 0.19s;
}
.feature-item img {
  width: 42px;
  height: 42px;
  margin-bottom: 8px;
}
.feature-item:hover {
  box-shadow: 0 6px 18px 0 rgba(113,90,255,0.14);
}

/* ===== GLOBAL TYPOGRAPHY ===== */
h1,h2,h3,h4 {
  font-family: var(--font-display);
  font-weight: var(--font-weight-bold);
  color: var(--primary);
  letter-spacing: .5px;
  margin-bottom: 12px;
}
h1 {
  font-size: 2.75rem;
  line-height: 1.13;
}
h2 {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 6px;
}
h3 {
  font-size: 1.25rem;
  color: var(--primary-dark);
}
h4 {
  font-size: 1rem;
  margin-bottom: 5px;
}
p,li,blockquote {
  font-family: var(--font-body);
  line-height: 1.7;
  color: #27485d;
  font-size: 1rem;
}
blockquote {
  border-left: 4px solid var(--secondary);
  background: #e6f7fa;
  padding: 12px 20px;
  font-style: italic;
  color: var(--primary-dark);
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.testimonial-author {
  font-weight: 600;
  color: var(--secondary);
  font-size: 1rem;
}
.small,small {
  font-size: 0.89em;
  color: #59718e;
  font-family: var(--font-body);
}
strong {
  font-weight: 700;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ===== NAVIGATION ===== */
header {
  width: 100%;
  background: var(--primary);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 12px rgba(32,64,90,0.07);
}
.logo-area {
  display: flex;
  align-items: center;
  height: 64px;
  padding-left: 20px;
}
.logo-area img {
  height: 48px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-right: 20px;
  flex-wrap: wrap;
}
.main-nav a {
  font-family: var(--font-display);
  color: var(--accent);
  font-weight: 600;
  padding: 7px 10px;
  font-size: 1rem;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.main-nav a:hover:not(.cta-primary), .main-nav a:focus:not(.cta-primary) {
  background: var(--secondary);
  color: var(--primary);
  text-decoration: none;
}
.main-nav .cta-primary {
  background: linear-gradient(90deg, var(--electric-sky), var(--electric-purple) 70%);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 99px;
  padding: 10px 32px;
  box-shadow: 0 6px 20px 0 rgba(18,216,250,0.18);
  transition: background 0.24s,color 0.21s,box-shadow 0.19s;
}
.main-nav .cta-primary:hover, .main-nav .cta-primary:focus {
  background: linear-gradient(90deg, var(--electric-purple) 0%, var(--electric-sky) 100%);
  color: #fff;
  box-shadow: 0 10px 40px 0 rgba(113,90,255,0.21);
  text-shadow: 0 1px 8px #12d8fa70;
}
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: #fff;
  background: none;
  border: none;
  margin-right: 18px;
  line-height: 1;
  z-index: 101;
}

/* ===== MOBILE NAVIGATION ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(104deg, var(--primary) 80%, var(--secondary) 100%);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.74,.05,.45,1.03);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 200;
  padding-top: 20px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.2rem;
  color: #fff;
  background: none;
  margin-left: auto;
  margin-right: 24px;
  margin-bottom: 30px;
  border-radius: 8px;
  padding: 3px 12px;
  transition: background 0.17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: rgba(39,167,183,0.09);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
  width: 100%;
  padding: 0 35px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #fff;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.18s, background 0.12s;
  border-radius: 6px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--electric-yellow);
  background: rgba(244,246,248,0.07);
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 320px;
  background: linear-gradient(104deg, var(--electric-sky) 1%, var(--accent) 83%);
  display: flex;
  align-items: center;
  justify-content: start;
  padding-top: 64px;
  padding-bottom: 64px;
  width: 100%;
  overflow: hidden;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.hero h1 {
  font-size: 2.8rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary);
  margin-bottom: 16px;
}
.hero p {
  font-size: 1.15rem;
  margin-bottom: 24px;
  color: var(--primary-dark);
}

/* ====== FEATURES GRID ====== */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 24px;
  width: 100%;
  justify-content: flex-start;
}

/* ====== COURSE GRID ====== */
.courses-overview-grid, .courses-list-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.course-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(39,167,183,0.10);
  padding: 28px 22px 24px 22px;
  min-width: 230px;
  flex: 1 1 270px;
  margin-bottom: 20px;
  transition: box-shadow 0.22s, transform 0.22s;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.course-card:hover {
  box-shadow: 0 10px 32px rgba(113,90,255,0.16);
  transform: translateY(-4px) scale(1.02);
  z-index: 1;
}
.course-price {
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--electric-orange);
  font-weight: 700;
}
.view-details {
  display: inline-block;
  background: var(--secondary);
  color: #fff;
  border-radius: 99px;
  padding: 8px 22px;
  font-family: var(--font-display);
  font-weight: 700;
  margin-top: 6px;
  transition: background 0.19s, box-shadow 0.13s;
  box-shadow: 0 2px 8px 0 rgba(39,167,183,0.14);
}
.view-details:hover, .view-details:focus {
  background: var(--primary);
  color: #fff;
}

/* ===== FEATURES LIST ===== */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 0;
  margin: 0;
}
.features-list li {
  display: flex;
  align-items: center;
  font-size: 1.07rem;
  gap: 12px;
  font-family: var(--font-body);
  color: var(--primary-dark);
  padding: 7px 0 7px 3px;
}
.features-list li img {
  width: 30px;
  height: 30px;
  min-width: 30px;
}

/* ===== TIMELINE STEPS ===== */
.step-timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-left: 0;
}
.step-timeline li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.12rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(18,216,250,0.1);
  padding: 18px 24px;
  margin-bottom: 5px;
}
.step-timeline img {
  width: 36px;
  height: 36px;
}

/* ===== INSTRUCTOR GRID ===== */
.instructor-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.instructor-item {
  background: var(--white);
  border-radius: var(--radius-xs);
  padding: 18px 18px 14px 18px;
  box-shadow: 0 2px 8px rgba(39,167,183,0.11);
  min-width: 200px;
  flex: 1 1 0;
}

/* ===== TESTIMONIALS SLIDER/GROUP ===== */
.testimonials-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 12px;
}

/* ===== FAQS ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.faq-item h2 {
  font-size: 1.12rem;
  color: var(--primary-dark);
  margin-bottom: 7px;
}
.faq-item p {
  font-size: 1rem;
  color: var(--primary);
}
.faq-contact-prompt {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius-xs);
  padding: 22px 24px;
  box-shadow: 0 2px 12px 0 rgba(113,90,255,0.09);
}

/* ===== MINI FAQ IN CONTACT ===== */
.mini-faq-list {
  margin-top: 18px;
  background: var(--grey);
  border-radius: 9px;
  padding: 18px 18px 12px 18px;
}
.mini-faq-list h3 {
  color: var(--secondary);
  font-size: 1.09rem;
  margin-bottom: 7px;
}
.mini-faq-list ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mini-faq-list li span {
  color: var(--primary-dark);
  font-size: 1em;
  display: block;
  margin-top: 2px;
}

/* ===== CTA BUTTONS ===== */
.cta-primary, .cta-secondary {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 99px;
  padding: 12px 38px;
  font-size: 1.12rem;
  box-shadow: 0 3px 18px 0 rgba(113,90,255,0.11);
  transition: background 0.23s, color 0.21s, box-shadow 0.16s, transform 0.14s;
  cursor: pointer;
  margin-top: 6px;
  margin-bottom: 6px;
  border: none;
}
.cta-primary {
  background: linear-gradient(90deg, var(--electric-purple) 0%, var(--electric-sky) 100%);
  color: #fff;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(275deg, var(--electric-sky), var(--electric-purple));
  color: #fff;
  box-shadow: 0 8px 32px 0 rgba(18,216,250,0.17);
  transform: translateY(-2px) scale(1.04);
}
.cta-secondary {
  background: none;
  color: var(--secondary);
  border: 2px solid var(--secondary);
  box-shadow: 0 2px 10px rgba(39,167,183,0.13);
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
  box-shadow: 0 8px 28px 0 rgba(39,167,183,0.17);
}

/* ===== CTA SECTION ===== */
.section-cta {
  background: linear-gradient(90deg, var(--primary) 70%, var(--electric-sky) 110%);
  padding: 40px 0;
  margin-bottom: 0;
  color: #fff;
  width: 100%;
  border-radius: 0;
}
.section-cta .content-wrapper {
  align-items: center;
  color: #fff;
  gap: 18px;
}
.section-cta h2, .section-cta p {
  color: #fff;
}

/* ====== CONTACT DETAILS LIST ====== */
.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 1rem;
}
.contact-details-list li strong {
  font-weight: 700;
  color: var(--secondary);
}

/* ===== FOOTER ===== */
footer {
  width: 100%;
  background: var(--primary-dark);
  padding: 30px 0 24px 0;
  font-size: 1rem;
  margin-top: 60px;
  color: #fff;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 12px;
}
.footer-nav a {
  color: var(--electric-sky);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--electric-yellow);
  text-decoration: underline;
}
.footer-info {
  text-align: center;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: linear-gradient(90deg, var(--electric-sky), var(--secondary) 65%);
  color: var(--primary-dark);
  z-index: 9999;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -2px 14px 0 rgba(32,64,90,0.13);
  padding: 16px 28px;
  gap: 20px;
  font-family: var(--font-body);
  font-size: 1rem;
  animation: slideUp 0.45s cubic-bezier(.55,.2,.3,1);
}
@keyframes slideUp {
  from {transform: translateY(100%); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}
.cookie-banner .cookie-banner-text {
  flex: 1 1 0;
  font-size: 1rem;
  color: #142435;
  font-weight: 600;
  margin-right: 10px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
}
.cookie-banner button {
  padding: 8px 19px;
  border-radius: 20px;
  font-family: var(--font-display);
  font-weight: 700;
  border: none;
  font-size: 1rem;
  margin: 0 2px;
  cursor: pointer;
  transition: background 0.13s, color 0.13s, box-shadow 0.13s;
}
.cookie-accept {
  background: var(--electric-yellow);
  color: #222;
  border: 1.5px solid var(--electric-yellow);
}
.cookie-accept:hover,
.cookie-accept:focus {
  background: var(--electric-orange);
  color: #fff;
  border-color: var(--electric-orange);
}
.cookie-reject {
  background: #fff;
  color: var(--primary);
  border: 1.5px solid var(--grey);
}
.cookie-reject:hover,
.cookie-reject:focus {
  background: var(--electric-purple);
  color: #fff;
}
.cookie-settings {
  background: transparent;
  color: var(--secondary);
  border: 1.5px solid var(--secondary);
}
.cookie-settings:hover,
.cookie-settings:focus {
  background: var(--secondary);
  color: #fff;
}

/* ===== COOKIE MODAL POPUP ===== */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(32,64,90,0.35);
  z-index: 10000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s;
}
.cookie-modal-overlay.active {
  display: flex;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px 20px 28px;
  min-width: 320px;
  max-width: 90vw;
  box-shadow: 0 6px 32px 0 rgba(18,216,250,0.14);
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: zoomIn 0.4s cubic-bezier(.71,.27,.22,.99);
}
@keyframes zoomIn {
  from {transform: scale(0.8); opacity: 0;}
  to {transform: scale(1); opacity: 1;}
}
.cookie-modal h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--secondary);
  margin-bottom: 2px;
}
.cookie-modal .category-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 20px;
}
.cookie-modal .category-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.cookie-modal .toggle-switch {
  position: relative;
  width: 40px;
  height: 22px;
  display: inline-block;
}
.cookie-modal .toggle-switch input[type="checkbox"] {
  display: none;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: var(--grey);
  border-radius: 16px;
  transition: background 0.2s;
}
.cookie-modal .toggle-switch input:checked + .slider {
  background: var(--electric-sky);
}
.cookie-modal .slider:before {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 3px rgba(32,64,90,0.05);
  transition: transform 0.2s;
}
.cookie-modal .toggle-switch input:checked + .slider:before {
  transform: translateX(17px);
}
.cookie-modal .category-name {
  font-weight: 600;
  color: var(--primary);
  margin-right: 6px;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 10px;
  justify-content: flex-end;
}

/* ----- Media Queries: Responsive Design ----- */
@media (max-width: 1024px) {
  .features-grid, .courses-overview-grid, .courses-list-grid, .testimonials-slider, .content-grid, .instructor-highlights {
    flex-direction: column;
    gap: 18px;
  }
  .main-nav, .footer-nav {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .content-wrapper { gap: 24px; }
}
@media (max-width: 800px) {
  .container { padding: 0 10px; }
  .hero {
    padding-top: 40px;
    padding-bottom: 36px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  .logo-area img { height: 38px; }
  .section, .section-cta { padding: 28px 4vw; }
  .content-grid, .instructor-highlights, .card-container,
  .testimonials-slider, .courses-overview-grid,
  .courses-list-grid, .features-grid, .faq-list {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .step-timeline { gap: 14px; }
  .text-image-section { flex-direction: column; gap: 20px; }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
}
@media (max-width: 600px) {
  .footer-nav, .main-nav { gap: 10px; }
  .course-card, .feature-item { min-width: 0; }
  .hero { padding: 22px 0 21px 0; }
  .section, .section-cta { padding: 18px 2vw; }
  .cookie-banner { flex-direction: column; align-items: flex-start; padding: 13px 10px; gap: 9px;}
  .cookie-banner .cookie-actions { flex-direction: column; gap: 7px; }
}

/* ------ Utility: Hide visually (for JS toggle classes etc.) ------ */
.hide { display: none !important; }

/* ------ Extras for High Energy/Electric Style ------ */
.cta-primary, .cta-secondary, .view-details {
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1.02rem;
  font-family: var(--font-display);
}
::-webkit-input-placeholder { color: #59718e; opacity: 1; }
::-moz-placeholder { color: #59718e; opacity:1; }
:-ms-input-placeholder { color: #59718e; opacity:1; }
::placeholder { color: #59718e; opacity:1; }

/* ------ Active/Focus States ------ */
:focus-visible {
  outline: 2px solid var(--electric-sky);
  outline-offset: 1px;
  border-radius: 6px;
  z-index: 2;
}

/* ----- Prevent scroll on mobile menu/modal open (set by JS) ----- */
body.modal-open, body.mobile-menu-open {
  overflow: hidden;
}
