/* style.css - style bazowe i komponenty */

:root {
      --ink: #0f313b;
      --ink-2: #173f4b;
      --muted: #657780;
      --muted-2: #8aa0aa;
      --white: #ffffff;
      --soft: #f5f9fb;
      --soft-2: #e8f1f6;
      --line: rgba(15, 49, 59, .11);
      --accent: #c5d9e4;
      --accent-dark: #86aebb;
      --blue: #c5d9e4;
      --shadow: 0 24px 70px rgba(15, 49, 59, .12);
      --radius: 28px;
      --max: 1200px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: "Manrope", Arial, sans-serif;
      color: var(--ink);
      background: var(--white);
      -webkit-font-smoothing: antialiased;
      text-rendering: geometricPrecision;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      display: block;
      max-width: 100%;
    }

    .container {
      width: min(var(--max), calc(100% - 40px));
      margin-inline: auto;
    }

    .topbar {
      position: fixed;
      inset: 0 0 auto 0;
      z-index: 50;
      background: rgba(255,255,255,.82);
      border-bottom: 1px solid var(--line);
      backdrop-filter: blur(18px);
    }

    .topbar__inner {
      min-height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      font-size: 13px;
      font-weight: 900;
      letter-spacing: .11em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .logo-mark {
      width: 52px;
      height: 52px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 18px;
      background: #ffffff;
      border: 1px solid rgba(15, 49, 59, .12);
      box-shadow: 0 14px 32px rgba(15,49,59,.12);
      overflow: hidden;
    }

    .logo-mark img {
      width: 38px;
      max-width: 100%;
    }

    .brand:hover .logo-mark {
      transform: translateY(-1px);
      box-shadow: 0 18px 38px rgba(15,49,59,.16);
    }

    .brand,
    .logo-mark {
      transition: .24s ease;
    }

    .main-nav {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 6px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(245,247,248,.78);
    }

    .main-nav ul,
    .main-menu {
      display: flex;
      align-items: center;
      gap: 6px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .main-nav li,
    .main-menu li {
      margin: 0;
      padding: 0;
    }

    .main-nav a,
    .main-menu a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 11px 14px;
      border-radius: 999px;
      font-size: 12px;
      line-height: 1;
      font-weight: 800;
      letter-spacing: .04em;
      color: var(--muted);
      transition: .22s ease;
    }

    .main-nav a:hover,
    .main-menu a:hover {
      color: var(--ink);
      background: var(--white);
      box-shadow: 0 8px 22px rgba(13,23,32,.08);
    }

                      /* MENU - hover + aktywna sekcja */

                      .main-nav a:hover,
                      .main-menu a:hover,
                      .mobile-menu a:hover,
                      .mobile-menu__list a:hover,
                      .main-nav li.is-active > a,
                      .main-menu li.is-active > a,
                      .mobile-menu li.is-active > a,
                      .mobile-menu__list li.is-active > a,
                      .main-nav a.is-active,
                      .main-menu a.is-active,
                      .mobile-menu a.is-active,
                      .mobile-menu__list a.is-active,
                      .main-nav li.current-menu-item > a,
                      .main-menu li.current-menu-item > a,
                      .mobile-menu li.current-menu-item > a,
                      .mobile-menu__list li.current-menu-item > a,
                      .main-nav li.current_page_item > a,
                      .main-menu li.current_page_item > a,
                      .mobile-menu li.current_page_item > a,
                      .mobile-menu__list li.current_page_item > a {
                        color: var(--ink);
                        background: var(--accent);
                      }

                      .main-nav li.is-active > a,
                      .main-menu li.is-active > a,
                      .main-nav a.is-active,
                      .main-menu a.is-active {
                        box-shadow: 0 8px 22px rgba(13,23,32,.08);
                      }

    main {
      overflow: hidden;
    }

    .hero {
      position: relative;
      min-height: 940px;
      padding: 146px 0 96px;
      overflow: hidden;

      background:
        radial-gradient(circle at 88% 16%, rgba(197,217,228,.32), transparent 28%),
        linear-gradient(180deg, rgba(255,255,255,.94) 0%, rgba(248,250,251,.97) 100%);
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      height: 860px;
      max-height: 860px;
      overflow: hidden;
      transform: translateY(80px);
    }
    .hero-bg::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: linear-gradient(
        to bottom,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0) calc(100% - 200px),
        rgba(255,255,255,1) 100%
      );
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 86px 32px auto 32px;

      z-index: 2;
      background: linear-gradient(
        90deg,
        transparent,
        rgba(13,23,32,.13),
        transparent
      );
    }

    .hero__grid {
      position: relative;
      z-index: 3;
      display: grid;
      grid-template-columns: 1.03fr .97fr;
      gap: 54px;
      align-items: center;
    }

    .icon {
      width: 46px;
      height: 46px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      border-radius: 16px;
      color: var(--ink);
      background: linear-gradient(135deg, rgba(197,217,228,.55), rgba(255,255,255,.92));
      border: 1px solid rgba(15,49,59,.12);
      box-shadow: 0 12px 30px rgba(15,49,59,.07);
    }

    .icon svg {
      width: 24px;
      height: 24px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .stat .icon {
      width: 36px;
      height: 36px;
      margin-bottom: 12px;
      border-radius: 13px;
      background: #fff;
    }

    .stat .icon svg {
      width: 19px;
      height: 19px;
    }

    .contact-item {
      position: relative;
      padding-left: 48px !important;
    }

    .contact-item .mini-icon {
      position: absolute;
      left: 0;
      top: 18px;
      width: 34px;
      height: 34px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 12px;
      background: rgba(197,217,228,.45);
      border: 1px solid rgba(15,49,59,.10);
      color: var(--ink);
    }

    .mini-icon svg {
      width: 18px;
      height: 18px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 24px;
      padding: 8px 12px 8px 8px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(255,255,255,.76);
      box-shadow: 0 12px 34px rgba(13,23,32,.05);
      color: var(--muted);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .tag:before {
      content: "";
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: inset 0 0 0 7px rgba(13,23,32,.08);
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    h1 {
      max-width: 720px;
      margin-bottom: 28px;
      font-size: clamp(54px, 7.2vw, 106px);
      line-height: .94;
      letter-spacing: -.075em;
      font-weight: 900;
    }

    .text-gradient {
      background: linear-gradient(90deg, var(--ink), #6f8f9b);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .lead {
      max-width: 610px;
      margin-bottom: 36px;
      color: #42545d;;
      font-size: clamp(18px, 1.6vw, 22px);
      line-height: 1.58;
      font-weight: 500;
    }

    .actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 54px;
      padding: 0 23px;
      border-radius: 999px;
      border: 1px solid var(--line);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: .05em;
      transition: .24s ease;
    }

    .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 34px rgba(13,23,32,.12);
    }

    .btn--dark {
      background: var(--ink);
      color: var(--white);
      border-color: var(--ink);
    }

    .btn--accent {
      background: var(--accent);
      color: var(--ink);
      border-color: transparent;
    }

    .btn--light {
      background: var(--white);
      color: var(--ink);
    }

    .hero-visual {
      position: relative;
      min-height: 620px;
    }

    .hero-photo {
      position: absolute;
      inset: 0 0 62px 0;
      border-radius: 36px;
      overflow: hidden;
      background: var(--soft-2);
      box-shadow: var(--shadow);
    }
    .hero-photo::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: linear-gradient(180deg, rgba(13,23,32,.05), rgba(13,23,32,.45));
    }

    .floating-card {
      position: absolute;
      left: -24px;
      bottom: 0;
      width: min(470px, calc(100% - 24px));
      padding: 24px;
      border-radius: 28px;
      background: rgba(255,255,255,.4);
      border: 1px solid rgba(255,255,255,.68);
      backdrop-filter: blur(18px);
      box-shadow: 0 28px 80px rgba(13,23,32,.16);
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }

    .stat {
      padding: 18px 14px;
      border-radius: 20px;
      background: var(--soft);

      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;

      transition:
        transform .24s ease,
        box-shadow .24s ease,
        background .24s ease;
    }

    .stat:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 18px 34px rgba(13,23,32,.10);
      background: #fff;
    }

    .stat strong {
      display: block;
      width: 100%;
      margin-bottom: 4px;
      font-size: 24px;
      line-height: 1;
      letter-spacing: -.04em;
      text-align: center;
    }

    .stat span {
      display: block;
      width: 100%;
      color: var(--muted);
      font-size: 11px;
      line-height: 1.25;
      font-weight: 900;
      letter-spacing: .08em;
      text-align: center;
      text-transform: uppercase;
    }

    section {
      padding: 104px 0;
      background: var(--white);
    }

    .section-alt {
      background: var(--soft);
    }

    .section-head {
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 70px;
      align-items: start;
      margin-bottom: 44px;
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: var(--muted);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .section-kicker:before {
      content: "";
      width: 38px;
      height: 2px;
      border-radius: 99px;
      background: var(--accent-dark);
    }

    h2 {
      max-width: 850px;
      margin-bottom: 20px;
      font-size: clamp(36px, 5vw, 70px);
      line-height: .98;
      letter-spacing: -.065em;
      font-weight: 900;
    }

    .section-text {
      max-width: 760px;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.7;
      font-weight: 500;
    }

    .split {
      display: grid;
      grid-template-columns: .92fr 1.08fr;
      gap: 24px;
      align-items: stretch;
    }

    .panel {
      min-height: 380px;
      padding: 38px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--white);
      box-shadow: 0 16px 44px rgba(13,23,32,.04);
    }

    .panel h3,
    .card h3 {
      margin-bottom: 14px;
      font-size: 28px;
      line-height: 1.08;
      letter-spacing: -.045em;
    }

