body > .profile-top {
  margin-top: 0 !important;
}/*
Theme Name: RIWAY Stuttgart
*/

/* ================= ROOT ================= */

:root {
  --blue-dark: #0e1b3d;
  --blue-soft: #1f3c88;
  --text-dark: #1a1a1a;
}

/* ================= BASE ================= */

body {
  margin: 0;
  font-family: 'Oswald', sans-serif;
  color: var(--text-dark);
}

/* ================= HEADER ================= */

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 16px 24px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.header-nav a {
  margin-left: 28px;
  text-decoration: none;
  color: var(--blue-dark);
  font-weight: 400;
  letter-spacing: 0.04em;
}

/* Hamburger */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--blue-dark);
  display: block;
}

/* ================= HERO ================= */

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 120px;
}

/* háttérkép */

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/img/rw.png") center / cover no-repeat;
  opacity: 0.25;
  z-index: -1;
}

/* hero tartalom */

.hero-content {
  max-width: 720px;
  text-align: center;
  transform: translateY(-40px);
}

/* LOGÓ – ALAP (tablet / kisebb desktop) */

.hero-logo {
  display: block;
  width: 100%;
  max-width: 280px;
  margin: 0 auto 28px;
  filter: drop-shadow(0 6px 14px rgba(14,27,61,0.25));
}

/* LOGÓ – NAGY DESKTOP */

@media (min-width: 1024px) {
  .hero-logo {
    max-width: 360px;
  }
}

/* CÍM */

.hero h1 {
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--blue-dark);
}

/* ALCÍM */

.hero-sub {
  max-width: 520px;
  margin: 0 auto 36px;
  font-size: 17px;
  line-height: 1.6;
  opacity: 0.85;
}

/* ================= BUTTON ================= */

.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: var(--blue-dark);
  color: #fff;
  text-decoration: none;
  border-radius: 32px;
  font-size: 15px;
  letter-spacing: 0.05em;
}

/* ================= SECTIONS ================= */

.section {
  max-width: 1200px;
  margin: auto;
  padding: 100px 24px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.highlight-box {
  background: #f4f6fb;
  padding: 40px;
  border-left: 4px solid var(--blue-soft);
}

/* ================= CARDS ================= */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 30px;
}

.card {
  padding: 30px;
  background: white;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform .3s ease, box-shadow .3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* ================= CTA ================= */

.cta {
  background: var(--blue-dark);
  color: white;
  text-align: center;
  padding: 80px 20px;
}

/* ================= ANIMATION ================= */

.fade-up {
  animation: fadeUp .8s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .hero {
    min-height: 85vh;
    padding-top: 70px;
  }

  .hero-content {
    transform: translateY(-90px);
    padding: 0 16px;
  }

  .hero-logo {
    max-width: 180px;
    margin-bottom: 22px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: white;
    display: flex;
    flex-direction: column;
    padding: 120px 40px;
    gap: 28px;
    transition: right 0.3s ease;
  }

  .header-nav.active {
    right: 0;
  }

  .header-nav a {
    margin: 0;
    font-size: 18px;
  }

  .hamburger {
    display: flex;
  }
}

/* Aktív menüpont */
.header-nav a.active {
  color: var(--blue-soft);
  position: relative;
}

.header-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--blue-soft);
}

/* ================= INNER PAGE BACKGROUND ================= */

.inner-page {
  position: relative;
  padding-top: 120px; /* fix header miatt */
}

.inner-page::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("assets/img/rw.png") center / cover no-repeat;
  opacity: 1;              
  z-index: -1;
}

/* ================= TRAINING PLAKÁTOK ================= */

