/* ============================================================
   SwiftVent Köln – Gradient Modern UI
   Author: Senior CSS & UI Specialist
   Brand Colors: #155769 (primary), #79B7B5 (secondary), #F6FAFF (accent)
   Font: Montserrat (display), Open Sans (body)
   Only flexbox for layouts, mobile-first, gradient_modern style
   ============================================================ */

/* ===== 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;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { scroll-behavior: smooth; }
body {
  line-height: 1.5;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  background: #F6FAFF;
  color: #155769;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
ul, ol { list-style: none; padding-left: 0; }
a { text-decoration: none; color: inherit; transition: color 0.2s; }

/* ====== BRAND FONTS ======== */
h1, h2, h3, h4, h5, h6, .logo, .cta-primary {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #155769;
}

/* ====== LAYOUT CONTAINERS ====== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ====== SECTION SPACING (MANDATORY) ====== */
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
@media (max-width: 600px) {
  section, .section {
    padding: 30px 10px;
    margin-bottom: 40px;
  }
}

/* ====== HERO + SECTION GRADIENT BACKGROUNDS ====== */
.hero {
  background: linear-gradient(110deg, #79B7B5 0%, #F6FAFF 100%);
  border-radius: 0 0 32px 32px;
  box-shadow: 0 12px 32px 0 rgba(21, 87, 105, 0.08);
  min-height: 320px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
}
@media (max-width: 900px) {
  .hero { border-radius: 0 0 24px 24px; }
}
@media (max-width: 600px) {
  .hero { border-radius: 0 0 12px 12px; min-height: 180px; }
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  font-size: 2.5rem;
  color: #155769;
  margin-bottom: 8px;
  line-height: 1.15;
}
.hero p {
  font-size: 1.1rem;
  color: #155769;
  max-width: 650px;
}

/* ====== HEADINGS & TYPOGRAPHY SCALE ====== */
h1 { font-size: 2.5rem; line-height: 1.15; }
h2 { font-size: 2rem; margin-bottom: 12px; }
h3 { font-size: 1.25rem; margin-bottom: 8px; font-weight: 700; }
h4, h5, h6 { font-size: 1.1rem; }
p { font-size: 1.05rem; max-width: 760px; }
@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
}
strong { font-weight: 700; }

/* ===== LINK AND BUTTONS ====== */
.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #155769 0%, #79B7B5 100%);
  color: #fff;
  padding: 14px 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  border-radius: 30px;
  box-shadow: 0 6px 16px 0 rgba(21, 87, 105, 0.09);
  font-weight: 700;
  transition: background 0.3s, box-shadow 0.3s, transform 0.15s;
  border: none;
  margin-top: 12px;
  cursor: pointer;
  gap: 8px;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(90deg, #79B7B5 0%, #155769 100%);
  box-shadow: 0 12px 32px 0 rgba(21, 87, 105, 0.18);
  transform: translateY(-1px) scale(1.03);
  outline: none;
}
nav a, .footer-nav a, .mobile-nav a {
  font-family: inherit;
  font-size: 1rem;
  padding: 8px 16px;
  border-radius: 18px;
  transition: background 0.2s, color 0.2s;
}
nav a:hover, .footer-nav a:hover, .mobile-nav a:hover {
  background: #e4f1f8;
  color: #155769;
}
.mobile-nav a {
  font-size: 1.14rem;
  width: 100%;
  display: flex;
  padding: 16px 10px;
  margin-bottom: 6px;
}

/* ======= HEADER NAV & BRAND ====== */
header {
  background: #fff;
  box-shadow: 0 4px 24px 0 rgba(21, 87, 105, 0.05);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 95;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 0;
}
.logo img { height: 46px; width: auto; }
.main-nav {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 8px;
}
@media (max-width: 900px) {
  .main-nav { gap: 3px; }
}
@media (max-width: 820px) {
  .main-nav { display: none; }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* ======= MOBILE BURGER NAVIGATION ====== */
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #155769;
  display: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #e4f1f8;
  outline: none;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #ffffff;
  box-shadow: 0 0 80px 20px rgba(21, 87, 105, 0.18);
  z-index: 120;
  display: flex;
  flex-direction: column;
  gap: 0;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1);
  overflow-y: auto;
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #155769;
  font-size: 2.2rem;
  padding: 16px;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 121;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #79B7B5;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 32px 0 0 0;
}

@media (max-width: 820px) {
  .mobile-menu { display: flex; }
}
@media (min-width: 821px) {
  .mobile-menu { display: none !important; }
}

