/* === CORPORATE DESIGN SYSTEM ROOT THEME === */
:root {
  /* Primary split-complementary scheme */
  --color-primary: #2A254D;       /* Navy blue, strong corporate base */
  --color-primary-dark: #19193A;
  --color-primary-light: #5B62BD;

  --color-accent: #FFD700;        /* Gold - energetic accent */
  --color-accent2: #7DDAFE;       /* Sky - secondary accent for CTA */
  --color-accent3: #E692A7;       /* Soft magenta for details */

  --color-success: #45D19E;
  --color-error: #DA4666;
  --color-info: #5B62BD;

  --color-background: #F7FAFF;
  --color-background-section: #EEF2FF;
  --color-background-dark: #222138;
  --color-gradient-hero: linear-gradient(rgba(25,22,65,0.82),rgba(60,81,165,0.52));
  --color-gradient-section: linear-gradient(105deg, #f7faff 60%, #e2e8ff 100%);
  --color-glass: rgba(245, 247, 255, 0.48);
  --color-glass-dark: rgba(34, 33, 56, 0.58);

  --text-base: #23244D;
  --text-dark: #222222;
  --text-light: #FFFFFF;
  --text-soft: #595a80;
  --text-gray: #76789B;

  --border-radius: 12px;
  --border-radius-lg: 16px;
  --card-shadow: 0 8px 28px -10px rgba(34,40,85,0.11);
  --card-border: 1.5px solid #e6e6fa;

  --spacing-section: 60px;
  --spacing-card: 32px;
  --container-max: 1190px;
  --transition-fast: 0.18s cubic-bezier(.4,0,.2,1);
  --transition: 0.25s cubic-bezier(.5,.1,.2,1);

  font-size: 16px;
  scroll-behavior: smooth;
}

html, body {
  background: var(--color-background);
  color: var(--text-base);
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  line-height: 1.7;
  font-size: 1rem;
  min-width: 320px;
  margin: 0;
  padding: 0;
}

body {
  margin: 0 auto;
}

/* --- TYPOGRAPHY & ADAPTIVE TYPOGRAPHY --- */
h1, h2, h3, h4, h5 {
  font-family: 'Raleway', 'Open Sans', Arial, sans-serif;
  color: var(--text-dark);
  margin-top: 0;
  margin-bottom: 0.65em;
  font-weight: 800;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.085);
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2.4rem, 7vw, 3.7rem);
  line-height: 1.13;
}

h2 {
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  line-height: 1.17;
}

h3 {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.17;
}

h4 {
  font-size: 1.09rem;
  font-weight: 700;
}

p, ul, ol {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: var(--text-base);
  margin: 0 0 1.15em;
  font-size: 1.07rem;
  line-height: 1.7;
}

@media (max-width: 800px) {
  h1 { font-size: 2.0rem; }
  h2 { font-size: 1.25rem; }
}

/* UTILITY CLASSES */
.container, .section-container {
  width: 100%;
  margin: 0 auto;
  max-width: var(--container-max);
  padding: 0 18px;
  box-sizing: border-box;
}

.is-two-thirds {
  width: 90%;
  max-width: 1100px;
}

.section-title {
  margin-bottom: 12px;
  text-align: center;
  color: var(--color-primary);
  font-weight: 800;
  letter-spacing: 0.015em;
  text-shadow: 1px 1px 5px rgba(74,114,160,0.08);
}

@media (max-width: 700px) {
  .is-two-thirds { width: 100%; padding: 0 8px; }
}

.animate__animated { will-change: opacity, transform; }

/* ==== LAYOUT/SKELETON ==== */
.site-header {
  width: 100%;
  background: var(--color-background-dark);
  position: sticky;
  top: 0;
  z-index: 9000;
  box-shadow: 0 2px 24px -7px rgba(34,40,85,0.10);
}

/* ----- NAVIGATION BAR ----- */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 12px 16px;
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 22px;
}

.navbar__menu ul {
  display: flex;
  list-style: none;
  padding-left: 0;
  margin: 0;
  gap: 16px;
  flex-wrap: wrap;
}
.navbar__menu li a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
  font-family: 'Raleway', sans-serif;
  padding: 7px 15px;
  border-radius: 7px;
  transition: background var(--transition-fast), color var(--transition-fast);
  font-size: 1.07rem;
  letter-spacing: 0.02em;
  display: inline-block;
}
.navbar__menu li a:hover,
.navbar__menu li a:focus {
  background: var(--color-primary-light);
  color: #fff;
}

