.hero-jack{
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  background: #0b1220;
}

.hero-jack picture,
.hero-jack__bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-jack__bg{
  object-fit: cover;
  object-position: center;
  z-index: -3;
  transform: scale(1.05);
  animation: heroJackZoom 14s ease-in-out infinite alternate;
}

.hero-jack__overlay{
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(7,12,24,.30) 0%, rgba(7,12,24,.45) 35%, rgba(7,12,24,.78) 100%),
    linear-gradient(90deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.12) 45%, rgba(0,0,0,.45) 100%);
}

.hero-jack::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,122,0,.18), transparent 35%),
    radial-gradient(circle at 80% 20%, rgba(0,180,140,.16), transparent 30%);
}

.hero-jack__content{
  width: min(1200px, 92%);
  margin: 0 auto;
  text-align: center;
  color: #fff;
  padding: 120px 20px 90px;
}

.hero-jack__kicker{
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}

.hero-jack__title{
  margin: 0 auto 18px;
  max-width: 950px;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 1.05;
  font-weight: 800;
  text-shadow: 0 10px 35px rgba(0,0,0,.40);
}

.hero-jack__title span{
  color: #ffb24d;
}

.hero-jack__text{
  max-width: 760px;
  margin: 0 auto 24px;
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.8;
  color: rgba(255,255,255,.90);
  text-shadow: 0 4px 18px rgba(0,0,0,.30);
}

.hero-jack__badges{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-jack__badges span{
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

.hero-jack__actions{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.hero-jack__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 15px 26px;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: .3s ease;
}

.hero-jack__btn--primary{
  background: linear-gradient(135deg, #ff7a00, #ff5400);
  color: #fff;
  box-shadow: 0 18px 35px rgba(255,122,0,.30);
}

.hero-jack__btn--primary:hover{
  transform: translateY(-3px);
  box-shadow: 0 24px 40px rgba(255,122,0,.38);
  color: #fff;
}

.hero-jack__btn--ghost{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.20);
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-jack__btn--ghost:hover{
  transform: translateY(-3px);
  background: rgba(255,255,255,.16);
  color: #fff;
}

@keyframes heroJackZoom{
  from{ transform: scale(1.03); }
  to{ transform: scale(1.10); }
}

@media (max-width: 768px){
  .hero-jack{
    min-height: 78vh;
  }

  .hero-jack__content{
    padding: 110px 16px 70px;
  }

  .hero-jack__badges{
    gap: 10px;
  }

  .hero-jack__badges span{
    font-size: 12px;
    padding: 9px 14px;
  }

  .hero-jack__actions{
    flex-direction: column;
    align-items: center;
  }

  .hero-jack__btn{
    width: 100%;
    max-width: 320px;
  }
}

.crx-activities-section{
  padding: 40px 0 90px;
  background:
    radial-gradient(circle at top left, rgba(0, 180, 140, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 122, 0, 0.08), transparent 30%),
    #f7fafc;
}

.crx-section-head{
  max-width: 860px;
  margin: 0 auto 42px;
}

.crx-section-kicker{
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(0, 128, 96, 0.10);
  color: #0f5132;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.crx-section-title{
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
}

.crx-section-subtitle{
  font-size: 1rem;
  line-height: 1.8;
  color: #64748b;
  margin: 0 auto;
}

.crx-tour-card{
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.06);
  transition: all .35s ease;
}

.crx-tour-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 28px 55px rgba(15, 23, 42, 0.14);
}

.crx-tour-media{
  position: relative;
  height: 260px;
  margin: 0;
  overflow: hidden;
}

.crx-tour-media a{
  display: block;
  width: 100%;
  height: 100%;
}

.crx-tour-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.crx-tour-card:hover .crx-tour-media img{
  transform: scale(1.08);
}

.crx-tour-media::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55), transparent 60%);
  pointer-events: none;
}

.crx-read-more{
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.15);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.crx-tour-badge{
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  letter-spacing: .4px;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(0,0,0,.16);
}