/* ===== HERO TEAM/PHOTO ===== */
.team-photo-placeholder {
  background: #e4f1f8;
  border-radius: 20px;
  margin-top: 10px;
  padding: 16px 10px;
  display: flex;
  align-items: center;
  min-width: 90px;
  min-height: 90px;
}
.team-photo-placeholder img {
  width: 60px;
  height: auto;
}

/* ===== FLEXBOX CARD GRIDS (MANDATORY) ===== */
.card-container, .card-grid, .feature-grid, .testimonial-grid, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
  margin: 16px 0 0 0;
}
@media (max-width: 900px) {
  .card-container, .card-grid, .feature-grid, .testimonial-grid, .content-grid { gap: 16px; }
}
@media (max-width: 600px) {
  .card-container, .card-grid, .feature-grid, .testimonial-grid, .content-grid { gap: 12px; }
}
.card, .feature-item, .testimonial-card {
  margin-bottom: 20px;
}

/* ========== FEATURES & SERVICES CARDS ========= */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 24px 0 rgba(21, 87, 105, 0.06);
  padding: 28px 22px 24px 22px;
  min-width: 220px;
  flex: 1 1 270px;
  max-width: 350px;
  min-height: 240px;
  transition: box-shadow 0.25s, transform 0.16s;
  position: relative;
}
.feature-item img {
  height: 40px;
  width: 40px;
}
.feature-item strong {
  color: #155769;
  font-size: 1rem;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 8px 36px 0 rgba(21, 87, 105, 0.16);
  transform: translateY(-2px) scale(1.02);
  z-index: 2;
}

/* ====== TESTIMONIAL CARDS ====== */
.testimonials {
  background: linear-gradient(90deg, #F6FAFF 80%, #79B7B5 100%);
}
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 26px 16px 26px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 32px 0 rgba(21, 87, 105, 0.11);
  color: #092c36;
  min-width: 260px;
  max-width: 380px;
  flex: 1 1 260px;
  min-height: 185px;
  position: relative;
  font-size: 1rem;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.13s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 12px 40px 0 rgba(21, 87, 105, 0.16);
  transform: scale(1.025);
}
.stars {
  font-size: 1.3rem;
  color: #155769;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 1.2px;
}
.testimonial-card .author {
  color: #155769;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 8px;
}
.testimonial-card p {
  font-size: 1.05rem;
  color: #092c36;
  font-family: 'Open Sans', Arial, sans-serif;
}