.panel--boulder {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.panel--boulder .section-text {
  max-width: none;
  margin-bottom: 18px;
}

.boulder-list {
  margin: 0 0 22px;
  padding-left: 22px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  font-weight: 500;
}

.boulder-list li {
  margin-bottom: 8px;
}

.boulder-list li::marker {
  color: var(--accent-dark);
  font-size: 1.1em;
}

    .photo2 {
      min-height: 380px;
      border-radius: var(--radius);
      overflow: hidden;
      background: var(--soft-2);
      box-shadow: 0 16px 44px rgba(13,23,32,.06);
    }
    .cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .card {
      position: relative;
      min-height: 250px;
      padding: 30px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--white);
      overflow: hidden;
      transition: .25s ease;
    }

.card-thumb {
  position: absolute;
  right: -18px;
  top: -18px;
  z-index: 0;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  opacity: 1;
  pointer-events: none;
  transition:
    transform .35s ease,
    opacity .35s ease;
}
.card .icon,
.card h3,
.card p {
  position: relative;
  z-index: 1;
}

    .card:hover {
      transform: translateY(-4px);
      box-shadow: 0 24px 64px rgba(13,23,32,.09);
    }

    .card:hover .card-thumb {
      transform: scale(1.18);
      opacity: .8;
    }

    .card p {
      position: relative;
      margin: 0;
      color: var(--muted);
      line-height: 1.65;
    }

    .join-wrap {
      padding: 0;
margin-top: 60px;
      background: var(--white);
    }

    .join {
      position: relative;
      overflow: hidden;
      padding: 72px;
      border-radius: 42px;
      background:
        radial-gradient(circle at 88% 18%, rgba(197,217,228,.34), transparent 30%),
        linear-gradient(135deg, #0f313b, #1b4d5a);
      color: var(--white);
    }

    .join:before {
      content: "";
      position: absolute;
      right: -160px;
      bottom: -220px;
      width: 560px;
      height: 560px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,.12);
    }

    .join__grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr 370px;
      gap: 50px;
      align-items: center;
    }

    .join h2 {
      color: var(--white);
    }

    .join .section-text {
      color: rgba(255,255,255,.72);
    }

    .join .section-kicker {
      color: rgba(255,255,255,.72);
    }

    .join-box {
      padding: 30px;
      border-radius: 28px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.14);
      backdrop-filter: blur(14px);
      line-height: 1.75;
      color: rgba(255,255,255,.76);
    }

    .join-box strong {
      display: block;
      margin-bottom: 12px;
      color: var(--white);
      font-size: 20px;
      letter-spacing: -.03em;
    }