/* BURGER MENU FOR MOBILE */
.navbar__burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: transparent;
  border: none;
  gap: 4px;
  padding: 8px;
  min-width: 40px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
}

.navbar__burger span {
  width: 26px;
  height: 3px;
  display: block;
  background: var(--color-accent);
  border-radius: 2px;
  margin: 2px auto;
  transition: all .28s;
}

@media (max-width: 1023px) {
  .navbar__menu ul {
    display: none;
    position: absolute;
    top: 65px;
    left: 0; right: 0;
    background: var(--color-background-dark);
    flex-direction: column;
    z-index: 1010;
    gap: 0;
    padding: 0;
    border-bottom: 4px solid var(--color-primary);
  }
  .navbar__menu ul.open {
    display: flex;
    animation: navFadeIn .5s;
  }
  .navbar__burger { display: flex; }
}
@keyframes navFadeIn {
  0%   { opacity: 0; transform: translateY(-28px);}
  100% { opacity: 1; transform: translateY(0);}
}

/* HERO SECTION */
.hero-section {
  width: 100%;
  background:
    linear-gradient(rgba(32,23,77,0.78),rgba(60,81,140,0.45)),
    url('image/hero_business_people_conference.jpg') center/cover no-repeat fixed;
  min-height: 64vh;
  padding: 0;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero-section .hero-content {
  z-index: 3;
  position: relative;
  padding-top: 70px;
  padding-bottom: 55px;
}
.hero-section h1, .hero-section p {
  color: #fff !important;
}
.hero-section .stat-widgets {
  flex-wrap: wrap;
  gap: 50px;
}
.stat-widget {
  text-align: center;
  background: rgba(44,36,92,0.28);
  border-radius: var(--border-radius);
  padding: 18px 28px;
  box-shadow: 0 2px 12px -5px rgba(88,90,150,0.09);
  min-width: 128px;
}
.stat-value { font-weight: 800; }
.stat-label { color: #ECECEC; font-weight: 600; }

@media (max-width: 1023px) {
  .hero-section .stat-widgets { gap: 22px; }
  .stat-widget { padding: 10px 8px; min-width: 90px; }
}

@media (max-width:700px) {
  .hero-section .hero-content { padding-top: 38px; }
}

/* PARTICLE ANIMATION BACKGROUND (HERO) */
.hero-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 2;
  pointer-events: none;
  background:
    /* gentle overlay with glass effect and blurred particles */
    radial-gradient(circle at 70% 22%, rgba(180,190,250,0.13) 0, transparent 47%),
    radial-gradient(circle at 40% 100%, rgba(247,255,252,0.08) 0, transparent 60%),
    linear-gradient(125deg, rgba(39,32,88,0.45) 70%, rgba(251,220,77,0.07) 100%);
  backdrop-filter: blur(0.5px);
}

/* GLOSSY / GLASS EFFECT CARDS */
.card, .team-member, .testimonial, .product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--color-glass);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--card-shadow);
  border: var(--card-border);
  padding: 0 0 24px 0; /* image container adds its own padding */
  margin-bottom: var(--spacing-card);
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
  min-width: 0;
}
.card:hover, .testimonial:hover, .team-member:hover, .product-card:hover {
  box-shadow: 0 12px 42px -6px rgba(34,34,75,0.09),0 2px 12px 0 rgba(180,170,205,0.03);
  transform: translateY(-4px) scale(1.024);
}
.card-content {
  padding: 15px 18px 0 18px;
  width: 100%;
  text-align: center;
}
.card h3, .testimonial h4, .team-member h4, .product-card h4 {
  color: var(--color-primary-dark);
  font-family: 'Raleway',sans-serif;
  margin-bottom: 7px;
}
.card p, .testimonial p {
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 0;
  font-size: 1.01rem;
}
.image-container, .card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 150px;
  height: 150px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  background: var(--color-background-section);
}
.card-image img,
.image-container img {
  width: 100%;
  height: 100%;
  max-width: 100%%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  border-radius: inherit;
}
@media (min-width: 601px) {
  .card,
  .card-content,
  .card-image,
  .image-container {
    max-width: 100%;
  }
}
@media (max-width: 550px) {
  .card,
  .testimonial,
  .product-card,
  .card-content,
  .card-image,
  .image-container {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

.card .external-link,
.card .read-more-link {
  display: inline-block;
  color: var(--color-accent2);
  font-weight: 700;
  text-decoration: underline;
  text-underline-position: under;
  margin-top: 10px;
  font-size: 1.03rem;
  background: transparent;
  outline: none;
  transition: color var(--transition);
}
.card .external-link:hover, .card .read-more-link:hover {
  color: var(--color-accent);
}
.card .external-link:focus, .card .read-more-link:focus {
  outline: 2px dashed var(--color-accent3);
  outline-offset: 2px;
}

/* --- NEWS SECTION --- */
.news-section {
  background-position: 50% 30%;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 2;
  background-attachment: fixed;
}
.news-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
}
@media (max-width: 900px) {
  .news-cards {
    grid-template-columns: 1fr;
  }
}

/* --- SUCCESS STORIES SECTION (ACCORDIONS) --- */
.success-accordion {
  margin-top: 32px;
  width: 100%;
}
.accordion-item {
  background: var(--color-background-section);
  border-radius: var(--border-radius);
  border: var(--card-border);
  margin-bottom: 18px;
  transition: box-shadow var(--transition);
  box-shadow: 0 4px 12px -4px rgba(70,70,120,0.07);
}
.accordion-item:last-child { margin-bottom: 0; }
.accordion-title {
  width: 100%;
  text-align: left;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  padding: 20px;
  font-family: 'Raleway',sans-serif;
  font-size: 1.13rem;
  cursor: pointer;
  outline: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  position: relative;
  transition: background var(--transition),color var(--transition);
}
.accordion-title::after {
  content: '+';
  float: right;
  font-size: 1.2em;
  transition: transform var(--transition);
}
.accordion-item.active .accordion-title {
  background: var(--color-primary-light);
  color: #fff;
}
.accordion-item.active .accordion-title::after {
  content: '−';
  transform: rotate(90deg);
}
.accordion-content {
  display: none;
  padding: 23px 28px;
  animation: fadeInAccordion 0.25s ease-in;
}
.accordion-item.active .accordion-content {
  display: block;
}
@keyframes fadeInAccordion {
  from { opacity: 0; transform: translateY(14px);}
  to   { opacity: 1; transform: translateY(0);}
}
.success-accordion .card {
  box-shadow: none;
  border: none;
  background: transparent;
  padding-bottom: 0;
}
.success-accordion .card-content {
  text-align: left;
}
@media (max-width: 700px) {
  .accordion-content { padding: 18px 8px; }
}

/* --- TEAM SECTION --- */
.team-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}
@media (max-width: 900px) {
  .team-cards { grid-template-columns: 1fr; }
}