/* ====== CTA-LARGE/SHORT/SECTION ====== */
.cta-large, .cta-short, .cta-social {
  background: linear-gradient(90deg, #155769 84%, #79B7B5 100%);
  border-radius: 24px;
  color: #fff;
  text-align: center;
  box-shadow: 0 4px 24px 0 rgba(21, 87, 105, 0.055);
  margin-bottom: 60px;
  padding: 48px 20px;
}
.cta-large h2, .cta-short h2, .cta-social h2 {
  color: #fff;
}
.cta-large .cta-primary, .cta-short .cta-primary {
  background: #fff;
  color: #155769;
  font-weight: 700;
}
.cta-large .cta-primary:hover, .cta-short .cta-primary:hover {
  background: #79B7B5;
  color: #fff;
}
/* Social links */
.social-links { display: flex; flex-direction: row; gap: 24px; justify-content: center; margin-top: 16px; }
.social-links a { opacity: 0.84; transition: opacity 0.15s, transform 0.15s; }
.social-links a:hover { opacity: 1; transform: scale(1.1) translateY(-2px); }

@media (max-width: 600px) {
  .cta-large, .cta-short, .cta-social {
    border-radius: 13px;
    padding: 30px 8px;
  }
}

/* ====== CARDS AND LISTS ====== */
ul, .content-list { margin-top: 8px; } 
ul > li, .content-list li {
  font-size: 1.01rem;
  margin-bottom: 10px;
  padding-left: 24px;
  position: relative;
}
ul > li:before, .content-list li:before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(90deg,#155769 60%,#79B7B5 100%);
}

/* ====== LEGAL PAGES ====== */
.legal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 24px 0 rgba(21, 87, 105, 0.07);
  margin-bottom: 60px;
  font-size: 1.03rem;
  color: #155769;
}
.legal h1 { font-size: 2rem; margin-bottom: 18px; }
.legal h2 { font-size: 1.2rem; margin-top: 20px; margin-bottom: 8px; color: #155769; }
.legal p, .legal ul { color: #155769; }

/* ======= CONTACT DETAILS/INFO ====== */
.contact-details, .about-preview, .about-details, .values, .contact-location {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 14px 0 rgba(21, 87, 105, 0.06);
}
.contact-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
  color: #155769;
}
.contact-icons img {
  width: 24px;
  height: 24px;
  vertical-align: middle;
}

.map-embed {
  background: #e4f1f8;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  padding: 16px;
  margin-top: 14px;
}
.map-embed img {
  width: 90px;
  height: auto;
}

/* ===== SUCCESS / THANK YOU ===== */
.success {
  background: linear-gradient(90deg, #79B7B5 0%, #F6FAFF 100%);
  border-radius: 20px;
  box-shadow: 0 4px 16px 0 rgba(21, 87, 105, 0.06);
  text-align: center;
}
.success h1 { color: #155769; }

/* ===== FOOTER ====== */
footer {
  background: #155769;
  color: #fff;
  padding: 40px 0 0 0;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 24px;
}
.footer-logo { min-width: 70px; }
.footer-logo img { width: 46px; height: auto; }
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #fff;
  font-size: 0.99rem;
  opacity: 0.86;
  padding: 0;
}
.footer-nav a:hover {
  opacity: 1;
  color: #F6FAFF;
  text-decoration: underline;
}
.footer-contact {
  font-size: 0.95rem;
  color: #fff;
  line-height: 1.7;
}
.footer-contact a { color: #F6FAFF; text-decoration: underline; }
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .footer-logo { margin-bottom: 10px; }
}

/* ====== TABLES (for price and schedule, always flexible) ====== */
.price-table, .class-schedule, .upcoming-events, .levels-explained, .coaching-steps, .pricing-overview {
  background: #e4f1f8;
  border-left: 4px solid #155769;
  border-radius: 12px;
  color: #155769;
  margin: 12px 0 0 0;
  padding: 18px 18px 14px 22px;
  font-size: 1.04rem;
  font-weight: 500;
  line-height: 1.7;
}

/* ======= RESPONSIVE FLEXBOX PATTERNS ====== */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 18px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.content-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; }
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 2px 24px 0 rgba(21,87,105,0.08);
  display: flex;
  flex-direction: column;
  min-width: 220px;
  padding: 22px 14px 20px 18px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

/* Mandatory .testimonial-card flex pattern */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}

/* Feature item flex pattern (already ok) */

/* ======== SPACING (MANDATORY!!! NO GRID) ========= */
section, .section, .features, .testimonials, .cta-large, .cta-short, .about-details, .values, .contact-details {
  margin-bottom: 60px;
}
@media (max-width: 600px) {
  section, .section, .features, .testimonials, .cta-large, .cta-short, .about-details, .values, .contact-details {
    margin-bottom: 35px;
  }
}

/* ========== HOVER/FOCUS TRANSITIONS ========== */
button, .cta-primary, a {
  transition: background 0.2s, color 0.2s, box-shadow 0.19s, transform 0.18s;
}
button:focus, .cta-primary:focus, a:focus { outline: 2px solid #155769; outline-offset: 2px; }
a:focus { outline: 2px solid #79B7B5; }

/* ========= MOBILE STYLES =========== */
@media (max-width: 599px) {
  .container { padding-left: 6px; padding-right: 6px; }
  .feature-item, .testimonial-card, .card, .class-schedule, .price-table, .levels-explained, .coaching-steps, .pricing-overview {
    min-width: 0;
    padding-left: 10px; padding-right: 10px;
    font-size: 0.99rem;
  }
  .testimonial-card, .feature-item, .card {
    max-width: 99vw;
    margin-left: 0; margin-right: 0;
  }
}

/* ========= MICRO-ANIMATIONS ========= */
.card, .feature-item, .testimonial-card {
  transition: box-shadow 0.21s, transform 0.12s;
}
.card:hover, .feature-item:hover, .testimonial-card:hover {
  box-shadow: 0 8px 28px 0 rgba(21, 87, 105, 0.13);
  transform: translateY(-2px) scale(1.02);
  z-index: 2;
}

/* ============== COOKIE CONSENT BANNER ============== */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 200;
  display: flex;
  flex-direction: row;
  align-items: center;
  background: #f7fcfe;
  border-top: 2px solid #155769;
  box-shadow: 0 -4px 30px 0 rgba(21,87,105,0.08);
  padding: 22px 20px;
  gap: 24px;
  width: 100%;
  transition: transform 0.35s cubic-bezier(.77,0,.18,1), opacity 0.21s;
  font-size: 1rem;
  color: #155769;
}
.cookie-consent-banner.hide {
  transform: translateY(100%);
  opacity: 0; pointer-events: none;
}
.cookie-consent-banner .cookie-text {
  flex: 1 1 auto;
  font-size: 1rem;
  color: #155769;
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  gap: 14px;
  flex-direction: row;
}
.cookie-btn {
  min-width: 120px;
  padding: 8px 16px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 20px;
  background: #155769;
  color: #fff;
  box-shadow: 0 2px 8px rgba(21, 87, 105, 0.09);
  margin-right: 6px;
  cursor: pointer;
  transition: background 0.19s, color 0.16s;
}
.cookie-btn.settings {
  background: #79B7B5;
  color: #155769;
  font-weight: 700;
}
.cookie-btn.reject {
  background: #fff;
  color: #155769;
  border: 1px solid #155769;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #79B7B5;
  color: #155769;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #155769;
  color: #fff;
}
@media (max-width: 600px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 17px 10px;
    font-size: 0.98rem;
  }
  .cookie-consent-banner .cookie-actions {
    gap: 8px;
    flex-direction: column;
    width: 100%;
  }
}