.partners-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
}

.partners-marquee::before,
.partners-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 120px;
  pointer-events: none;
}

.partners-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--soft), transparent);
}

.partners-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--soft), transparent);
}

.partners-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: partnersScroll 24s linear infinite;
}

.partners-marquee:hover .partners-track {
  animation-play-state: paused;
}

.logo-placeholder {
  width: 120px;
  height: auto;
  display: grid;
  place-items: center;
  flex: 0 0 auto;

    border-radius: 24px;;

  transition:
    transform .24s ease,
    box-shadow .24s ease,
    border-color .24s ease;
}

.logo-placeholder:hover {
  transform: translateY(-3px) scale(1.02);

}

@keyframes partnersScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

    .logo-placeholder {
      min-height: 88px;
      display: grid;
      place-items: center;
      border-radius: 24px;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 410px 1fr;
      gap: 24px;
    }

    .contact-list {
      display: grid;
      gap: 16px;
      margin-top: 28px;
    }

    .contact-item {
      padding: 18px 0 0;
      border-top: 1px solid var(--line);
      color: var(--ink-2);
      font-weight: 700;
    }

    .contact-item span {
      display: block;
      margin-bottom: 7px;
      color: var(--muted);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .11em;
      text-transform: uppercase;
    }

    .map {
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft-2);
}

.map iframe {
  width: 100%;
  height: 430px;
  display: block;
  border: 0;
}

    footer {
      padding: 34px 0;
      border-top: 1px solid var(--line);
      background: var(--white);
      color: var(--muted);
      font-size: 14px;
    }



/* MOBILE MENU */

.mobile-toggle {
  display: none;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  cursor: pointer;
  position: relative;
  z-index: 120;
  transition: .25s ease;
}

.mobile-toggle span {
  position: absolute;
  left: 15px;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
  transition: .25s ease;
}