/* --- WEBINARS SECTION --- */
.webinars-section {
  background-attachment: fixed;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center;
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
}
.webinars-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}
@media (max-width: 900px) {
  .webinars-cards { grid-template-columns: 1fr; }
}

/* --- RESOURCES SECTION (EXTERNAL LINKS) --- */
.resources-section {
  background: var(--color-primary);
  color: #fff;
  background-attachment: fixed;
}
.resources-section ul {
  margin: 0 auto;
  padding: 0;
  list-style-type: none;
  max-width: 700px;
}
.resources-section li {
  margin-bottom: 11px;
  font-size: 1.09rem;
  display: flex;
  align-items: center;
}
.resources-section a {
  color: var(--color-accent);
  font-weight: bold;
  text-decoration: underline;
  font-size: 1.10rem;
  transition: color var(--transition);
}
.resources-section a:hover,
.resources-section a:focus {
  color: var(--color-accent3);
}

/* --- CONTACT SECTION --- */
.contact-section {
  background: var(--color-background-section);
  min-height: unset;
}
.contact-form {
  margin: 38px auto 0 auto;
  width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 4px 26px -8px rgba(50,72,180,0.10);
  background: rgba(255,255,255,0.97);
  padding: 44px 36px;
  max-width: 650px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.contact-form label {
  color: var(--color-primary-dark);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
}
.contact-form input[type='text'],
.contact-form input[type='email'],
.contact-form textarea {
  font-family: 'Open Sans',sans-serif;
  width: 100%;
  font-size: 1.08rem;
  padding: 14px 14px;
  border-radius: 8px;
  border: 1.4px solid #b7bde6;
  background: #f2f5fe;
  color: var(--color-primary-dark);
  outline: none;
  margin-top: 1px;
  transition: border-color .16s;
  box-sizing: border-box;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-accent2);
  background: #f2fdfe;
}
.contact-form textarea {
  resize: vertical;
  min-height: 100px;
  max-height: 200px;
}
@media (max-width:700px) {
  .contact-form { padding: 24px 8px; }
}