.training-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.training-card {
  text-decoration: none;
  color: inherit;
  background: rgba(255,255,255,0.9);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.training-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.training-card img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.training-cta {
  margin-top: 18px;
  font-size: 14px;
  text-align: center;
  letter-spacing: 0.04em;
  color: var(--blue-dark);
}

.training-cta {
  display: block;
  margin-top: 18px;
  padding: 12px 16px;
  font-size: 14px;
  text-align: center;
  letter-spacing: 0.04em;
  color: #fff;
  background: var(--blue-dark);
  border-radius: 24px;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease;
}

.training-cta:hover {
  background: var(--blue-soft);
  transform: translateY(-2px);
}

/* Training oldal – cím glow */

.inner-page h2 {
  color: var(--blue-soft);
  text-shadow:
    0 0 6px rgba(31, 60, 136, 0.35),
    0 0 14px rgba(31, 60, 136, 0.25);
  letter-spacing: 0.04em;
}

/* Training oldal – cím középre + glow */
.training-page h2 {
  text-align: center;
  color: var(--blue-soft);
  letter-spacing: 0.04em;
  text-shadow:
    0 0 6px rgba(31, 60, 136, 0.35),
    0 0 14px rgba(31, 60, 136, 0.25);
}

/* Csak az "Elérhető trainingek" cím */
.training-title {
  text-align: center;
  color: var(--blue-soft);
  letter-spacing: 0.04em;
  text-shadow:
    0 0 6px rgba(31, 60, 136, 0.35),
    0 0 14px rgba(31, 60, 136, 0.25);
  margin-bottom: 50px;
}

/* ================= FONTOS PAGE ================= */

.fontos-section {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* FŐCÍM – erősebb glow */
.fontos-title {
  font-size: clamp(38px, 6vw, 56px);
  margin-bottom: 24px;
  color: var(--blue-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow:
    0 0 8px rgba(31, 60, 136, 0.45),
    0 0 20px rgba(31, 60, 136, 0.3);
}

/* ALCÍM – kék glow, de finomabb */
.fontos-subtitle {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 18px;
  color: var(--blue-soft);
  text-shadow:
    0 0 4px rgba(31, 60, 136, 0.35),
    0 0 10px rgba(31, 60, 136, 0.2);
  opacity: 0.95;
}

/* LEÍRÁS – még halkabb glow */
.fontos-note {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 50px;
  color: var(--blue-soft);
  text-shadow:
    0 0 3px rgba(31, 60, 136, 0.25);
  opacity: 0.85;
}

/* LOGÓ / PLAKÁT */
.fontos-image img {
  max-width: 700px;
  width: 100%;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 10px 25px rgba(14,27,61,0.25));
}

/* ================= ONLINE PAGE ================= */

.online-section {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* teljes kattintható blokk */
.online-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* plakát */
.online-image img {
  max-width: 700px;
  width: 100%;
  display: block;
  margin: 0 auto 40px;
  filter: drop-shadow(0 12px 30px rgba(14,27,61,0.3));
}

/* glow-os szöveg */
.online-text {
  color: var(--blue-soft);
  text-shadow:
    0 0 6px rgba(31, 60, 136, 0.35),
    0 0 14px rgba(31, 60, 136, 0.25);
}

.online-cta {
  font-size: 22px;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.online-details {
  font-size: 18px;
  line-height: 1.6;
}

/* hover – finom visszajelzés */
.online-link:hover .online-image img {
  transform: scale(1.02);
  transition: transform 0.3s ease;
}

/* ================= CSOPORTJAIM PAGE ================= */

.groups-page::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("assets/img/rw.png") center / cover no-repeat;
  opacity: 1;
  z-index: -1;
}

/* ================= CSOPORTJAIM HEADER ================= */

.groups-header {
  padding: 140px 24px 80px;
}

.groups-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  gap: 40px;
  text-align: center;
}

.gh-image img {
  max-width: 160px;
  width: 100%;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 8px 20px rgba(14,27,61,0.25));
}

.gh-text h1 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 16px;
  color: var(--blue-soft);
  letter-spacing: 0.06em;
  text-shadow:
    0 0 6px rgba(31, 60, 136, 0.35),
    0 0 14px rgba(31, 60, 136, 0.25);
}

.gh-text p {
  font-size: 17px;
  opacity: 0.85;
}

/* MOBIL */
@media (max-width: 768px) {
  .groups-header-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .gh-image img {
    max-width: 140px;
  }
}

/* ================= CSOPORTJAIM FULL STRIP ================= */

.groups-header {
  width: 100%;
  position: relative;
  padding: 140px 0 100px;
  overflow: hidden;
}

/* halvány háttér csak erre a sávra */
.groups-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/img/rw.png") center / cover no-repeat;
  opacity: 0.22;
  z-index: -1;
}

/* belső sáv */
.groups-strip {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  text-align: center;
}

/* képek */
.gh-image img {
  max-width: 180px;
  width: 100%;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 10px 25px rgba(14,27,61,0.3));
}

/* középső szöveg */
.gh-text {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 500;
  color: var(--blue-soft);
  letter-spacing: 0.06em;
  text-shadow:
    0 0 6px rgba(31, 60, 136, 0.35),
    0 0 16px rgba(31, 60, 136, 0.25);
  min-height: 1.3em; /* ne ugorjon írás közben */
}

/* MOBIL */
@media (max-width: 768px) {
  .groups-strip {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .gh-image img {
    max-width: 140px;
  }
}

/* ================= TARTALOMJEGYZÉK CÍM ================= */

.toc-title {
  text-align: center;
  margin: 80px 0 50px;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-soft);
  text-shadow:
    0 0 8px rgba(31, 60, 136, 0.45),
    0 0 20px rgba(31, 60, 136, 0.3);
}