/* ===== COOKIE SETTINGS MODAL ===== */
.cookie-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(21, 87, 105, 0.25);
  z-index: 350;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  opacity: 1;
  transition: opacity 0.16s;
}
.cookie-modal-overlay.hide {
  opacity: 0; pointer-events: none;
}
.cookie-modal {
  background: #fff;
  width: 98%;
  max-width: 420px;
  margin: 0 auto 40px auto;
  border-radius: 18px;
  box-shadow: 0 8px 48px 0 rgba(21, 87, 105, 0.16);
  padding: 34px 24px 20px 24px;
  color: #155769;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookie-modal-slideup 0.3s cubic-bezier(.68,0,.26,1);
}
@keyframes cookie-modal-slideup {
  0% { transform: translateY(60px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.3rem;
  color: #155769;
  font-weight: 700;
}
.cookie-category {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #e4f1f8;
}
.cookie-category:last-child { border-bottom: none; }
.cookie-category-label {
  font-size: 1rem;
  font-weight: bold;
  color: #155769;
  margin-bottom: 4px;
}
.cookie-category-desc {
  font-size: 0.99rem;
  color: #155769;
  opacity: 0.86;
}
.cookie-switch {
  pointer-events: none;
  width: 42px; height: 24px;
  background: #ccc;
  border-radius: 14px;
  position: relative;
  transition: background 0.17s;
  flex-shrink: 0;
}
.cookie-switch input[type="checkbox"] {
  display: none;
}
.cookie-switch.enabled { background: #79B7B5; }
.cookie-switch .switch-dot {
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(21, 87, 105, 0.06);
  transition: left 0.2s;
}
.cookie-switch.enabled .switch-dot { left: 21px; background: #155769; }

.cookie-modal .cookie-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 14px;
}
.cookie-modal .cookie-btn {
  min-width: 100px;
}
.cookie-modal .close-btn {
  background: none;
  border: none;
  color: #155769;
  font-size: 1.5rem;
  position: absolute;
  top: 16px; right: 16px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.13s;
}
.cookie-modal .close-btn:hover { opacity: 1; }
@media (max-width: 600px) {
  .cookie-modal {
    max-width: 95vw;
    padding: 20px 8px 12px 8px;
  }
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  animation: fadeIn 0.7s forwards;
}
@keyframes fadeIn {
  to { opacity: 1; }
}

/* ===== UTILITIES & OVERRIDES ===== */
.gap-xl { gap: 36px !important; }
.gap-lg { gap: 28px !important; }
.gap-sm { gap: 10px !important; }
.text-center { text-align: center !important; }
.rounded { border-radius: 50% !important; }
.bg-primary { background: #155769 !important; color: #fff; }
.bg-secondary { background: #79B7B5 !important; color: #155769; }
.bg-accent { background: #F6FAFF !important; color: #155769; }

/* ===== FORM ELEMENTS ===== */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 12px;
  padding: 10px 12px;
  border: 1px solid #d5e7ee;
  background: #fff;
  margin-bottom: 18px;
  transition: border-color 0.13s;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: #155769;
}

/* ====== END OF STYLE.CSS ====== */