.mobile-toggle span:nth-child(1) {
  top: 19px;
}

.mobile-toggle span:nth-child(2) {
  top: 26px;
}

.mobile-toggle span:nth-child(3) {
  top: 33px;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 26px;
}

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

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 26px;
}

.mobile-menu {
  position: fixed;
  inset: 79px 0 0 0;
  z-index: 100;

  display: flex;
  flex-direction: column;
  gap: 4px;

  padding: 24px;

  background: rgba(255,255,255,.96);
  backdrop-filter: blur(18px);

  transform: translateY(-16px);
  opacity: 0;
  pointer-events: none;

  transition: .3s ease;
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu ul,
.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-menu li,
.mobile-menu__list li {
  margin: 0;
  padding: 0;
}

.mobile-menu a,
.mobile-menu__list a {
  display: block;
  padding: 18px 20px;
  border-radius: 18px;
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  background: var(--soft);
  transition: .22s ease;
}

.mobile-menu a:hover,
.mobile-menu__list a:hover {
  background: var(--accent);
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }
}

/* SCROLL REVEAL */

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity .8s ease,
    transform .8s cubic-bezier(.2,.8,.2,1);
  will-change: opacity, transform;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-46px);
  transition:
    opacity .85s ease,
    transform .85s cubic-bezier(.2,.8,.2,1);
  will-change: opacity, transform;
}

.reveal-right {
  opacity: 0;
  transform: translateX(46px);
  transition:
    opacity .85s ease,
    transform .85s cubic-bezier(.2,.8,.2,1);
  will-change: opacity, transform;
}

.reveal.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.reveal-delay-1 {
  transition-delay: .08s;
}

.reveal-delay-2 {
  transition-delay: .16s;
}

.reveal-delay-3 {
  transition-delay: .24s;
}

.stat-number {
  width: 100%;
  margin-bottom: 14px;

  font-size: 42px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.06em;
  text-align: center;

  color: var(--ink);

  transition:
    transform .24s ease,
    color .24s ease;
}

.stat:hover .stat-number {
  transform: scale(1.04);
}

/* =========================================================
   SAFARI / iOS + obrazki jako tło inline
   - zdjęcia layoutowe są tłem z URL-em w HTML
   - bez wymuszania pełnej wysokości na tagach img
   - URL-e zdjęć są w HTML inline: style="background-image: url(...)"
   ========================================================= */

.container {
  width: calc(100% - 40px);
  max-width: var(--max);
}

.topbar,
.floating-card,
.mobile-menu {
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.join-box {
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.text-gradient {
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.bg-photo {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.hero-bg,
.hero-photo,
.photo,
.card-illustration,
.card-thumb {
  overflow: hidden;
  background-color: var(--soft-2);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.hero-bg {
  background-position: center center;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(13,23,32,.05), rgba(13,23,32,.45));
}

.photo {
  background-position: center center;
}

/* Karty członków: duże zdjęcie + małe półkółko z tym samym zdjęciem */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 30px;
  overflow: hidden;
}

.card-illustration {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 1.42 / 1;
  margin: 0 0 24px;
  border-radius: 24px;
  pointer-events: none;
}

.card-thumb {
  position: absolute;
  right: -18px;
  top: -18px;
  z-index: 4;
  display: block;
  width: 110px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 8px solid rgba(255,255,255,.92);
  box-shadow: 0 14px 34px rgba(13,23,32,.12);
  pointer-events: none;
  opacity: 1;
  transition: transform .35s ease, opacity .35s ease;
}

.card .icon,
.card h3,
.card p {
  position: relative;
  z-index: 2;
}

.card .icon {
  margin: 0 0 20px;
}

.card h3 {
  margin: 0 0 14px;
}

.card p {
  margin: 0;
}

.card:hover .card-thumb {
  transform: scale(1.08);
  opacity: .92;
}

.card:hover .card-illustration {
  transform: scale(1.015);
}

.map img {display: none;}

.map {background: url("https://kwzawiercie.pl/wp-content/uploads/2026/06/dolomity.webp") no-repeat center;
          background-size: cover;}

/* Mobile: zdjęcie hero widoczne, licznik na zdjęciu jak na desktopie */


/* WP admin bar fix */
body.admin-bar .topbar {
  top: 32px;
}

body.admin-bar .mobile-menu {
  top: calc(79px + 32px);
}

@media screen and (max-width: 782px) {
  body.admin-bar .topbar {
    top: 46px;
  }

  body.admin-bar .mobile-menu {
    top: calc(79px + 46px);
  }
}

@media screen and (max-width: 560px) {
  body.admin-bar .mobile-menu {
    top: calc(70px + 46px);
  }
}

.join-box--image {
  min-height: 520px;
  padding: 0;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