/* === BUTTONS (GLOBAL STYLES) === */
.btn, button, input[type='submit'] {
  display: inline-block;
  border: none;
  background: var(--color-primary);
  color: #fff;
  font-family: 'Raleway',sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 0.02em;
  border-radius: 9px;
  padding: 13px 38px;
  box-shadow: 0 2px 12px 0 rgba(70,70,120,0.10);
  cursor: pointer;
  text-align: center;
  transition: background var(--transition), box-shadow var(--transition), transform .15s;
  outline: none;
}
.btn--cta {
  background: linear-gradient(98deg, var(--color-primary) 70%, var(--color-accent2) 100%);
  box-shadow: 0 4px 18px 0 rgba(60,100,222,0.13);
  font-family: 'Raleway',sans-serif;
  font-size: 1.12rem;
}
.btn--cta:hover, .btn--cta:focus {
  background: linear-gradient(98deg, var(--color-primary-dark) 56%, var(--color-accent2) 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.033);
}
.btn--register {
  background: var(--color-accent2);
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: 8px;
  padding: 7px 23px;
  font-size: 1.02rem;
  box-shadow: 0 2px 8px 0 rgba(125,218,254,0.11);
}
.btn--register:hover, .btn--register:focus {
  background: var(--color-accent);
  color: var(--color-primary-dark);
}
.btn:active, button:active, input[type='submit']:active { transform: scale(.98); }

@media (max-width: 480px) {
  .btn, button, input[type='submit'] { width: 100%; }
}

