/* ═══════════════════════════════════════════════════════════════
   bvg-exact.css — Pixel-exact duplicate of boardroomventuregroup.com
   Font: Ridley Grotesk (hosted locally)
   ═══════════════════════════════════════════════════════════════ */

/* ── ACCESSIBILITY SKIP LINK (visually hidden until focused) ── */
.skip-link {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
  pointer-events: none !important;
}
.skip-link:focus,
.skip-link:focus-visible {
  position: fixed !important;
  top: 16px !important;
  left: 16px !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 16px 24px !important;
  overflow: visible !important;
  clip: auto !important;
  -webkit-clip-path: none !important;
          clip-path: none !important;
  white-space: normal !important;
  pointer-events: auto !important;
  background: #000 !important;
  color: #f3cf95 !important;
  text-decoration: underline !important;
  font-size: 14px !important;
  letter-spacing: 0.1em !important;
  z-index: 1000000 !important;
  border: 2px solid #f3cf95 !important;
  border-radius: 4px !important;
  outline: none !important;
}

/* ── FONTS ── */
@font-face {
  font-family: 'Ridley Grotesk';
  src: url('../fonts/RidleyGrotesk-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Ridley Grotesk';
  src: url('../fonts/RidleyGrotesk-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Ridley Grotesk';
  src: url('../fonts/RidleyGrotesk-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Ridley Grotesk';
  src: url('../fonts/RidleyGrotesk-SemiBoldItalic.woff2') format('woff2');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Ridley Grotesk';
  src: url('../fonts/RidleyGrotesk-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Ridley Grotesk';
  src: url('../fonts/RidleyGrotesk-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Ridley Grotesk';
  src: url('../fonts/RidleyGrotesk-ExtraBoldItalic.woff2') format('woff2');
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}

/* ── RESET ── */
*, *:before, *:after { box-sizing: border-box; }

.bvg-exact-page {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  padding: 0;
  background: #fff;
  color: #000000;
  text-align: center;
  font-family: 'Ridley Grotesk', sans-serif;
  font-weight: normal;
  zoom: 0.83;
}

.bvg-exact-page * { margin: 0; padding: 0; }

.bvg-exact-page li { list-style: none; }
.bvg-exact-page img { border: none; max-width: 100%; }
.bvg-exact-page a { outline: none; color: inherit; text-decoration: none; }

/* ── LAYOUT ── */
.bvg-row {
  float: left;
  width: 100%;
  position: relative;
}

.bvg-row-inner {
  margin: 0 auto;
  padding: 0;
  position: relative;
  width: 100%;
  max-width: 1256px;
}

.bvg-container-1170 {
  max-width: 1170px;
}

.bvg-col-full {
  float: left;
  width: 100%;
}

.bvg-text-center { text-align: center; }

/* clearfix */
.bvg-row:after,
.bvg-row-inner:after,
.bvg-col-full:after,
.founding-members:after { content: ''; display: table; clear: both; }

/* ═══════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════ */
.bvg-row-hero {
  background-image: url('../images/bvg/blk-bg.jpg');
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  padding: 40px 0 53px;
  text-align: center;
  overflow: visible;
}

.bvg-hero-col {
  text-align: center;
}

.bvg-exact-page .bvg-hero-logo {
  display: block;
  margin: 0 auto !important;
  width: 309px;
  height: auto;
}

/* Gold tagline with icon above/below via background image */
.bnr-txt3 {
  font-size: 36px;
  line-height: 46px;
  color: #f3cf95;
  font-weight: bold;
  font-style: italic;
  margin-top: 15px;
  padding-top: 70px;
  background: url('../images/bvg/bnr-line.webp') no-repeat center top;
  display: block;
}

/* Empty bnr-txt3 just shows the icon below the text */
.bnr-icon-only {
  font-size: 0;
  line-height: 0;
  height: 80px;
  padding-top: 0;
  background-position: center top;
  margin-top: 10px;
}

/* White triangle at bottom of hero */
.pp-row-separator {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 1;
}

.pp-big-triangle {
  display: block;
  width: 100%;
}

/* ═══════════════════════════════════
   ABOUT SECTION (section-seperator)
   ═══════════════════════════════════ */
.bvg-row-about {
  background: #ffffff;
  padding: 20px 0 0;
  margin-bottom: 260px;
  position: relative;
  z-index: 2;
}

/* Vertical gold sec-line connector descending from hero */
.bvg-row-about:before {
  content: '';
  position: absolute;
  background: url('../images/bvg/sec-line.webp') no-repeat center bottom;
  height: 84px;
  left: 50%;
  margin-left: -3px;
  top: -42px;
  width: 6px;
  z-index: 3;
}

.bvg-about-col {
  padding: 0 15px;
  text-align: left;
}

/* Rocket/growth illustration - visible in reference on right of about section */
/* This is a decorative element from the original theme that floats right */
.bvg-about-col:after {
  content: none;
}

/* ═══════════════════════════════════
   SHARED TEXT STYLES
   ═══════════════════════════════════ */
.comn-para {
  font-size: 22px;
  line-height: 32px;
  color: #333333;
  margin-top: 16px;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
  text-align: left;
}

.comn-para.align {
  text-align: center;
}

.comn-para i, .comn-para em {
  font-weight: 400;
  font-style: italic;
}

.sec-hdng {
  font-size: 52px;
  line-height: 62px;
  color: #000000;
  letter-spacing: 0.5px;
  font-weight: 800;
  text-align: center;
}

.margin-35 { margin-top: 35px; }
.colr-white { color: #fff; }
.auto-style1 { color: #f3cf95; font-weight: bold; text-decoration: underline; }

/* About section image float */
.s1-img2 {
  float: right;
  margin: 30px 40px 0 50px;
}

/* ═══════════════════════════════════
   CRITERIA + MEMBERS SECTION
   ═══════════════════════════════════ */
.bvg-row-criteria {
  background-color: #0a0a0a;
  background-image: url('../images/bvg/picture1.webp'); background-image: image-set(url('../images/bvg/picture1.jpg.webp') type('image/webp'), url('../images/bvg/picture1.webp') type('image/jpeg'));
  background-repeat: no-repeat;
  background-position: center top;
  background-attachment: scroll;
  background-size: cover;
  padding: 20px 0 100px;
  position: relative;
  z-index: 1;
}

.bvg-criteria-col {
  margin-top: -280px;
  padding: 0 15px;
  text-align: left;
}

/* ── CRITERIA BOX ── */
.s2-topBox {
  background: #fff;
  box-shadow: 0 0 9px 1px rgba(0,0,0,0.1);
}

.s2-think-hdng {
  font-size: 30px;
  line-height: 34px;
  font-weight: bold;
  color: #333333;
  background: #f3cf95;
  padding: 20px 10px 18px;
  text-align: center;
}

.thinkBx-mdl {
  padding: 0 20px 30px;
  text-align: left;
}

/* Three-column icons inside criteria box */
.bvg-icons-list {
  margin: 30px 0 0;
  padding: 0;
  text-align: center;
}

.bvg-icons-list li {
  display: inline-block;
  vertical-align: top;
  font-size: 22px;
  line-height: 26px;
  color: #333333;
  padding: 0 65px;
  position: relative;
}

.bvg-icons-list li img {
  display: block;
  margin: 0 auto 5px;
}

.bvg-icons-list li:after {
  position: absolute;
  right: 0;
  top: 20px;
  bottom: 0;
  width: 1px;
  background: #d9d9d9;
  content: "";
}

.bvg-icons-list li:last-child:after { display: none; }

.bvg-icons-list li p {
  text-align: center;
  margin: 0;
  font-size: 22px;
  line-height: 26px;
}

/* ── MEMBERS ── */
.bvg-members-container {
  padding: 35px 15px 35px;
}

.founding-members {
  margin-bottom: 25px;
  position: relative;
}

@media only screen and (min-width: 768px) {
  .founding-members {
    display: flex;
    align-items: flex-start;
  }
  .founding-members > .member-image {
    margin-right: 20px;
    min-width: 27%;
  }
}

.member-image h3,
.founding-members .uabb-post-heading {
  margin-bottom: 20px;
  margin-top: 10px;
  font-size: 22px;
  font-weight: 600;
  font-style: italic;
  color: #f3cf95;
  letter-spacing: 3px;
  text-align: center;
}

.founding-members img {
  display: block;
  width: 100%;
  max-width: 300px;
}

.posts-description {
  padding-top: 0;
  padding-left: 15px;
}

.posts-description p {
  font-size: 22px;
  line-height: 32px !important;
  color: #ffffff;
  text-align: left;
  margin-top: 0 !important;
}

/* Members heading — gold against the criteria section bg (which renders light on Cloudflare) */
.bvg-members-container ~ * .sec-hdng.colr-white,
.bvg-row-criteria .sec-hdng.colr-white {
  color: #c9962d;
}

/* ═══════════════════════════════════
   CTA SECTION (white bg)
   ═══════════════════════════════════ */
.bvg-row-cta {
  background: #ffffff;
  padding: 40px 20px 69px;
  text-align: center;
}

.bvg-row-cta .bvg-col-full {
  padding: 0 15px;
}

.auto-style3 {
  font-size: 20px;
  line-height: 28px;
  color: #333333;
  margin-top: 15px;
  display: block;
  text-align: center;
}

/* ── APPLY NOW BUTTON ── */
.btn-box {
  padding: 20px 15px 40px;
  text-align: center;
}

a.packageBtn, .packageBtn {
  display: block;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  height: 75px;
  overflow: hidden;
  color: #333333;
  font-size: 32px;
  line-height: 74px;
  position: relative;
  padding-right: 70px;
  font-weight: bold;
  border-radius: 3px;
  background: #f3cf95;
  border: 1px solid #d4b482;
  box-shadow: 0 0 5px 1px rgba(0,0,0,0.1);
  text-decoration: underline;
  font-family: 'Ridley Grotesk', sans-serif;
  cursor: pointer;
}

a.packageBtn:hover {
  background: #e8c07a;
  text-decoration: none;
}

.btn-arw {
  position: absolute;
  right: 0;
  height: 100%;
  width: 75px;
  top: 0;
  border-left: 2px solid #fff;
}

.btn-arw:after {
  content: '';
  position: absolute;
  right: 30px;
  top: 50%;
  margin-top: -12px;
  border-left: 15px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

/* ═══════════════════════════════════
   CLOSING SECTION (dark bg)
   ═══════════════════════════════════ */
.bvg-row-closing {
  background-image: url('../images/bvg/blk-bg.jpg');
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  padding: 30px 15px 60px;
  text-align: center;
}

.bvg-row-closing .sec-hdng {
  color: #ffffff;
  margin-bottom: 30px;
}

/* White inner card */
.s4-portfolio-box {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  max-width: 930px;
  background: #ffffff;
  margin-top: 25px;
  text-align: center;
  position: relative;
}

.s4-portfolio-box-txt1 {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  font-size: 24px;
  line-height: 34px;
  color: #000000;
  padding: 20px 20px 30px;
  letter-spacing: 0.3px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

/* Checkmark bullet list */
.s5-contBox {
  display: inline-block;
  width: 100%;
  background: #fff;
  padding: 40px 40px 20px;
  margin-top: 0;
  text-align: left;
}

.s5-contBox ul {
  float: left;
  width: 100%;
}

.s5-contBox ul li {
  float: left;
  width: 100%;
  text-align: left;
  margin-bottom: 25px;
  font-size: 22px;
  line-height: 32px;
  color: #000000;
  padding-left: 55px;
  padding-top: 2px;
  background: url('../images/bvg/s5-tik.webp') no-repeat left 0;
  background-size: 30px;
}

/* Gold tagline box at bottom of white card */
.s4-portfolio-box-txt2 {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  font-size: 30px;
  line-height: 42px;
  color: #000;
  background: #f3cf95;
  padding: 0 40px 25px;
  font-weight: bold;
  border-top: 1px solid #e0e0e0;
}

.s4-portfolio-box-txt2 img {
  display: block;
  margin: -25px auto 10px;
  width: 50px;
  height: 50px;
  padding: 7px;
  background: #fff;
  border-radius: 50%;
}

/* ═══════════════════════════════════
   SECOND CTA (white bg)
   ═══════════════════════════════════ */
.bvg-row-cta2 {
  background: #ffffff;
  padding: 20px 15px 40px;
  text-align: center;
}

/* ═══════════════════════════════════
   FOOTER
   ═══════════════════════════════════ */
.bvg-footer-links-row {
  display: block;
  clear: both;
  background: #d3d3d3;
  padding: 20px;
  text-align: center;
}

.bvg-footer-links-inner {
  font-size: 16px;
  color: #555;
}

.bvg-footer-links-inner a {
  color: #555555;
  font-size: 16px;
  text-decoration: none;
  margin: 0 8px;
}

.bvg-footer-links-inner span {
  color: #888;
  margin: 0 4px;
}

.bvg-footer-links-inner a:hover {
  color: #333;
  text-decoration: underline;
}

.bvg-footer-copy-row {
  display: block;
  background: #b8b8b8;
  padding: 20px;
  text-align: center;
}

.bvg-footer-copy-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  color: #555555;
  font-style: italic;
}

.bvg-footer-logo {
  height: 36px;
  width: auto;
}

/* ═══════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════ */
@media (max-width: 1024px) {
  .bvg-row-inner {
    padding: 0 20px;
  }
  .sec-hdng {
    font-size: 38px;
    line-height: 48px;
  }
  .bnr-txt3 {
    font-size: 28px;
    padding-top: 60px;
  }
  .bvg-icons-list li {
    padding: 0 35px;
  }
}

@media (max-width: 768px) {
  .bvg-row-hero { padding: 30px 20px 60px; }
  .bvg-hero-logo { width: 220px; }
  .bnr-txt3 { font-size: 22px; line-height: 32px; padding-top: 50px; }
  .sec-hdng { font-size: 30px; line-height: 38px; }
  .comn-para { font-size: 18px; line-height: 28px; }
  .s1-img2 { float: none; display: block; margin: 20px auto; width: 100%; max-width: 285px; }
  .bvg-icons-list li { display: block; padding: 10px 0; }
  .bvg-icons-list li:after { display: none; }
  .bvg-row-about { margin-bottom: 40px; }
  .bvg-criteria-col { margin-top: 0; }
  .posts-description { padding-left: 0; padding-top: 15px; }
  .s5-contBox { padding: 20px 15px 10px; }
  .s5-contBox ul li { font-size: 18px; line-height: 27px; background-size: 25px; padding-left: 40px; }
  a.packageBtn, .packageBtn { font-size: 22px; height: 60px; line-height: 58px; }
}