/* ================= TARTALOMJEGYZÉK SÁVOK ================= */

.toc-list {
  max-width: 1000px;
  margin: 0 auto 120px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.toc-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 22px 28px;
  background: rgba(255,255,255,0.85);
  border-radius: 14px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.toc-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.12);
}

/* logo bal oldalt */
.toc-logo img {
  max-width: 56px;
  width: 100%;
  display: block;
  filter: drop-shadow(0 6px 14px rgba(14,27,61,0.25));
}

/* szöveg */
.toc-text {
  font-size: 18px;
  letter-spacing: 0.06em;
  color: var(--blue-dark);
}

/* MOBIL */
@media (max-width: 768px) {
  .toc-item {
    gap: 18px;
    padding: 18px 20px;
  }

  .toc-text {
    font-size: 16px;
  }
}

/* ================= KAPCSOLAT FORM ================= */

.contact-form {
  max-width: 520px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  border-radius: 10px;
  border: 1px solid rgba(31, 60, 136, 0.25);
  background: rgba(255,255,255,0.9);
  outline: none;
  transition: all 0.25s ease;
}

/* fókusz glow */
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #1f3c88;
  box-shadow:
    0 0 0 2px rgba(31, 60, 136, 0.15),
    0 0 14px rgba(31, 60, 136, 0.25);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* ================= GLOW BUTTON ================= */

.contact-form button {
  margin-top: 10px;
  padding: 14px 0;
  border: none;
  border-radius: 32px;
  background: linear-gradient(135deg, #1f3c88, #0e1b3d);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow:
    0 0 10px rgba(31, 60, 136, 0.4),
    0 0 26px rgba(31, 60, 136, 0.35);
}

/* hover */
.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 14px rgba(31, 60, 136, 0.55),
    0 0 40px rgba(31, 60, 136, 0.45);
}

/* kattintás */
.contact-form button:active {
  transform: translateY(0);
  box-shadow:
    0 0 8px rgba(31, 60, 136, 0.4);
}

/* ================= KAPCSOLAT CÍM KÖZÉPRE ================= */

#kapcsolat > h2 {
  text-align: center;
}

#kapcsolat > h2 {
  text-align: center;
  color: #1f3c88;
  letter-spacing: 0.08em;
  text-shadow:
    0 0 6px rgba(31, 60, 136, 0.35),
    0 0 18px rgba(31, 60, 136, 0.25);
}

/* ================= HERO ALCÍM GLOW ================= */

.hero-sub {
  color: #1f3c88;
  letter-spacing: 0.08em;
  text-shadow:
    0 0 6px rgba(31, 60, 136, 0.35),
    0 0 18px rgba(31, 60, 136, 0.25);
}


/* ================= SECTION CÍM – GLOW KÉK ================= */

.section-title {
  margin-bottom: 22px;
  text-align: left; /* two-col miatt balra jobb, ha mobilon középre vált */
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #1f3c88;
  text-transform: uppercase;
  text-shadow:
    0 0 6px rgba(31, 60, 136, 0.35),
    0 0 18px rgba(31, 60, 136, 0.25);
}

/* mobilon középre */
@media (max-width: 768px) {
  .section-title {
    text-align: center;
  }
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1f3c88;
  text-shadow:
    0 0 6px rgba(31, 60, 136, 0.35),
    0 0 18px rgba(31, 60, 136, 0.25);
}
/* ===== BEMUTATKOZÁS – ALAP ===== */

.section-title {
  text-align: center;
  margin-bottom: 48px;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1f3c88;
  text-shadow:
    0 0 6px rgba(31, 60, 136, 0.35),
    0 0 18px rgba(31, 60, 136, 0.25);
}

.intro-text p {
  margin-bottom: 18px;
}

/* ===== MOBIL OPTIMALIZÁLÁS ===== */