/* --- LINKS --- */
a {
  color: var(--color-accent2);
  text-decoration: underline;
  transition: color var(--transition);
}
a:hover, a:focus {
  color: var(--color-accent3);
  outline: none;
}
.read-more-link {
  font-weight: 600;
  color: var(--color-primary-light);
  background: linear-gradient(90deg, #ffd70044 60%, transparent 100%);
  border-radius: 6px;
  padding: 2px 12px;
  transition: color var(--transition),background var(--transition);
  text-decoration: underline;
  text-underline-position: under;
  text-decoration-thickness: 2px;
}
.read-more-link:hover, .read-more-link:focus {
  color: var(--color-accent2);
  background: var(--color-accent3, #e692a767);
}

/* --- FOOTER --- */
.site-footer {
  background: var(--color-background-dark);
  color: #f5f6fa;
  width: 100%;
  padding: 40px 0 30px 0;
  margin-top: 0;
  letter-spacing: 0.01em;
  border-top: 4px solid var(--color-primary-light);
  box-shadow: 0 -2px 18px 0 rgba(23,24,42,0.08);
}
.site-footer a {
  color: var(--color-accent2);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: underline;
  margin-right: 14px;
  text-underline-position: under;
  transition: color var(--transition);
}
.site-footer a:hover, .site-footer a:focus {
  color: var(--color-accent);
  outline: none;
}
.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-nav li {
  margin: 0;
}
.site-footer aside span {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
}
.site-footer aside a {
  background: transparent;
  border-radius: 4px;
  padding: 3px 7px;
  font-size: 1.01rem;
  margin-right: 10px;
}

/* Соцсети (только текст) */
.site-footer aside a[href*="facebook"]    { color: #F7C873; }
.site-footer aside a[href*="twitter"]     { color: #7ddafe; }
.site-footer aside a[href*="instagram"]   { color: #E692A7; }

.site-footer aside a:hover,
.site-footer aside a:focus {
  filter: brightness(1.2);
  background: rgba(255,255,255,0.11);
}

.site-footer aside {
  margin-left: auto;
}
.site-footer {
  font-size: 1.02rem;
}
.site-footer span, .site-footer p {
  color: var(--text-gray);
}
.site-footer .social-icons { display: none !important; } /* icons off */

@media (max-width: 900px) {
  .site-footer div {
    flex-direction: column;
    gap: 18px;
  }
  .footer-nav ul {
    gap: 12px;
    justify-content: center;
  }
  .site-footer aside {
    margin: 18px auto 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .site-footer {
    padding: 26px 0 14px 0;
    font-size: 0.96rem;
  }
  .site-footer aside { flex-wrap: wrap; }
}

/* --- PARALLAX EFFECT & GRADIENT OVERLAY FOR TEXT ON BG IMAGES --- */
.parallax-bg {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-attachment: fixed !important;
  background-blend-mode: overlay;
  position: relative;
}
.parallax-bg::before {
  content:"";
  position: absolute;
  left:0;top:0;width:100%;height:100%;
  z-index: 1;
  background: linear-gradient(135deg, rgba(24,24,40,0.48) 40%, rgba(78,105,202,0.1) 100%);
  pointer-events: none;
}
.parallax-bg > * { position: relative; z-index: 2; }

/* --- PLACEHOLDER: SUCCESS PAGE --- */
.success-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--color-background-section);
  text-align: center;
}
.success-page h2, .success-page p {
  margin-bottom: 1.3em;
}
.success-page .btn {
  margin-top: 2em;
}

/* --- PRIVACY & TERMS PAGE --- */
.legal-page {
  padding-top: 100px !important;
  background: var(--color-background-section);
  min-height: 85vh;
  font-size: 1.12rem;
}
.legal-page h1, .legal-page h2, .legal-page h3 {
  color: var(--color-primary);
}

/* --- GENERAL MEDIA QUERIES ADAPTIVE --- */
@media (max-width: 700px) {
  .news-section, .team-section, .contact-section, .resources-section, .success-section, .webinars-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0; margin-right: 0;
  }
  .section-container, .is-two-thirds {
    padding-left: 4px !important;
    padding-right: 4px !important;
    width: 100%;
  }
}

/* --- TRANSITIONS & MICROINTERACTIONS --- */
input, textarea, select, .card, .btn, button {
  transition: all var(--transition);
}

.card-image img, .image-container img {
  filter: brightness(0.99) contrast(1.07) saturate(1.03);
  transition: filter 0.18s, transform 0.10s;
}
.card:hover .card-image img, .card:hover .image-container img {
  filter: brightness(1.08) contrast(1.14) saturate(1.07);
  transform: scale(1.036);
}

input[type="text"]:hover, input[type="email"]:hover, textarea:hover {
  background: #f2fdfe;
  border-color: var(--color-primary-light);
}

/* --- PARTICLES ANIMATION (minimal for performance) --- */
@keyframes floatParticleLarge {
  0% { transform: translateY(0) scale(1);}
  60% { transform: translateY(-16px) scale(1.06);}
  100% { transform: translateY(0) scale(1);}
}
@keyframes floatParticleSmall {
  0% { transform: translateY(1px) scale(0.97);}
  58% { transform: translateY(-12px) scale(1);}
  100% { transform: translateY(1px) scale(0.97);}
}
.particle {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  opacity: 0.17;
}
.particle-lg {
  width: 120px; height: 120px;
  background: linear-gradient(135deg,#FFD70040 0%,#7DDAFE22 100%);
  animation: floatParticleLarge 7s infinite ease-in-out;
}
.particle-sm {
  width: 36px; height: 36px;
  background: linear-gradient(145deg,#FFD70033 0%,#2a254d33 100%);
  animation: floatParticleSmall 9s infinite ease-in-out;
}

/* --- For demo: Example of particle container in .hero-section --- */
.hero-section .particles-container {
  position: absolute;
  width: 100%; height: 100%;
  left: 0; top: 0;
  pointer-events: none;
  z-index: 1;
}

/* Hide scrollbars for parallax bg on small screens */
@media (max-width: 600px) {
  .parallax-bg, .parallax-bg::before {
    background-attachment: scroll !important;
  }
}

/* --- ACCESSIBILITY & FOCUS OUTLINES --- */
a:focus, button:focus, input:focus, textarea:focus {
  outline: 2px solid var(--color-accent2);
  outline-offset: 2px;
  background: #f3fdff !important;
}

/* --- MISC / UTILS --- */
.hide { display: none !important; }
.center { text-align: center; }
.mt-2  { margin-top: 2em; }
.mb-2  { margin-bottom: 2em; }
.p-2   { padding: 2em; }

::-webkit-input-placeholder { color: #767896; opacity: 1;}
::-moz-placeholder { color: #767896; opacity:1;}
:-ms-input-placeholder { color: #767896; opacity:1;}
::placeholder { color: #969AB8; opacity:1;}

@media print { .site-header, .site-footer, .navbar { display:none !important; } }

html,body{
  overflow-x: hidden;
}
@media (max-width: 768px) {
  header{
    display: flex;
    justify-content: space-between;
    
  }
}