.crx-badge-land{ background: linear-gradient(135deg,#16a34a,#15803d); }
.crx-badge-nature{ background: linear-gradient(135deg,#65a30d,#4d7c0f); }
.crx-badge-adventure{ background: linear-gradient(135deg,#ea580c,#c2410c); }
.crx-badge-wildlife{ background: linear-gradient(135deg,#0891b2,#0e7490); }
.crx-badge-ocean{ background: linear-gradient(135deg,#0284c7,#0369a1); }
.crx-badge-water{ background: linear-gradient(135deg,#0ea5e9,#2563eb); }
.crx-badge-fishing{ background: linear-gradient(135deg,#1d4ed8,#1e40af); }

.crx-tour-body{
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 22px 18px;
}

.crx-tour-top{
  flex: 1;
}

.crx-tour-top h3{
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

.crx-tour-top p{
  color: #64748b;
  line-height: 1.75;
  font-size: 14px;
  margin-bottom: 16px;
}

.crx-tour-price{
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid rgba(15,23,42,.06);
  color: #0f172a;
  font-size: 14px;
  font-weight: 700;
}

.crx-tour-actions{
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.crx-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  transition: .3s ease;
}

.crx-btn-outline{
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.10);
  color: #0f172a;
  background: #fff;
}

.crx-btn-outline:hover{
  background: #0f172a;
  color: #fff;
}

.crx-paypal-box{
  margin-top: auto;
  padding-top: 6px;
}

.crx-tour-footer{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  background: #fcfdff;
}

.crx-tour-footer span{
  font-size: 13px;
  font-weight: 800;
  color: #334155;
  text-transform: uppercase;
  letter-spacing: .6px;
}

.crx-tour-footer i{
  margin-right: 6px;
  color: #16a34a;
}

@media (max-width: 991px){
  .crx-tour-media{
    height: 240px;
  }
}

@media (max-width: 767px){
  .crx-activities-section{
    padding: 28px 0 70px;
  }

  .crx-tour-media{
    height: 230px;
  }

  .crx-tour-body{
    padding: 18px;
  }

  .crx-section-head{
    margin-bottom: 30px;
  }
}

/*secciondetopurs*/
    :root{
      --bg:#f5f8fc;
      --card:#ffffff;
      --ink:#0f172a;
      --muted:#64748b;
      --line:rgba(15,23,42,.08);
      --shadow:0 18px 45px rgba(15,23,42,.10);
      --shadow-lg:0 24px 65px rgba(15,23,42,.16);
      --green:#1f8a4d;
      --green-dark:#13663a;
      --orange:#f97316;
      --orange-dark:#ea580c;
      --blue:#0ea5e9;
      --blue-soft:rgba(14,165,233,.10);
      --radius:24px;
    }

    *{
      margin:0;
      padding:0;
      box-sizing:border-box;
    }

    html,body{
      overflow-x:hidden;
    }

    body{
      font-family:'Poppins',sans-serif;
      background:
        radial-gradient(circle at top left, rgba(31,138,77,.08), transparent 30%),
        radial-gradient(circle at top right, rgba(249,115,22,.08), transparent 28%),
        var(--bg);
      color:var(--ink);
      line-height:1.65;
    }

    img{
      max-width:100%;
      display:block;
    }

    a{
      text-decoration:none;
    }

    .container{
      width:min(1180px, calc(100% - 32px));
      margin:auto;
    }

    /* HEADER */
    .ja-header{
      position:sticky;
      top:0;
      z-index:1000;
      background:rgba(255,255,255,.88);
      backdrop-filter:blur(14px);
      -webkit-backdrop-filter:blur(14px);
      border-bottom:1px solid rgba(15,23,42,.06);
    }

    .ja-nav{
      min-height:78px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
    }

    .ja-logo{
      display:flex;
      align-items:center;
      gap:12px;
      color:var(--ink);
      font-weight:800;
      font-size:1rem;
    }

    .ja-logo img{
      width:52px;
      height:52px;
      object-fit:contain;
      border-radius:50%;
      background:#fff;
      box-shadow:0 10px 24px rgba(0,0,0,.08);
    }

    .ja-menu{
      display:flex;
      align-items:center;
      gap:14px;
      flex-wrap:wrap;
    }

    .ja-link{
      color:#334155;
      font-weight:700;
      font-size:14px;
      padding:10px 14px;
      border-radius:999px;
      transition:.25s ease;
    }

    .ja-link:hover{
      background:rgba(15,23,42,.05);
      color:var(--ink);
    }

    .ja-btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:13px 20px;
      border-radius:16px;
      font-weight:800;
      transition:.25s ease;
      border:none;
      cursor:pointer;
    }

    .ja-btn-primary{
      color:#fff;
      background:linear-gradient(135deg,var(--orange),var(--orange-dark));
      box-shadow:0 16px 30px rgba(249,115,22,.25);
    }

    .ja-btn-primary:hover{
      transform:translateY(-2px);
      box-shadow:0 20px 34px rgba(249,115,22,.30);
      color:#fff;
    }

    /* HERO */
    .ja-hero{
      padding:30px 0 20px;
    }

    .ja-hero-card{
      position:relative;
      overflow:hidden;
      min-height:520px;
      border-radius:32px;
      background:
        linear-gradient(120deg, rgba(15,23,42,.78), rgba(15,23,42,.45)),
        url('atv-tours/at2.jpeg') center/cover no-repeat;
      box-shadow:var(--shadow-lg);
      display:flex;
      align-items:flex-end;
    }

    .ja-hero-card::after{
      content:"";
      position:absolute;
      inset:0;
      background:
        radial-gradient(circle at 20% 20%, rgba(14,165,233,.18), transparent 28%),
        radial-gradient(circle at 80% 30%, rgba(249,115,22,.14), transparent 24%);
      pointer-events:none;
    }

    .ja-hero-content{
      position:relative;
      z-index:2;
      width:100%;
      padding:34px;
      display:grid;
      grid-template-columns:1.2fr .8fr;
      gap:24px;
      align-items:end;
    }

    .ja-pill{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:9px 15px;
      border-radius:999px;
      background:rgba(255,255,255,.14);
      color:#fff;
      border:1px solid rgba(255,255,255,.16);
      backdrop-filter:blur(8px);
      -webkit-backdrop-filter:blur(8px);
      font-size:12px;
      font-weight:800;
      letter-spacing:.4px;
      text-transform:uppercase;
      margin-bottom:14px;
    }

    .ja-hero h1{
      font-size:clamp(2rem, 4vw, 3.35rem);
      line-height:1.06;
      color:#fff;
      font-weight:900;
      margin-bottom:14px;
      text-shadow:0 10px 30px rgba(0,0,0,.30);
    }

    .ja-hero p{
      color:rgba(255,255,255,.92);
      font-size:1rem;
      max-width:720px;
      margin-bottom:18px;
    }

    .ja-hero-features{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }

    .ja-chip{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:10px 14px;
      border-radius:999px;
      background:rgba(255,255,255,.12);
      color:#fff;
      border:1px solid rgba(255,255,255,.16);
      font-size:13px;
      font-weight:700;
      backdrop-filter:blur(8px);
      -webkit-backdrop-filter:blur(8px);
    }

    .ja-price-box{
      background:rgba(255,255,255,.14);
      border:1px solid rgba(255,255,255,.18);
      border-radius:24px;
      padding:22px;
      color:#fff;
      backdrop-filter:blur(10px);
      -webkit-backdrop-filter:blur(10px);
      box-shadow:0 18px 32px rgba(0,0,0,.18);
    }

    .ja-price-kicker{
      font-size:12px;
      text-transform:uppercase;
      letter-spacing:1px;
      font-weight:800;
      opacity:.9;
      margin-bottom:6px;
    }

    .ja-price-main{
      font-size:2.4rem;
      font-weight:900;
      line-height:1;
      margin-bottom:8px;
    }

    .ja-price-desc{
      font-size:14px;
      color:rgba(255,255,255,.92);
      margin-bottom:16px;
    }

    .ja-price-list{
      list-style:none;
      display:grid;
      gap:10px;
      margin-bottom:18px;
    }

    .ja-price-list li{
      display:flex;
      justify-content:space-between;
      gap:16px;
      font-size:14px;
      font-weight:700;
      border-bottom:1px dashed rgba(255,255,255,.18);
      padding-bottom:8px;
    }

    .ja-book-hero{
      width:100%;
      justify-content:center;
      background:#fff;
      color:var(--orange-dark);
      box-shadow:0 16px 28px rgba(0,0,0,.14);
    }

    .ja-book-hero:hover{
      transform:translateY(-2px);
      color:var(--orange-dark);
    }

    /* MAIN */
    .ja-main{
      padding:30px 0 80px;
    }

    .ja-grid{
      display:grid;
      grid-template-columns:1.45fr .85fr;
      gap:24px;
      align-items:start;
    }

    .ja-card{
      background:var(--card);
      border:1px solid var(--line);
      border-radius:var(--radius);
      padding:24px;
      box-shadow:var(--shadow);
    }

    .ja-card + .ja-card{
      margin-top:18px;
    }

    .ja-section-title{
      display:flex;
      align-items:center;
      gap:12px;
      font-size:1.2rem;
      font-weight:900;
      margin-bottom:14px;
      color:var(--ink);
    }

    .ja-section-title i{
      width:42px;
      height:42px;
      border-radius:14px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      background:linear-gradient(135deg, rgba(31,138,77,.12), rgba(14,165,233,.10));
      color:var(--green-dark);
      font-size:1.1rem;
      box-shadow:0 10px 20px rgba(31,138,77,.08);
    }

    .ja-text{
      color:var(--muted);
      font-size:15px;
      line-height:1.85;
    }

    .ja-detail-grid{
      display:grid;
      grid-template-columns:repeat(2, 1fr);
      gap:14px;
      margin-top:16px;
    }

    .ja-detail{
      background:linear-gradient(180deg,#ffffff,#f8fbff);
      border:1px solid rgba(15,23,42,.06);
      border-radius:18px;
      padding:18px;
      box-shadow:0 10px 20px rgba(15,23,42,.04);
    }

    .ja-detail h4{
      font-size:15px;
      font-weight:800;
      color:var(--ink);
      margin-bottom:6px;
    }

    .ja-detail p{
      color:var(--muted);
      font-size:14px;
      margin:0;
    }

    .ja-route-list,
    .ja-check-list{
      list-style:none;
      display:grid;
      gap:12px;
      margin-top:16px;
    }

    .ja-route-list li,
    .ja-check-list li{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:14px 16px;
      border-radius:16px;
      background:linear-gradient(180deg, rgba(14,165,233,.05), rgba(31,138,77,.04));
      border:1px solid rgba(15,23,42,.06);
      color:#334155;
      font-size:14px;
      font-weight:600;
    }

    .ja-route-list i,
    .ja-check-list i{
      color:var(--green);
      font-size:18px;
      margin-top:1px;
      flex:0 0 auto;
    }

    .ja-highlight{
      background:linear-gradient(135deg, rgba(249,115,22,.10), rgba(255,255,255,.80));
      border:1px solid rgba(249,115,22,.14);
    }

    .ja-gallery{
      display:grid;
      grid-template-columns:repeat(12,1fr);
      gap:12px;
      margin-top:16px;
    }

    .ja-gallery-item{
      grid-column:span 4;
      position:relative;
      overflow:hidden;
      border-radius:18px;
      min-height:220px;
      cursor:pointer;
      box-shadow:0 14px 30px rgba(15,23,42,.10);
      background:#0f172a;
    }

    .ja-gallery-item img{
      width:100%;
      height:100%;
      object-fit:cover;
      transition:transform .45s ease;
    }

    .ja-gallery-item:hover img{
      transform:scale(1.08);
    }

    .ja-gallery-item::after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(to top, rgba(0,0,0,.56), transparent 65%);
    }

    .ja-gallery-item span{
      position:absolute;
      left:14px;
      bottom:12px;
      z-index:2;
      color:#fff;
      font-size:13px;
      font-weight:800;
      padding:7px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.14);
      border:1px solid rgba(255,255,255,.16);
      backdrop-filter:blur(8px);
      -webkit-backdrop-filter:blur(8px);
    }

    .ja-side-sticky{
      position:sticky;
      top:96px;
    }

    .ja-side-box{
      background:#fff;
      border:1px solid var(--line);
      border-radius:24px;
      overflow:hidden;
      box-shadow:var(--shadow-lg);
      margin-bottom:18px;
    }

    .ja-side-top{
      padding:22px;
      background:linear-gradient(135deg, rgba(31,138,77,.10), rgba(14,165,233,.08));
      border-bottom:1px solid rgba(15,23,42,.06);
    }

    .ja-side-top h3{
      font-size:1.45rem;
      font-weight:900;
      margin-bottom:8px;
      color:var(--ink);
    }

    .ja-side-top p{
      color:var(--muted);
      font-size:14px;
      margin:0;
    }

    .ja-side-body{
      padding:22px;
    }

    .ja-side-list{
      list-style:none;
      display:grid;
      gap:12px;
      margin-bottom:18px;
    }

    .ja-side-list li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      font-size:14px;
      color:#334155;
      font-weight:600;
    }

    .ja-side-list i{
      color:var(--orange);
      margin-top:2px;
    }

    .ja-btn-block{
      width:100%;
      justify-content:center;
    }

    .ja-btn-secondary{
      background:#fff;
      color:var(--ink);
      border:1px solid rgba(15,23,42,.10);
    }

    .ja-btn-secondary:hover{
      transform:translateY(-2px);
      box-shadow:0 14px 28px rgba(15,23,42,.08);
      color:var(--ink);
    }

    .ja-note{
      margin-top:14px;
      font-size:12px;
      color:var(--muted);
      line-height:1.7;
    }

    .ja-review-box{
      background:linear-gradient(135deg,#0f172a,#1e293b);
      color:#fff;
    }

    .ja-review-box h3{
      color:#fff;
      margin-bottom:10px;
    }

    .ja-review-box p{
      color:rgba(255,255,255,.82);
      font-size:14px;
      margin-bottom:16px;
    }

    .ja-review-actions{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
    }

    .ja-review-actions a{
      flex:1;
      min-width:160px;
    }

    /* LIGHTBOX */
    .ja-lightbox{
      position:fixed;
      inset:0;
      background:rgba(0,0,0,.9);
      display:none;
      align-items:center;
      justify-content:center;
      z-index:9999;
      padding:20px;
    }

    .ja-lightbox.open{
      display:flex;
    }

    .ja-lightbox img{
      max-width:92%;
      max-height:84vh;
      border-radius:18px;
      box-shadow:0 20px 50px rgba(0,0,0,.45);
    }

    .ja-lightbox-close{
      position:absolute;
      top:28px;
      right:34px;
      color:#fff;
      font-size:42px;
      cursor:pointer;
      font-weight:300;
    }

    /* FOOTER */
    .ja-footer{
      background:#0f172a;
      color:rgba(255,255,255,.82);
      text-align:center;
      padding:28px 16px;
      margin-top:40px;
      font-size:14px;
    }

    /* RESPONSIVE */
    @media (max-width: 991px){
      .ja-hero-content,
      .ja-grid{
        grid-template-columns:1fr;
      }

      .ja-price-box{
        max-width:100%;
      }

      .ja-detail-grid{
        grid-template-columns:1fr;
      }

      .ja-gallery-item{
        grid-column:span 6;
      }

      .ja-side-sticky{
        position:relative;
        top:0;
      }
    }

    @media (max-width: 575px){
      .ja-nav{
        flex-direction:column;
        align-items:flex-start;
        padding:14px 0;
      }

      .ja-menu{
        width:100%;
        justify-content:space-between;
      }

      .ja-hero-card{
        min-height:480px;
      }

      .ja-hero-content{
        padding:22px;
      }

      .ja-gallery-item{
        grid-column:span 12;
      }

      .ja-hero h1{
        font-size:2rem;
      }
    }