@media (max-width: 768px) {

  .two-col {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .intro-text,
  .highlight-box {
    text-align: center;
  }

  .highlight-box {
    padding: 28px 22px;
  }

  .section-title {
    margin-bottom: 36px;
  }
}

/* csak belépve látható menüpontok */
.auth-only {
  display: none;
}

.auth-only {
  display: none;
}

.guest-only {
  display: inline-block;
}

/* auth állapot */
body.logged-in .auth-only {
  display: inline-block;
}

body.logged-in .guest-only {
  display: none;
}

body.logged-out .auth-only {
  display: none;
}

body.logged-out .guest-only {
  display: inline-block;
}

.site-header {
  background: linear-gradient(135deg, #1f3c88, #0e1b3d);
  box-shadow: 0 4px 20px rgba(14,27,61,0.35);
}

.header-nav a {
  color: #fff;
}

.header-nav a:hover {
  opacity: 0.8;
}

.site-footer {
  background: linear-gradient(135deg, #1f3c88, #0e1b3d);
  padding: 28px 20px;
  color: #fff;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-text {
  font-size: 13px;
  opacity: 0.85;
  margin-bottom: 10px;
}

.footer-links a {
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  opacity: 0.9;
}

.footer-links span {
  margin: 0 8px;
  opacity: 0.6;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px 0;
  background: #fff; /* sötétkék sávon fehér */
  border-radius: 2px;
}

/* ===== MOBILON ===== */
@media (max-width: 768px) {

  .hamburger {
    display: block;
  }

  .header-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1f3c88, #0e1b3d);
    display: none;
    flex-direction: column;
    padding: 20px;
  }

  .header-nav.active {
    display: flex;
  }

  .header-nav a {
    padding: 12px 0;
    color: #fff;
    font-size: 16px;
  }
}
/* ================= HAMBURGER – X ANIMÁCIÓ (STABIL) ================= */

.hamburger span {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
#changePasswordBtn {
  position: relative;
  z-index: 10;
  pointer-events: auto;
}

/* ===== JELSZÓ MEZŐK – SZÉLESSÉG FIX ===== */

.profile-field {
  width: 100%;
  box-sizing: border-box;
}

.profile-field input {
  width: 100%;
  box-sizing: border-box;
}

.profile-field {
  position: relative;
}

.profile-field .toggle-password {
  position: absolute;
  right: 14px;
  top: 38px;
  cursor: pointer;
  font-size: 14px;
  opacity: 0.6;
}

/* ===== LOGIN / REGISTER SIMPLE BARS ===== */

.simple-top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: linear-gradient(135deg, #1f3c88, #0e1b3d);
  z-index: 1000;
}

/* hogy ne csússzon alá a tartalom */
body {
  padding-top: 64px;
}

/* ALSÓ SÁV */
.simple-footer {
  background: linear-gradient(135deg, #1f3c88, #0e1b3d);
  padding: 24px 16px;
  text-align: center;
  color: #fff;
  margin-top: 60px;
}

.simple-footer p {
  margin: 0;
  font-size: 13px;
  opacity: 0.85;
}

.auth-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}
body > .profile-top {
  margin-top: 0 !important;
}
/* ===== EGYSÉGES FELSŐ KÉK SÁV MINDEN OLDALON ===== */
.profile-top,
.simple-top-bar,
.site-top,
.top-bar {
  background: #0e1b3d !important;
}
.toc-link {
text-decoration: none;
color: inherit;
display: inline-block;
}

.toc-link:hover {
text-decoration: underline;
}

.lang-switch {
margin-left: 18px;
cursor: pointer;
color: #fff;
font-size: 14px;
letter-spacing: 0.06em;
opacity: 0.85;
}

.lang-switch:hover {
opacity: 1;
text-decoration: underline;
}

.lang-switch.active {
font-weight: 600;
opacity: 1;
}

/* ================= FACEBOOK VIDEO ================= */

.fb-video-section {
display: flex;
justify-content: center;
margin: 80px 0;
}

.fb-video-section {
position: relative;
z-index: 5;
width: 100%;
min-height: 1px; /* ez fontos mobilon */
}

.fb-video-card {
position: relative;
width: 480px;
max-width: 92vw;
border-radius: 18px;
overflow: hidden;
background: #000;
box-shadow:
0 0 18px rgba(31, 60, 136, 0.45),
0 0 42px rgba(31, 60, 136, 0.35);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fb-video-card:hover {
transform: translateY(-4px);
box-shadow:
0 0 24px rgba(31, 60, 136, 0.65),
0 0 60px rgba(31, 60, 136, 0.5);
}

.fb-video-cover {
width: 100%;
display: block;
}

/* ▶️ PLAY */
.fb-play-button {
position: absolute;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
font-size: 64px;
color: white;
background: rgba(0, 0, 0, 0.35);
transition: background 0.3s ease, transform 0.3s ease;
}

.fb-video-card:hover .fb-play-button {
background: rgba(0, 0, 0, 0.45);
transform: scale(1.05);
}

/* MOBIL */

@media (max-width: 768px) {
.fb-video-section {
margin: 40px 0 60px;
padding: 0 16px;
display: block;
}

.fb-video-card {
margin: 0 auto;
}
}
.hero + .fb-video-section {
margin-top: 40px;
}
