*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Oswald', sans-serif; font-size: 16px; color: #0b0a0a; background: #fbf7f7; line-height: 1.7; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; } :root {
--black:      #0b0a0a;
--gold:       #f6b80d;
--amber:      #f69a10;
--dark-gold:  #b88b2c;
--gold-head:  #b69648;
--mauve:      #7d576d;
--off-white:  #fbf7f7;
--white:      #ffffff;
--text-dark:  #0b0a0a;
--text-mid:   #3a3a3a;
} .container { max-width: 1140px; margin: 0 auto; padding: 0; } h1, h2, h3, h4, h5, h6 {
font-family: 'Oswald', sans-serif;
color: var(--gold-head);
line-height: 1.3;
} .section-label {
font-family: 'Oswald', sans-serif;
font-size: 0.82rem;
font-weight: 700;
letter-spacing: 3px;
text-transform: uppercase;
color: var(--mauve);
display: block;
margin-bottom: 10px;
}
.section-label.center { text-align: center; } .dual-header {
font-family: 'Oswald', sans-serif;
font-size: 2.4rem;
font-weight: 400;
margin-bottom: 20px;
line-height: 1.2;
}
.dual-header.center { text-align: center; }
.gold-text { color: var(--gold); }
.dark-text { color: var(--black); } .section-watermark {
font-family: 'Oswald', sans-serif;
font-size: clamp(3rem, 8vw, 7rem);
font-weight: 700;
color: rgba(182, 150, 72, 0.08);
text-transform: uppercase;
text-align: center;
position: absolute;
width: 100%;
left: 0;
top: 50px;
pointer-events: none;
letter-spacing: 6px;
line-height: 1;
} .btn-gold {
display: inline-block;
background: var(--dark-gold);
color: var(--off-white);
padding: 10px 20px;
font-size: 0.8125rem;
font-weight: 600;
letter-spacing: 2px;
text-transform: uppercase;
border-radius: 3px;
border: none;
cursor: pointer;
transition: background 0.3s;
}
.btn-gold:hover { background: var(--gold); color: var(--black); }
.btn-join {
background: var(--dark-gold);
color: var(--off-white);
padding: 10px 22px;
font-size: 0.8125rem;
font-weight: 600;
letter-spacing: 2px;
text-transform: uppercase;
border-radius: 3px;
border: none;
cursor: pointer;
transition: background 0.3s;
white-space: nowrap;
}
.btn-join:hover { background: var(--gold); color: var(--black); } .site-header {
background: var(--white);
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.header-inner {
display: flex;
align-items: center;
justify-content: space-between;
padding: 14px 40px;
max-width: 1140px;
margin: 0 auto;
}
.logo-img { height: 60px; width: auto; object-fit: contain; }
.main-nav ul {
display: flex;
align-items: center;
gap: 4px;
}
.main-nav ul li a {
font-family: 'Oswald', sans-serif;
font-size: 0.82rem;
font-weight: 600;
letter-spacing: 0.5px;
color: var(--black);
padding: 8px 12px;
transition: color 0.3s;
text-transform: uppercase;
}
.main-nav ul li a:hover,
.main-nav ul li a.active { color: var(--amber); }
.header-right { display: flex; align-items: center; gap: 14px; }
.hamburger {
display: none;
background: none;
border: none;
font-size: 1.4rem;
cursor: pointer;
color: var(--black);
} .hero {
position: relative;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: url(https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=1600&q=80) center/cover no-repeat;
overflow: hidden;
}
.hero-bg-overlay {
position: absolute;
inset: 0;
background: rgba(11, 10, 10, 0.78);
}
.hero-content {
position: relative;
z-index: 1;
width: 100%;
text-align: center;
padding: 60px 0;
}
.hero-watermark {
font-family: 'Oswald', sans-serif;
font-size: clamp(2rem, 6vw, 5.5rem);
font-weight: 700;
color: rgba(246, 184, 13, 0.12);
letter-spacing: 8px;
text-transform: uppercase;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
white-space: nowrap;
pointer-events: none;
width: 100%;
}
.hero-center { position: relative; z-index: 2; }
.hero-tagline {
font-family: 'Oswald', sans-serif;
font-size: clamp(1rem, 2.5vw, 1.35rem);
color: var(--off-white);
max-width: 700px;
margin: 0 auto 28px;
font-weight: 300;
letter-spacing: 0.5px;
}
.hero-line-decor {
width: 280px;
height: 2px;
background: linear-gradient(90deg, transparent, var(--gold), transparent);
margin: 0 auto 32px;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-hero-primary {
background: var(--dark-gold);
color: var(--off-white);
padding: 12px 28px;
font-size: 0.82rem;
font-weight: 700;
letter-spacing: 2px;
text-transform: uppercase;
border-radius: 3px;
border: none;
cursor: pointer;
transition: all 0.3s;
}
.btn-hero-primary:hover { background: var(--gold); color: var(--black); }
.btn-hero-outline {
background: transparent;
color: var(--off-white);
padding: 12px 28px;
font-size: 0.82rem;
font-weight: 700;
letter-spacing: 2px;
text-transform: uppercase;
border-radius: 3px;
border: 2px solid var(--gold);
transition: all 0.3s;
display: inline-block;
}
.btn-hero-outline:hover { background: var(--gold); color: var(--black); } .about-section {
background: var(--off-white);
padding: 90px 0;
}
.about-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: start;
}
.about-left .section-label { color: var(--mauve); }
.about-left .dual-header { margin-bottom: 22px; }
.about-desc {
font-size: 0.95rem;
color: var(--text-mid);
margin-bottom: 28px;
line-height: 1.8;
}
.about-main-img {
width: 100%;
height: 320px;
object-fit: cover;
border-radius: 4px;
margin-bottom: 20px;
}
.mission-box {
background: var(--white);
border-left: 4px solid var(--gold);
padding: 24px 28px;
border-radius: 0 4px 4px 0;
}
.mission-box h3 {
font-size: 1rem;
font-weight: 700;
letter-spacing: 2px;
color: var(--gold-head);
margin-bottom: 12px;
font-family: 'Oswald', sans-serif;
}
.mission-box p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.8; } .services-section {
background: var(--white);
padding: 90px 0;
position: relative;
overflow: hidden;
}
.services-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 0;
position: relative;
z-index: 1;
margin-top: 50px;
}
.service-item {
padding: 36px 28px;
border: 1px solid rgba(182, 150, 72, 0.15);
transition: all 0.3s;
background: var(--white);
}
.service-item:hover {
background: var(--off-white);
border-color: var(--gold);
}
.service-icon {
font-size: 2rem;
color: var(--amber);
margin-bottom: 16px;
}
.service-item h3 {
font-family: 'Oswald', sans-serif;
font-size: 0.9rem;
font-weight: 700;
letter-spacing: 2px;
color: var(--gold-head);
margin-bottom: 12px;
text-transform: uppercase;
}
.service-item p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.8; } .members-section {
background: var(--black);
padding: 90px 0;
position: relative;
overflow: hidden;
}
.members-watermark {
font-family: 'Oswald', sans-serif;
font-size: clamp(2rem, 6vw, 5rem);
font-weight: 700;
color: rgba(246, 184, 13, 0.07);
text-transform: uppercase;
text-align: center;
letter-spacing: 6px;
margin-bottom: 50px;
line-height: 1;
}
.members-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
}
.member-card {
background: #111010;
border: 1px solid rgba(246, 184, 13, 0.15);
border-radius: 4px;
overflow: hidden;
transition: border-color 0.3s;
}
.member-card:hover { border-color: var(--gold); }
.member-photo {
height: 220px;
background-size: cover !important;
background-position: center !important;
}
.member-info {
padding: 18px 20px;
text-align: center;
}
.member-info h4 {
font-family: 'Oswald', sans-serif;
font-size: 1rem;
color: var(--gold);
margin-bottom: 6px;
}
.member-info p { font-size: 0.82rem; color: rgba(251, 247, 247, 0.6); } .news-section {
background: var(--off-white);
padding: 90px 0;
position: relative;
overflow: hidden;
}
.news-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
position: relative;
z-index: 1;
margin-top: 50px;
}
.news-card {
background: var(--white);
border-radius: 4px;
overflow: hidden;
box-shadow: 0 2px 16px rgba(0,0,0,0.06);
transition: transform 0.3s, box-shadow 0.3s;
}
.news-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.news-img { position: relative; height: 200px; overflow: hidden; }
.news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.news-card:hover .news-img img { transform: scale(1.05); }
.news-overlay {
position: absolute;
inset: 0;
background: rgba(182, 150, 72, 0.7);
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
transition: opacity 0.3s;
font-size: 1.8rem;
color: var(--white);
}
.news-card:hover .news-overlay { opacity: 1; }
.news-body { padding: 20px; }
.news-body h3 { font-family: 'Oswald', sans-serif; font-size: 1rem; margin-bottom: 10px; }
.news-body h3 a { color: var(--gold-head); transition: color 0.3s; }
.news-body h3 a:hover { color: var(--amber); }
.news-body p { font-size: 0.85rem; color: var(--text-mid); margin-bottom: 14px; line-height: 1.7; }
.read-more-btn {
display: inline-block;
font-size: 0.78rem;
font-weight: 700;
letter-spacing: 1.5px;
text-transform: uppercase;
color: var(--amber);
border-bottom: 1px solid var(--amber);
padding-bottom: 2px;
transition: color 0.3s;
}
.read-more-btn:hover { color: var(--dark-gold); border-color: var(--dark-gold); }
.load-more-wrap { text-align: center; margin-top: 40px; }
.btn-load-more {
background: transparent;
border: 2px solid var(--dark-gold);
color: var(--dark-gold);
padding: 10px 32px;
font-size: 0.82rem;
font-weight: 700;
letter-spacing: 2px;
text-transform: uppercase;
border-radius: 3px;
cursor: pointer;
transition: all 0.3s;
}
.btn-load-more:hover { background: var(--dark-gold); color: var(--white); } .partners-section {
background: var(--white);
padding: 60px 0;
border-top: 1px solid rgba(182, 150, 72, 0.2);
border-bottom: 1px solid rgba(182, 150, 72, 0.2);
}
.partners-title {
font-family: 'Oswald', sans-serif;
font-size: 1.8rem;
color: var(--gold-head);
text-align: center;
margin-bottom: 36px;
}
.partners-track-wrap {
position: relative;
overflow: hidden;
padding: 0;
}
.partners-track {
display: flex;
gap: 30px;
padding-right: 30px;
align-items: center;
justify-content: flex-start;
flex-wrap: wrap;
}
.partner-logo img {
height: 70px;
width: auto;
object-fit: contain;
filter: grayscale(30%);
transition: filter 0.3s;
}
.partner-logo img:hover { filter: grayscale(0%); }
.carousel-btn {
position: absolute;
top: 50%;
transform: translateY(-50%);
background: var(--off-white);
border: 1px solid rgba(182, 150, 72, 0.3);
width: 36px;
height: 36px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
color: var(--dark-gold);
font-size: 0.85rem;
transition: all 0.3s;
}
.carousel-btn:hover { background: var(--dark-gold); color: var(--white); }
.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; } .cta-section {
position: relative;
min-height: 420px;
display: flex;
align-items: center;
justify-content: center;
background: url(https://images.unsplash.com/photo-1573497019940-1c28c88b4f3e?w=1400&q=80) center/cover no-repeat;
text-align: center;
}
.cta-overlay {
position: absolute;
inset: 0;
background: rgba(11, 10, 10, 0.82);
}
.cta-content {
position: relative;
z-index: 1;
padding: 60px 20px;
max-width: 700px;
}
.cta-content h6 {
font-family: 'Oswald', sans-serif;
font-size: 0.85rem;
font-weight: 600;
letter-spacing: 3px;
text-transform: uppercase;
color: var(--gold);
margin-bottom: 16px;
}
.cta-divider {
width: 60px;
height: 2px;
background: var(--gold);
margin: 0 auto 24px;
}
.cta-content h3 {
font-family: 'Oswald', sans-serif;
font-size: clamp(1.2rem, 2.5vw, 1.7rem);
color: var(--off-white);
font-weight: 400;
margin-bottom: 32px;
line-height: 1.6;
}
.btn-cta {
display: inline-block;
background: var(--dark-gold);
color: var(--off-white);
padding: 12px 36px;
font-size: 0.82rem;
font-weight: 700;
letter-spacing: 3px;
text-transform: uppercase;
border-radius: 3px;
border: none;
cursor: pointer;
transition: all 0.3s;
}
.btn-cta:hover { background: var(--gold); color: var(--black); } .site-footer { background: var(--black); color: var(--off-white); }
.footer-above { padding: 80px 0 50px; }
.footer-above-grid {
display: grid;
grid-template-columns: 2fr 1fr 1fr;
gap: 50px;
}
.footer-logo { height: 70px; width: auto; margin-bottom: 18px; }
.footer-brand p { font-size: 0.88rem; color: rgba(251,247,247,0.65); line-height: 1.8; margin-bottom: 20px; }
.footer-brand h4 {
font-family: 'Oswald', sans-serif;
font-size: 0.82rem;
font-weight: 700;
letter-spacing: 2px;
text-transform: uppercase;
color: var(--gold);
margin-bottom: 14px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
width: 34px;
height: 34px;
background: var(--white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: var(--amber);
font-size: 0.85rem;
transition: all 0.3s;
}
.footer-social a:hover { background: var(--gold); color: var(--black); }
.footer-col h4 {
font-family: 'Oswald', sans-serif;
font-size: 1.1rem;
color: var(--gold);
margin-bottom: 20px;
font-weight: 400;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
font-size: 0.88rem;
color: rgba(251,247,247,0.65);
transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-below {
border-top: 1px solid rgba(255,255,255,0.08);
padding: 20px 0;
}
.footer-below-inner {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 12px;
}
.footer-below-inner p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-social-bottom { display: flex; gap: 10px; }
.footer-social-bottom a {
width: 30px;
height: 30px;
background: var(--white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: var(--amber);
font-size: 0.75rem;
transition: all 0.3s;
}
.footer-social-bottom a:hover { background: var(--gold); color: var(--black); }
.footer {
background: #000;
color: #fff;
font-family: 'Oswald', sans-serif;
}
.footer .container {
max-width: 1140px;
}
.footer-top {
padding: clamp(72px, 8vw, 112px) 0 24px;
}
.footer-top-grid {
display:flex;
display: flex;
align-items: flex-start;
gap: clamp(42px, 5vw, 58px);
justify-content: space-between;
}
.footer-col{
max-width: 300px;
min-width: 230px;
}
.footer-logo-img {
display: block;
width: 200px;
aspect-ratio: 537 / 549;
object-fit: cover;
margin-bottom: clamp(76px, 8vw, 84px);
}
.footer-brand p {
max-width: 430px;
margin: 0 0 80px;
color: #fff;
font-size: clamp(1.08rem, 1.3vw, 1.48rem);
line-height: 1.95;
}
.footer-brand h5,
.footer-col h5 {
margin: 0 0 72px;
color: #fff;
font-family: 'Oswald', sans-serif;
font-size: clamp(1.05rem, 1.35vw, 1.55rem);
font-weight: 800;
line-height: 1.2;
}
.footer-col h5 {
margin-bottom: 22px;
}
.footer-socials {
display: flex;
gap: 13px;
}
.footer-socials a {
width: 48px;
height: 48px;
display: grid;
place-items: center;
background: #fff;
color: #ff9800;
font-size: 0.98rem;
transition: background 0.2s ease, color 0.2s ease;
}
.footer-socials a:hover {
background: #c5962f;
color: #000;
}
.footer-service-list {
color: #fff;
}
.footer-service-list p {
max-width: 460px;
margin: 0;
padding: 26px 0 22px;
border-bottom: 1px solid rgba(255, 255, 255, 0.86);
font-size: clamp(1.08rem, 1.3vw, 1.48rem);
line-height: 1.45;
}
.footer-service-list p:first-child {
padding-top: 10px;
}
.footer-service-list p:last-child {
border-bottom: 0;
}
.footer-subscribe {
padding-top: 74px;
}
.footer-subscribe-btn {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 150px;
min-height: 47px;
padding: 13px 24px;
border-radius: 3px;
background: #c5962f;
color: #fff;
font-size: 0.88rem;
font-weight: 500;
letter-spacing: 0.22em;
line-height: 1;
text-transform: uppercase;
}
.footer-subscribe-btn:hover {
background: #d2a642;
color: #000;
}
.footer-bottom {
min-height: 148px;
border-top: 1px solid rgba(255, 255, 255, 0.28);
}
.footer-bottom-inner {
min-height: 148px;
display: flex;
align-items: center;
}
.footer-bottom-inner p {
margin: 0;
color: rgba(255, 255, 255, 0.58);
font-size: clamp(1rem, 1.25vw, 1.45rem);
line-height: 1.4;
}
@media (max-width: 1050px) {
.footer-top-grid {
grid-template-columns: 1fr 1fr;
row-gap: 56px;
}
.footer-subscribe {
grid-column: 2;
padding-top: 0;
}
}
@media (max-width: 720px) {
.footer-top {
padding-top: 58px;
}
.footer-top-grid {
grid-template-columns: 1fr;
row-gap: 44px;
}
.footer-logo-img {
width: min(100%, 360px);
margin-bottom: 42px;
}
.footer-brand p,
.footer-brand h5 {
margin-bottom: 36px;
}
.footer-subscribe {
grid-column: auto;
}
.footer-bottom,
.footer-bottom-inner {
min-height: 104px;
}
} .modal-overlay {
position: fixed;
inset: 0;
background: rgba(11,10,10,0.85);
z-index: 9000;
display: none;
align-items: center;
justify-content: center;
padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
background: var(--white);
border-radius: 6px;
padding: 40px;
max-width: 500px;
width: 100%;
position: relative;
max-height: 90vh;
overflow-y: auto;
}
.modal-close {
position: absolute;
top: 14px;
right: 18px;
background: none;
border: none;
font-size: 1.6rem;
cursor: pointer;
color: var(--text-mid);
line-height: 1;
}
.modal-box h3 {
font-family: 'Oswald', sans-serif;
font-size: 1.5rem;
color: var(--gold-head);
margin-bottom: 8px;
}
.modal-box > p { font-size: 0.9rem; color: var(--text-mid); margin-bottom: 24px; }
.modal-box input,
.modal-box textarea {
width: 100%;
padding: 11px 14px;
border: 1.5px solid #e0e0e0;
border-radius: 3px;
font-family: 'Oswald', sans-serif;
font-size: 0.9rem;
color: var(--black);
margin-bottom: 14px;
background: #fafafa;
transition: border-color 0.3s;
}
.modal-box input:focus,
.modal-box textarea:focus { outline: none; border-color: var(--amber); background: var(--white); }
.modal-box textarea { resize: vertical; }
.btn-modal-submit {
width: 100%;
background: var(--dark-gold);
color: var(--off-white);
padding: 12px;
font-size: 0.82rem;
font-weight: 700;
letter-spacing: 2px;
text-transform: uppercase;
border-radius: 3px;
border: none;
cursor: pointer;
transition: background 0.3s;
}
.btn-modal-submit:hover { background: var(--gold); color: var(--black); } .toast {
position: fixed;
bottom: 30px;
right: 30px;
background: var(--black);
color: var(--off-white);
padding: 14px 22px;
border-radius: 4px;
font-size: 0.9rem;
display: flex;
align-items: center;
gap: 10px;
border-left: 4px solid var(--gold);
box-shadow: 0 6px 24px rgba(0,0,0,0.3);
transform: translateY(80px);
opacity: 0;
transition: all 0.4s;
z-index: 9999;
}
.toast i { color: var(--gold); }
.toast.show { transform: translateY(0); opacity: 1; }
.scroll-top {
position: fixed;
right: clamp(18px, 2vw, 36px);
bottom: clamp(22px, 3vw, 40px);
z-index: 900;
width: 40px;
height: 40px;
display: grid;
place-items: center;
border: 0;
border-radius: 4px;
background: #0209ba;
color: #bb8002;
font-size: 1rem;
line-height: 1;
cursor: pointer;
opacity: 0;
visibility: hidden;
transform: translateY(14px);
transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, background 0.25s ease;
}
.scroll-top.show {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
.scroll-top:hover,
.scroll-top:focus-visible {
background: #1118d8;
color: #fff;
}
.scroll-top:focus-visible {
outline: 2px solid #b69648;
outline-offset: 3px;
} @media (max-width: 1024px) {
.about-grid { grid-template-columns: 1fr; gap: 40px; }
.footer-above-grid { grid-template-columns: 1fr 1fr; }
.footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
.main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); box-shadow: 0 8px 20px rgba(0,0,0,0.1); z-index: 999; }
.main-nav.open { display: block; }
.main-nav ul { flex-direction: column; padding: 16px 0; gap: 0; }
.main-nav ul li a { display: block; padding: 12px 30px; border-bottom: 1px solid #f0f0f0; }
.hamburger { display: block; }
.header-inner { padding: 14px 20px; }
.services-grid { grid-template-columns: 1fr 1fr; }
.members-grid { grid-template-columns: 1fr 1fr; }
.news-grid { grid-template-columns: 1fr; }
.footer-above-grid { grid-template-columns: 1fr; }
.footer-below-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 540px) {
.services-grid { grid-template-columns: 1fr; }
.members-grid { grid-template-columns: 1fr; }
.dual-header { font-size: 1.8rem; }
.hero-btns { flex-direction: column; align-items: center; }
.modal-box { padding: 24px; }
.scroll-top {
right: 16px;
bottom: 16px;
width: 38px;
height: 38px;
}
} .header {
position: absolute;
top: 0;
left: 0;
right: 0;
z-index: 20;
background: rgba(9, 8, 7, 0.9);
border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.header-wrap {
width: min(100%, 1140px);
min-height: 112px;
margin: 0 auto;
padding: 0 0%;
display: flex;
align-items: center;
justify-content: space-between;
gap: 32px;
}
.logo {
display: flex;
align-items: center;
gap: 10px;
color: var(--white);
min-width: 190px;
}
.logo-icon {
width: 58px;
height: 58px;
flex: 0 0 auto;
}
.logo-text {
display: flex;
flex-direction: column;
line-height: 1;
text-transform: uppercase;
}
.logo-name {
max-width: 150px;
font-family: 'Oswald', sans-serif;
font-size: 1.16rem;
font-weight: 800;
line-height: 0.94;
}
.logo-name::first-line { color: var(--white); }
.logo-tagline {
margin-top: 5px;
color: rgba(255, 255, 255, 0.8);
font-size: 0.32rem;
letter-spacing: 0.3px;
white-space: nowrap;
}
.nav ul {
display: flex;
align-items: center;
justify-content: center;
gap: clamp(20px, 3vw, 52px);
}
.nav-link {
color: var(--white);
font-size: 21px;
font-weight: 400;
text-transform: capitalize;
line-height: 1.2em;
transition: color 0.25s ease;
}
.nav-link:hover,
.nav-link.active { color: var(--gold); }
.header-actions {
display: flex;
align-items: center;
gap: 16px;
}
.header .btn-join {
display: inline-flex;
align-items: center;
justify-content: center;
background: transparent;
border: 2px solid var(--dark-gold);
border-radius: 0;
color: var(--white);
font-family: 'Oswald', sans-serif;
font-size: 15px;
font-weight: 600;
text-transform: uppercase;
line-height: 1em;
letter-spacing: 1px;
padding: 12px 25px;
white-space: nowrap;
cursor: pointer;
appearance: none;
}
.header .btn-join:hover {
background: var(--dark-gold);
color: var(--white);
}
.burger {
display: none;
width: 44px;
height: 44px;
border: 1px solid rgba(255, 255, 255, 0.28);
background: rgba(255, 255, 255, 0.04);
padding: 10px;
}
.burger span {
display: block;
height: 2px;
margin: 5px 0;
background: var(--white);
}
.hero {
min-height: 100vh;
padding-top: 112px;
--hero-watermark-x: 0px;
--hero-watermark-y: 0px;
background:
linear-gradient(90deg, rgba(4, 4, 4, 0.9), rgba(4, 4, 4, 0.63) 48%, rgba(4, 4, 4, 0.86)),
url(https://web.archive.org/web/20250326052803im_/https://womanbusinesscircle.com/wp-content/uploads/2024/12/4.jpg) center/cover no-repeat,
var(--black);
}
.hero-bg {
position: absolute;
inset: 0;
z-index: 0;
}
.hero-bg-img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
opacity: 0.72;
}
.hero-overlay {
position: absolute;
inset: 0;
background:
linear-gradient(90deg, rgba(4, 4, 4, 0.9), rgba(4, 4, 4, 0.63) 48%, rgba(4, 4, 4, 0.86)),
rgba(0, 0, 0, 0.45);
} .hero-body {
position: relative;
z-index: 2;
width: min(100%, 1140px);
margin: 0 auto;
padding: clamp(110px, 20vh, 230px) 0 90px;
text-align: center;
}
.hero-kicker { color: var(--gold-head);
font-size: 1.5rem;
letter-spacing: 1.2px;
font-weight: 400;
line-height: 1.2em;
}
.hero-title {
display: flex;
align-items: center;
justify-content: center;
gap: clamp(18px, 2.6vw, 42px);
margin: 0;
color: var(--white);
font-family: 'Oswald', sans-serif;
font-size: clamp(60px, 95px, 95px);
font-weight: 900;
line-height: 1.2;
letter-spacing: .3px;
text-transform: uppercase;
}
.hero-title-outline {
color: transparent;
-webkit-text-stroke: 3px var(--dark-gold);
text-stroke: 3px var(--dark-gold);
}
.hero-actions {
display: flex;
align-items: center;
justify-content: center;
gap: 24px;
margin-top: clamp(48px, 8vh, 86px);
flex-wrap: wrap;
}
.hero .btn-primary,
.hero .btn-ghost {
min-width: 234px;
padding: 20px 30px;
display: inline-flex;
align-items: center;
justify-content: center;
border-radius: 2px;
font-family: 'Oswald', sans-serif;
font-size: 1rem;
font-weight: 500;
letter-spacing: 1px;
line-height: 1.2em;
text-transform: uppercase;
text-transform: uppercase;
cursor: pointer;
transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.hero .btn-primary {
border: 1px solid transparent;
background: linear-gradient(90deg, #d2a847, #f2a010);
color: var(--white);
}
.hero .btn-ghost {
border: 1px solid var(--dark-gold);
background: rgba(10, 7, 7, 0.52);
color: var(--gold-head);
}
.hero .btn-primary:hover,
.hero .btn-ghost:hover {
transform: translateY(-2px);
}
.hero .btn-ghost:hover {
background: var(--dark-gold);
color: var(--white);
}
.modal-wrap {
position: fixed;
inset: 0;
z-index: 1000;
display: none;
align-items: center;
justify-content: center;
padding: 24px;
background: rgba(8, 7, 7, 0.82);
}
.modal-wrap.open { display: flex; }
body.membership-modal-open { overflow: hidden; }
.modal {
position: relative;
width: min(100%, 1000px);
max-height: 78vh;
overflow: hidden;
background: var(--white);
border-radius: 0;
padding: 0;
box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}
.join-modal {
display: grid;
grid-template-columns: minmax(330px, 0.88fr) minmax(420px, 1fr);
}
.join-modal .modal-close {
position: absolute;
top: 18px;
right: 24px;
z-index: 4;
width: 32px;
height: 32px;
display: grid;
place-items: center;
border: 0;
background: transparent;
color: #222;
font-size: 2rem;
line-height: 1;
cursor: pointer;
}
.join-modal-media {
position: relative;
min-height: 600px;
display: flex;
align-items: center;
overflow: hidden;
background:
linear-gradient(rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.44)),
url(https://wbc.cfdev.in/wp-content/themes/wbc-theme/assets/leader.jpg) center / cover;
filter: grayscale(100%);
}
.join-modal-media-copy {
position: relative;
z-index: 2;
width: 100%;
padding: 38px 28px;
text-align: left;
text-transform: uppercase;
}
.join-modal-media-copy span,
.join-modal-media-copy strong {
display: block;
font-family: 'Oswald', sans-serif;
font-size: clamp(4.4rem, 5.6vw, 5.9rem);
font-weight: 800;
line-height: 1.14;
letter-spacing: 0;
}
.join-modal-media-copy span {
color: #fff;
}
.join-modal-media-copy strong {
color: #b69648;
}
.join-modal-panel {
max-height: 78vh;
overflow-y: auto;
padding: 52px 66px 56px 50px;
background: #fff;
}
.join-modal-panel h3 {
max-width: 420px;
margin: 0 44px 40px 0;
color: #b69648;
font-family: 'Oswald', sans-serif;
font-size: clamp(2rem, 2vw, 2.35rem);
font-weight: 800;
line-height: 1.18;
}
.join-popup-form {
display: grid;
gap: 16px;
}
.join-field-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 18px;
}
.join-popup-form input {
width: 100%;
min-height: 57px;
border: 1px solid #d8dce1;
border-radius: 8px;
background: #fff;
color: #1f2933;
font-family: 'Oswald', sans-serif;
font-size: 1.05rem;
font-weight: 600;
padding: 0 18px;
outline: 0;
}
.join-popup-form input::placeholder {
color: #7b8794;
}
.join-popup-form input:focus {
border-color: #b69648;
box-shadow: 0 0 0 3px rgba(182, 150, 72, 0.16);
}
.join-required {
display: none;
margin: 0 0 -8px;
color: #ff5555;
font-size: 1.15rem;
font-weight: 800;
text-align: center;
}
.join-popup-form button {
width: max-content;
min-width: 133px;
min-height: 52px;
border: 0;
margin-top: 15px;
padding: 12px 29px;
border-radius: 0px;
background: linear-gradient(90deg, #d2a847, #f2a010);
color: #fff;
font-family: 'Oswald', sans-serif;
font-size: 1rem;
font-weight: 800;
letter-spacing: 0.16em;
text-transform: uppercase;
cursor: pointer;
}
.join-popup-form button:hover {
background: #1267d8;
}
.join-popup-form .wpcf7,
.join-popup-form .wpcf7 form {
display: grid;
gap: 16px;
}
.join-popup-form p {
margin: 0;
}
.join-popup-form br {
display: none;
}
.join-popup-form .wpcf7-form-control-wrap {
display: block;
}
.join-popup-form textarea,
.join-popup-form select,
.join-popup-form .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-acceptance) {
width: 100%;
border: 1px solid #d8dce1;
border-radius: 8px;
background: #fff;
color: #1f2933;
font-family: 'Oswald', sans-serif;
font-size: 1.05rem;
font-weight: 600;
padding: 16px 18px;
outline: 0;
}
.join-popup-form textarea {
min-height: 140px;
resize: vertical;
}
.join-popup-form textarea::placeholder,
.join-popup-form select::placeholder,
.join-popup-form .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-acceptance)::placeholder {
color: #7b8794;
}
.join-popup-form textarea:focus,
.join-popup-form select:focus,
.join-popup-form .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-acceptance):focus {
border-color: #b69648;
box-shadow: 0 0 0 3px rgba(182, 150, 72, 0.16);
}
.join-popup-form .wpcf7-submit {
width: max-content;
min-width: 133px;
min-height: 52px;
border: 0;
margin-top: 15px;
padding: 12px 29px;
border-radius: 0;
background: linear-gradient(90deg, #d2a847, #f2a010);
color: #fff;
font-family: 'Oswald', sans-serif;
font-size: 1rem;
font-weight: 800;
letter-spacing: 0.16em;
text-transform: uppercase;
cursor: pointer;
}
.join-popup-form .wpcf7-submit:hover {
background: #1267d8;
}
.join-popup-form .wpcf7-spinner {
margin: 0;
}
.join-popup-form .wpcf7-not-valid-tip {
margin-top: 6px;
font-family: 'Oswald', sans-serif;
font-size: 0.9rem;
}
.join-popup-form .wpcf7-response-output {
margin: 0 !important;
padding: 12px 16px !important;
font-family: 'Oswald', sans-serif;
font-size: 0.95rem;
}
.join-terms {
margin: 22px 0 0;
color: #000000;
font-family: 'Oswald', sans-serif;
font-size: 1rem;
font-weight: 800;
}
@media (max-width: 1140px) {
.header-wrap {
padding: 0 5%;
}
}
@media (max-width: 1180px) {
.header-wrap { padding: 0 5%; gap: 20px; }
.nav ul { gap: 22px; }
.header .btn-join { min-width: 136px; }
}
@media (max-width: 1180px) {
.mission-wrap{
padding: 90px 5% !important;
}
.founder-wrap{
padding: 0px 5% !important;
}
.her-vision-wrap{
padding: 0px 5% !important;
}
.join-journey-content{
padding: 0 5% !important;
}
.about-hero-content{
padding: 0 5% !important;
}
.hero-body{
padding: 0 5% !important;
}
}
@media (max-width: 1100px) {
.header-wrap { min-height: 88px; }
.nav {
display: none;
position: absolute;
top: 88px;
left: 0;
right: 0;
background: rgba(9, 8, 7, 0.97);
padding: 18px 24px 24px;
}
.nav.open { display: block; }
.nav ul { flex-direction: column; gap: 18px; }
.burger { display: block; }
.hero { padding-top: 88px; }
.hero-title { flex-direction: column; gap: 12px; }
.join-modal {
grid-template-columns: 1fr;
width: min(100%, 620px);
}
.join-modal-media {
min-height: 260px;
}
.join-modal-media-copy span,
.join-modal-media-copy strong {
font-size: clamp(3rem, 12vw, 4.7rem);
}
.join-modal-panel {
max-height: calc(86vh - 260px);
padding: 38px 32px 44px;
}
.join-modal-panel h3 {
margin-bottom: 34px;
}
}
@media (max-width: 620px) {
.header-wrap { padding: 0 5%; }
.logo-text { display: none; }
.header-actions { gap: 10px; }
.header .btn-join {
display: inline-flex;
min-width: 0;
padding: 10px 14px;
font-size: 0.82rem;
letter-spacing: 0.08em;
}
.hero::before {
top: 28%;
white-space: normal;
}
.hero-body { padding-inline: 0; }
.hero-kicker {
max-width: 450px;
text-align: left;
margin-bottom: 42px;
}
.hero-title {
font-size: 84px;
line-height: .9;
text-align: left;
align-items: flex-start; letter-spacing: 0.06em;
}
.hero-title-outline {
-webkit-text-stroke-width: 2px;
-text-stroke-width: 2px;
}
.hero .btn-primary,
.hero .btn-ghost {
width: max-content;
min-width: 0;
height: 62px;
font-size: 1.25rem;
}
.hero-actions{
justify-content: flex-start;
}
.modal-wrap {
padding: 12px;
}
.modal {
max-height: 88vh;
}
.join-field-row {
grid-template-columns: 1fr;
}
.join-modal-panel {
padding: 32px 22px 36px;
}
.join-popup-form {
gap: 18px;
}
.join-popup-form button {
width: 100%;
}
} .about {
background: #000;
color: var(--white);
padding: clamp(70px, 9vw, 118px) 0 clamp(90px, 12vw, 100px);
overflow: hidden;
}
.about .container {
max-width: 1140px;
padding: 0;
}
.about-grid {
display: grid;
grid-template-columns: minmax(320px, 0.76fr) minmax(520px, 1.24fr);
gap: 40px;
align-items: start;
}
.about-content {
max-width: 560px;
}
.about-label {
margin-bottom: 20px;
color: var(--gold-head);
font-family: 'Oswald', sans-serif;
font-size: 1rem;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 1px;
}
.about-title {
margin: 0 0 48px;
color: var(--white);
font-family: 'Oswald', sans-serif;
font-weight: 700;
font-size: 3.8rem;
line-height: 1em;
letter-spacing: 6px;
text-transform: uppercase;
}
.about-title span {
display: block;
}
.about-title span:last-child {
color: var(--gold-head);
}
.about-content > p:not(.about-label) {
color: #cac0a7;
max-width: 95%;
letter-spacing: .4px; font-size: 1.2rem;
font-weight: normal;
line-height: 1.5em; margin-bottom: 0;
}
.about-content > p:not(.about-label) + p:not(.about-label) {
margin-top: 0.35em;
}
.about-content .about-mission {
display: block;
}
.about .btn-primary {
min-width: 220px; padding: 20px 30px;
margin-top: 40px;
display: inline-flex;
align-items: center;
justify-content: center;
border: 0;
border-radius: 2px;
background: linear-gradient(90deg, #c7a348, #f0a11a);
color: var(--white);
font-family: "Oswald", Sans-serif;
font-size: 1rem;
font-weight: 500;
text-transform: uppercase;
line-height: 1.2em;
letter-spacing: 1px;
cursor: pointer;
}
.about-visuals {
position: relative;
min-height: 760px;
padding-top: 52px;
}
.about-photo {
width: min(100%, 600px);
height: clamp(360px, 36vw, 475px);
object-fit: cover;
object-position: center;
filter: brightness(0.72);
}
.about-mission-card {
position: absolute;
top: clamp(385px, 35vw, 470px);
right: 0;
width: min(100%, 520px);
min-height: 360px;
padding: clamp(34px, 4vw, 50px) clamp(30px, 3.6vw, 44px);
background: #bfa04a;
color: var(--white);
box-shadow: 0 22px 45px rgba(0, 0, 0, 0.28);
}
.about-mission-card h3 {
margin-bottom: 18px;
color: var(--white);
font-family: 'Oswald', sans-serif;
font-size: clamp(1.45rem, 1.75vw, 1.9rem);
font-weight: 800;
line-height: 1;
letter-spacing: 0.02em;
text-transform: uppercase;
}
.about-mission-card p { font-size: 1.2rem;
font-weight: normal;
line-height: 1.5em;
color: #F1F1F1;
}
@media (max-width: 1080px) {
.about-grid {
grid-template-columns: 1fr;
}
.about-content {
max-width: 720px;
}
.about-visuals {
min-height: auto;
padding-top: 0;
}
.about-photo {
width: 100%;
}
.about-mission-card {
position: relative;
top: auto;
right: auto;
width: min(100%, 680px);
min-height: 0;
margin: -60px 0 0 auto;
}
}
@media (max-width: 620px) {
.about {
padding: 56px 0 76px;
}
.about-title {
font-size: clamp(4.2rem, 18vw, 5.5rem);
}
.about-content > p:not(.about-label) {
text-align: left;
}
.about .btn-primary {
width: 100%;
min-width: 0;
}
.about-mission-card {
width: 100%;
margin-top: 0;
padding: 30px 24px;
}
} .services {
position: relative;
overflow: hidden;
background: #000;
color: var(--white);
--services-watermark-x: 0px;
--services-watermark-y: 0px;
padding: clamp(96px, 13vw, 100px) 0 clamp(80px, 10vw, 120px);
}
.services .container {
position: relative;
z-index: 2;
max-width: 1140px; }
.services-bg-text {
position: absolute;
z-index: 1;
top: 32%;
left: 50%;
width: 100%;
transform: translate(calc(-50% + var(--services-watermark-x)), calc(-50% + var(--services-watermark-y)));
color: rgba(255, 255, 255, 0.08);
font-family: 'Oswald', sans-serif;
font-size: clamp(4.4rem, 9.6vw, 11rem);
font-weight: 800;
line-height: 0.9;
text-align: center;
letter-spacing: 0;
text-transform: uppercase;
white-space: nowrap;
pointer-events: none;
will-change: transform;
}
.services .section-head {
position: relative;
z-index: 2;
margin-bottom: clamp(72px, 8vw, 112px);
text-align: center;
}
.services .label { color: var(--gold-head);
font-family: 'Oswald', sans-serif;
font-size: 1rem;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 1px;
}
.services .section-head h2 {
margin: 0;
color: var(--gold-head);
font-family: 'Oswald', sans-serif;
font-size: 3.8rem;
font-weight: 700;
line-height: 1em; text-transform: uppercase;
}
.services .section-head h2 .c-gold {
color: var(--white);
}
.services .section-desc {
display: none;
}
.services-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 45px 30px;
margin-top: 0;
}
.service-card {
min-height: 270px;
padding: 0;
background: transparent;
border: 0;
text-align: center;
box-shadow: none;
}
.service-card:hover {
background: transparent;
border: 0;
transform: none;
box-shadow: none;
}
.service-card-icon {
height: 82px;
display: flex;
align-items: flex-start;
justify-content: center;
color: var(--gold-head);
font-size: clamp(2.35rem, 3vw, 3.45rem);
}
.service-card h3 {
margin: 0 0 12px;
color: var(--gold-head);
font-family: 'Oswald', sans-serif;
font-size: clamp(2rem, 2.25rem, 3rem); line-height: 1;
letter-spacing: 0;
text-transform: uppercase;
}
.service-card p {
max-width: 430px;
margin: 0 auto; color: #e6e2d7;
font-weight: 400;
font-size: 20px;
line-height: 1.55;
}
.service-card-line {
display: none;
}
.pillars-tabs-block { padding: 120px 0 0;
}
.pillars-tabs {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
align-items: end;
border-bottom: 1px solid rgba(182, 150, 72, 0.35);
}
.pillars-tabs button {
padding: 16px 13px 16px 25px;
border: 0;
text-align: left;
background: transparent;
color: #fff;
font-family: 'Oswald', sans-serif;
font-size: 25px; line-height: 1.2;
cursor: pointer;
transition: background 0.25s ease, color 0.25s ease;
}
.pillars-image {
height: 100%;
}
.pillars-image img{
height: 100%;
}
.pillars-tabs button.active {
background: #a98a55;
color: #fff;
}
.pillars-panel {
display: none;
}
.pillars-panel.active {
display: block;
}
.pillars-content {
display: grid;
grid-template-columns: minmax(320px, 1fr) minmax(420px, 0.88fr);
gap: clamp(52px, 8vw, 120px); padding: clamp(54px, 6vw, 88px) 0 0;
}
.pillars-list {
display: grid;
gap: 0;
}
.pillars-list li {
padding: 18px 0 21px;
border-bottom: 1px solid rgba(182, 150, 72, 0.32);
color: #faedd9; font-size: clamp(1.18rem, 2.1vw, 2rem); line-height: 1.18;
}
.pillars-list li:last-child {
border-bottom: 0;
}
.pillars-image img {
width: 100%; object-fit: cover;
object-position: center;
}
@media (max-width: 980px) {
.services-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.pillars-tabs {
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 1px;
border-bottom: 0;
background: rgba(182, 150, 72, 0.35);
}
.pillars-tabs button {
background: #05070c;
}
.pillars-tabs button.active {
background: #a98a55;
}
.pillars-content {
grid-template-columns: 1fr;
gap: 42px;
}
}
@media (max-width: 620px) {
.services {
padding: 70px 0;
}
.services-bg-text {
top: 28%;
white-space: normal;
}
.services-grid {
grid-template-columns: 1fr;
gap: 54px;
}
.service-card {
min-height: auto;
}
.pillars-tabs-block {
margin-top: 64px;
}
.pillars-tabs {
grid-template-columns: 1fr;
}
.pillars-tabs button {
min-height: 58px;
font-size: 1.05rem;
}
.pillars-content {
padding-top: 38px;
}
.pillars-list li {
padding: 14px 0 16px;
}
} .members {
position: relative;
overflow: hidden;
background: #000;
color: var(--white);
--members-watermark-x: 0px;
--members-watermark-y: 0px;
padding: 0 0 clamp(110px, 14vw, 100px);
}
.members .container {
position: relative;
z-index: 2;
max-width: 1140px; }
.members-bg-text {
position: absolute;
z-index: 1;
top: 42%;
left: 36%;
width: 100%;
transform: translate(calc(-50% + var(--members-watermark-x)), calc(-50% + var(--members-watermark-y)));
color: rgba(255, 255, 255, 0.08);
font-family: 'Oswald', sans-serif;
font-size: clamp(6.5rem, 12vw, 14rem);
font-weight: 800;
line-height: 0.9;
letter-spacing: 0;
text-transform: uppercase;
white-space: nowrap;
pointer-events: none;
will-change: transform;
}
.members-layout {
position: relative;
display: grid;
grid-template-columns:39px 1fr;
gap: clamp(30px, 4vw, 58px);
align-items: center;
}
.members-side-title {
justify-self: end;
align-self: center;
writing-mode: vertical-rl;
transform: rotate(180deg);
text-transform: uppercase;
line-height: 1;
}
.members-side-title span {
color: var(--white);
font-family: 'Oswald', sans-serif;
font-size: clamp(1.9rem, 2.2vw, 2.5rem);
letter-spacing: 0.04em;
}
.members-side-title strong {
color: var(--gold);
font-family: 'Oswald', sans-serif;
font-size: clamp(2rem, 2.35vw, 2.7rem);
font-weight: 400;
letter-spacing: 0.04em;
-webkit-text-stroke: 1px var(--gold);
}
.members-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: clamp(24px, 2.4vw, 42px);
}
.member-card {
position: relative;
min-height: 340px;
overflow: hidden;
background: #111;
border: 0;
border-radius: 0;
box-shadow: none;
opacity: 1;
transition: opacity 0.45s ease, transform 0.45s ease;
}
.member-card.is-changing {
opacity: 0.18;
transform: translateY(10px);
}
.member-img {
width: 100%;
height: 100%;
min-height: inherit;
object-fit: cover;
object-position: center top;
filter: saturate(0.95);
}
.member-card::after {
content: "";
position: absolute;
inset: 44% 0 0;
background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
pointer-events: none;
}
.member-info {
position: absolute;
z-index: 2;
left: 0;
right: 0;
bottom: 0;
padding: 0 28px 22px;
text-align: center;
background: transparent;
}
.member-info h4 {
margin: 0 0 5px;
color: white;
font-family: 'Oswald', sans-serif;
font-size: clamp(1.65rem, 2vw, 2.2rem);
font-weight: 800;
line-height: 1.08;
}
.member-info p {
margin: 0;
color: white;
font-size: clamp(1rem, 1.15vw, 1.25rem);
font-weight: 700;
line-height: 1.25;
}
.member-card:nth-child(3) .member-info h4,
.member-card:nth-child(3) .member-info p {
color: var(--white);
}
@media (max-width: 1080px) {
.members-layout {
grid-template-columns: 1fr;
}
.members-side-title {
justify-self: start;
writing-mode: horizontal-tb;
transform: none;
}
.members-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}
@media (max-width: 700px) {
.members {
padding: 80px 0;
}
.members-bg-text {
top: 28%;
left: 50%;
font-size: clamp(5rem, 25vw, 8rem);
white-space: normal;
}
.members-grid {
grid-template-columns: 1fr;
}
} .news {
position: relative;
overflow: hidden;
background: #000;
color: var(--white);
--news-watermark-x: 0px;
--news-watermark-y: 0px;
padding: 0 0 clamp(86px, 11vw, 100px);
}
.news .container {
position: relative;
z-index: 2;
max-width: 1140px;
padding: 0;
}
.news-bg-text {
position: absolute;
z-index: 1;
top: 22%;
left: 74%;
width: max-content;
transform: translate(calc(-50% + var(--news-watermark-x)), calc(-50% + var(--news-watermark-y)));
color: rgba(255, 255, 255, 0.07);
font-family: 'Oswald', sans-serif;
font-size: clamp(7rem, 18vw, 18rem);
font-weight: 800;
line-height: 0.82;
letter-spacing: 0;
text-transform: uppercase;
white-space: nowrap;
pointer-events: none;
will-change: transform;
}
.upcoming-events {
position: relative;
z-index: 2;
min-height: clamp(520px, 62vw, 760px);
display: grid;
grid-template-rows: auto 1fr;
padding-top: clamp(34px, 4vw, 62px);
}
.upcoming-head {
text-align: center;
}
.upcoming-head .label {
margin-bottom: 32px;
}
.upcoming-head h2 {
margin: 0;
color: var(--white);
font-family: 'Oswald', sans-serif;
font-size: clamp(4.6rem, 7.8vw, 8.2rem);
font-weight: 400;
line-height: 0.9;
letter-spacing: 0.12em;
text-transform: uppercase;
}
.upcoming-head h2 span {
color: var(--gold-head);
}
.upcoming-card {
align-self: start;
width: min(450px, 100%);
min-height: 180px;
margin-top: clamp(58px, 6.5vw, 82px);
margin-left: clamp(0px, 8vw, 180px);
padding: 32px 20px 26px;
background: #151313;
}
.upcoming-card h3 {
margin: 0 0 28px;
color: var(--gold-head);
font-family: 'Oswald', sans-serif;
font-size: clamp(1.65rem, 2.2vw, 2rem);
font-weight: 800;
line-height: 1.22;
}
.upcoming-link {
color: var(--gold);
font-size: 0.85rem;
font-weight: 700;
}
.news .section-head {
position: relative;
z-index: 2;
margin-bottom: clamp(52px, 7vw, 88px);
text-align: center;
}
.news .label {
margin-bottom: 16px;
color: var(--gold-head);
font-family: 'Oswald', sans-serif;
font-size: 1rem;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 1px;
}
.news .section-head h2 {
margin: 0;
color: var(--white);
font-family: "Oswald", Sans-serif !important;
font-size: 3.8rem;
line-height: 1em; text-transform: uppercase;
}
.news .section-head h2 .c-gold {
color: var(--gold-head);
}
.news .section-desc {
display: none;
}
.news .news-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: clamp(22px, 2.5vw, 34px);
position: relative;
z-index: 2;
margin-top: 0;
}
.news .news-card {
overflow: hidden;
background: #131313;
border: 0;
border-radius: 0;
box-shadow: none;
}
.news .news-card:hover {
transform: translateY(-4px);
box-shadow: none;
}
.news .news-img {
height: clamp(210px, 18vw, 300px);
}
.news .news-cat {
position: absolute;
top: 16px;
left: 16px;
z-index: 2;
padding: 5px 10px;
background: var(--gold-head);
color: #000;
font-size: 0.72rem;
font-weight: 800;
letter-spacing: 0.08em;
text-transform: uppercase;
}
.news .news-hover-overlay {
position: absolute;
inset: 0;
display: grid;
place-items: center;
background: rgba(0, 0, 0, 0.34);
color: var(--gold);
font-size: 1.7rem;
opacity: 0;
transition: opacity 0.3s ease;
}
.news .news-card:hover .news-hover-overlay {
opacity: 1;
}
.news .news-body {
padding: clamp(22px, 2.2vw, 32px);
}
.news .news-meta,
.news .news-readmore { color: #b69648;
font-size: 0.8rem;
font-weight: 700;
display: flex;
gap: 10px;
align-items: center;
justify-content: flex-start;
}
.news .news-meta,
.news .news-readmore {
line-height: 0;
}
.news .news-body h3 {
margin: 10px 0 12px;
font-family: 'Oswald', sans-serif;
font-size: clamp(1.35rem, 1.8vw, 2rem);
font-weight: 800;
line-height: 1.18;
}
.news .news-body h3 a { color: var(--gold-head);
}
.news .news-body p {
color: rgba(255, 255, 255, 0.82);
font-size: 0.95rem;
line-height: 1.65; }
.news-load-more {
position: relative;
z-index: 2;
margin-top: 44px;
text-align: center;
}
.news .btn-outline {
min-width: 190px;
min-height: 56px;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 12px;
padding: 0 28px;
border: 1px solid var(--gold-head);
border-radius: 3px;
background: transparent;
color: var(--gold-head);
font-family: 'Oswald', sans-serif;
font-size: 0.9rem;
font-weight: 800;
letter-spacing: 0.12em;
line-height: 1;
text-transform: uppercase;
cursor: pointer;
transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.news .btn-outline i {
font-size: 0.78rem;
transition: transform 0.25s ease;
}
.news .btn-outline:hover,
.news .btn-outline:focus-visible {
background: var(--gold-head);
border-color: var(--gold-head);
color: #050505;
transform: translateY(-2px);
}
.news .btn-outline:hover i,
.news .btn-outline:focus-visible i {
transform: translateY(2px);
}
.news .btn-outline:focus-visible {
outline: 2px solid rgba(255, 255, 255, 0.72);
outline-offset: 4px;
}
.news .btn-outline.is-complete {
opacity: 0.58;
cursor: default;
transform: none;
}
@media (max-width: 980px) {
.upcoming-events {
min-height: 560px;
}
.upcoming-card {
margin-left: 0;
}
.news .news-grid {
grid-template-columns: 1fr;
}
.news-bg-text {
left: 60%;
font-size: clamp(6rem, 24vw, 12rem);
}
}
@media (max-width: 620px) {
.news {
padding: 72px 0;
}
.upcoming-events {
min-height: 500px;
padding-top: 10px;
}
.upcoming-head h2 {
font-size: clamp(3.8rem, 16vw, 5rem);
}
.news-bg-text {
top: 20%;
left: 52%;
}
} .partners {
position: relative;
overflow: hidden;
background: #131313;
color: var(--white);
min-height: clamp(430px, 48vw, 500px);
padding: clamp(82px, 9vw, 96px) 0 clamp(82px, 8vw, 100px);
}
.partners .container {
position: relative;
max-width: 1140px;
padding: 0;
}
.partners .section-head {
margin-bottom: clamp(42px, 4.4vw, 50px);
text-align: center;
}
.partners .section-head h2 { font-size: 3.1vw;
font-weight: normal;
text-transform: none;
font-style: normal;
text-decoration: none;
line-height: 1.1em;
letter-spacing: -0.28px;
word-spacing: 0em;
color: #b69648;
}
.partners-slider {
position: relative;
overflow: hidden;
width: min(100%, 1140px);
margin: 0 auto;
padding: 0 clamp(56px, 5.6vw, 94px) 26px;
}
.partners-track {
display: flex;
flex-wrap: nowrap;
align-items: center;
gap: 0;
margin: 0 auto;
transition: transform 0.5s ease;
will-change: transform;
}
.partner-item {
flex: 0 0 calc(100% / 3);
min-width: calc(100% / 3);
display: flex;
justify-content: center;
}
.partner-logo-img {
width: clamp(170px, 9.8vw, 188px);
aspect-ratio: 1;
object-fit: contain;
background: #fff;
}
.partners .slider-btn {
position: absolute;
z-index: 3;
top: calc(50% - 13px);
width: 52px;
height: 52px;
display: grid;
place-items: center;
transform: translateY(-50%);
border: 0;
background: transparent;
color: rgba(255, 255, 255, 0.9);
font-size: clamp(1.7rem, 2vw, 2.2rem);
cursor: pointer;
}
.partners .slider-btn:disabled {
opacity: 0.28;
cursor: default;
}
.partners .prev-btn { left: 0; }
.partners .next-btn { right: 0; }
.partners-dots {
position: absolute;
left: 50%;
bottom: 0;
display: flex;
gap: 13px;
transform: translateX(-50%);
}
.partners-dot {
width: 8px;
height: 8px;
padding: 0;
border: 0;
border-radius: 50%;
background: #050505;
cursor: pointer;
}
.partners-dot.active {
background: #050505;
transform: scale(1.08);
}
@media (max-width: 980px) {
.partner-item {
flex-basis: calc(100% / 3);
min-width: calc(100% / 3);
}
}
@media (max-width: 620px) {
.partners {
padding: 68px 0 82px;
}
.partners-slider {
padding: 0 34px 24px;
}
.partner-item {
flex-basis: calc(100% / 3);
min-width: calc(100% / 3);
}
.partner-logo-img {
width: clamp(78px, 24vw, 120px);
}
} .cta {
position: relative;
min-height: clamp(620px, 78vh, 840px);
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
color: var(--white);
}
.cta-bg {
position: absolute;
inset: 0;
background-image: url(https://web.archive.org/web/20250326052803im_/https://womanbusinesscircle.com/wp-content/uploads/2024/12/4.jpg);
background-position: center center;
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
}
.cta-bg.mission-goals{
background-image: url(https://wbc.cfdev.in/wp-content/themes/wbc-theme/assets/cta.jpg);
}
.cta-bg-img {
display: none;
}
.cta-overlay {
position: absolute;
inset: 0;
background: linear-gradient(90deg, rgba(4, 4, 4, 0.9), rgba(4, 4, 4, 0.63) 48%, rgba(4, 4, 4, 0.86)),
rgba(0, 0, 0, 0.45) ;
}
.cta-body {
position: relative;
z-index: 2;
width: min(100%, 640px);
margin-left: clamp(0px, 39vw, 620px);
padding: 100px 0;
}
.cta-eyebrow {
display: flex;
flex-direction: column; align-items: start;
gap: 18px;
margin: 0 0 25px;
color: var(--white); font-size: 16px;
font-weight: 600;
line-height: 1;
letter-spacing: 2px;
text-align: center;
text-transform: uppercase;
}
.cta-eyebrow span {
display: block;
height: 3px;
width:100%;
background: rgba(255, 255, 255, 0.86);
}
.cta-body h2 {
margin: 0 0 clamp(42px, 5vw, 58px);
color: var(--white); font-size: 35px;
font-weight: 300;
width: 85%;
line-height: 1.3em;
letter-spacing: 0;
}
.cta .btn-primary.large {
width: 100%; justify-content: center;
border: 1px solid var(--gold-head);
background: transparent;
color: var(--white);
text-transform: uppercase;
padding: 12px 24px;
font-size: clamp(0.9rem, 1vw, 1rem); font-family: 'Oswald';
}
.cta .btn-primary.large:hover {
background: var(--gold-head);
color: #000;
}
@media (max-width: 980px) {
.cta-body {
padding: 0 5%;
margin-left: 0;
}
}
@media (max-width: 760px) {
.cta {
min-height: 620px;
}
.cta-bg {
background-attachment: scroll;
}
.cta-eyebrow {
grid-template-columns: 1fr;
}
.cta-eyebrow span {
display: none;
}
} .about-page {
background: #000;
}
.page-header {
position: sticky;
top: 0;
z-index: 50;
background: #111;
border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}
.page-header-wrap {
min-height: 112px;
width: min(100%, 1440px);
margin: 0 auto;
padding: 0;
display: grid;
grid-template-columns: 220px 1fr auto auto;
align-items: center;
gap: clamp(28px, 3vw, 56px);
}
.page-logo img {
width: 185px;
height: auto;
}
.page-nav ul {
display: flex;
align-items: center;
justify-content: flex-end;
gap: clamp(30px, 3.4vw, 58px);
}
.page-nav a {
color: #fff;
font-size: clamp(0.94rem, 1.05vw, 1.18rem);
font-weight: 700;
line-height: 1;
text-transform: uppercase;
transition: color 0.2s ease;
white-space: nowrap;
}
.page-nav a:hover,
.page-nav a.active {
color: #c59a37;
}
.page-join {
min-width: 164px;
min-height: 52px;
display: inline-flex;
align-items: center;
justify-content: center;
border: 2px solid #c59a37;
border-radius: 0;
background: transparent;
color: #fff;
font-size: clamp(0.9rem, 1vw, 1.05rem);
font-weight: 800;
letter-spacing: 0.08em;
text-transform: uppercase;
cursor: pointer;
}
.page-join:hover {
background: #c59a37;
color: #000;
}
.page-burger {
display: none;
width: 42px;
height: 42px;
padding: 0;
border: 1px solid rgba(255, 255, 255, 0.35);
background: transparent;
}
.page-burger span {
width: 19px;
height: 2px;
display: block;
margin: 4px auto;
background: #fff;
}
.about-hero {
position: relative;
min-height: calc(100vh - 25vh);
display: grid;
place-items: center;
overflow: hidden;
background: #000;
--about-hero-watermark-x: 0px;
--about-hero-watermark-y: 0px;
}
.about-hero-bg {
position: absolute;
inset: 0;
background-image: url(//wbc.cfdev.in/wp-content/themes/wbc-theme/assets/banner.jpg);
background-size: cover;
background-position: center 36%; transform: scale(1.015);
}
.about-hero-overlay {
position: absolute;
inset: 0;
background:
linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.58)),
rgba(0, 0, 0, 0.36);
}
.about-hero-watermark {
position: absolute;
z-index: 1;
left: 50%;
bottom: 9%;
width: 110vw;
transform: translate(calc(-50% + var(--about-hero-watermark-x)), var(--about-hero-watermark-y));
color: rgba(255, 255, 255, 0.12);
font-family: 'Oswald', sans-serif;
font-size: clamp(7rem, 23vw, 30rem);
font-weight: 800;
line-height: 0.78;
text-align: center;
text-transform: uppercase;
white-space: nowrap;
pointer-events: none;
}
.about-hero-content {
position: relative;
z-index: 2;
width: min(100%, 980px);
padding: 0;
text-align: center;
transform: translateY(42px);
}
.about-hero-content p {
margin: 0 0 40px;
color: #b69648;
font-size: 1.5rem;
font-weight: 400;
line-height: 1.2;
letter-spacing: 1.3px;
}
.about-hero-content h1 {
margin: 0;
color: #fff;
font-family: 'Oswald', sans-serif;
font-size: clamp(70px, 95px, 95px);
font-weight: 800;
line-height: 0.9;
letter-spacing: .3px;
text-transform: uppercase;
}
.about-hero-content h1 span {
color: #b69648;
} .news-events-hero {
position: relative;
min-height: calc(100vh - 25vh);
display: grid;
place-items: center;
overflow: hidden;
background: #000;
--news-events-watermark-x: 0px;
--news-events-watermark-y: 0px;
}
.news-events-hero-bg {
position: absolute;
inset: 0;
background-image: url(//wbc.cfdev.in/wp-content/themes/wbc-theme/assets/banner.jpg);
background-size: cover;
background-position: center 48%;
filter: blur(1px);
transform: scale(1.018);
}
.news-events-hero-overlay {
position: absolute;
inset: 0;
background:
linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.68)),
rgba(0, 0, 0, 0.34);
}
.news-events-hero-watermark {
position: absolute;
z-index: 1;
left: 50%;
bottom: 10%;
width: 110vw;
transform: translate(calc(-50% + var(--news-events-watermark-x)), var(--news-events-watermark-y));
color: rgba(255, 255, 255, 0.11);
font-family: 'Oswald', sans-serif;
font-size: clamp(8rem, 23vw, 30rem);
font-weight: 800;
line-height: 0.78;
text-align: center;
text-transform: uppercase;
white-space: nowrap;
pointer-events: none;
}
.news-events-hero-content {
position: relative;
z-index: 2;
width: min(100%, 980px);
padding: 0;
text-align: center;
transform: translateY(38px);
}
.news-events-hero-content p {
margin: 0 0 40px;
color: #b69648;
font-size: 1.5rem;
font-weight: 400;
line-height: 1.2;
letter-spacing: 1.3px;
}
.news-events-hero-content h1 {
margin: 0;
color: #fff;
font-family: 'Oswald', sans-serif;
font-size: clamp(70px, 95px, 95px);
font-weight: 800;
line-height: 0.9;
letter-spacing: .3px;
text-transform: uppercase;
}
.news-events-hero-content h1 span {
color: #b69648;
} .contact-page {
background: #0f0f0f;
}
.contact-hero {
position: relative;
min-height: calc(100vh - 25vh);
display: grid;
place-items: center;
overflow: hidden;
background: #111;
}
.contact-hero-bg {
position: absolute;
inset: 0;
background-image: url(//wbc.cfdev.in/wp-content/themes/wbc-theme/assets/banner.jpg);
background-position: center;
background-size: cover;
filter: grayscale(100%);
transform: scale(1.03);
}
.contact-hero-overlay {
position: absolute;
inset: 0;
background: rgba(0, 0, 0, 0.68);
}
.contact-hero-watermark {
position: absolute;
z-index: 1;
left: 50%;
top: 53%;
width: 110vw;
transform: translate(-50%, -50%);
color: rgba(255, 255, 255, 0.1);
font-family: 'Oswald', sans-serif;
font-size: clamp(8rem, 23vw, 30rem);
font-weight: 800;
line-height: 0.8;
text-align: center;
text-transform: uppercase;
white-space: nowrap;
pointer-events: none;
}
.contact-hero-content {
position: relative;
z-index: 2;
width: min(100%, 980px);
padding: 0;
text-align: center;
transform: translateY(44px);
}
.contact-hero-content p {
margin: 0 0 40px;
color: #b69648;
font-size: 1.5rem;
font-weight: 400;
line-height: 1.2;
letter-spacing: 1.3px;
}
.contact-hero-content h1 {
margin: 0;
color: #fff;
font-family: 'Oswald', sans-serif;
font-size: clamp(70px, 95px, 95px);
font-weight: 800;
line-height: 0.9;
letter-spacing: .3px;
text-transform: uppercase;
}
.contact-info-section h2 {
margin: 0 0 48px;
color: #fff;
font-family: 'Oswald', sans-serif !important;
font-size: 3.8rem;
line-height: 1em;
letter-spacing: .6px;
font-weight: 800;
text-transform: uppercase;
}
.contact-info-section h2 span {
color: #b69648;
}
.contact-hero-content h1 span {
color: #b69648;
}
.contact-info-section,
.contact-form-section {
background: #101010;
color: #fff;
}
.contact-info-section {
padding: clamp(72px, 8vw, 116px) 0 clamp(90px, 10vw, 160px);
}
.contact-info-wrap {
width: min(100%, 1140px);
margin: 0 auto;
padding: 40px 0 0;
display: grid;
grid-template-columns:  1fr 1fr 1fr;
gap: clamp(32px, 4vw, 64px);
align-items: start;
}
.contact-info-wrap h2 {
margin: 26px 0 0;
color: #fff;
font-family: 'Oswald', sans-serif;
font-size: clamp(1.85rem, 2.25vw, 2.6rem);
font-weight: 800;
line-height: 1.05;
text-transform: uppercase;
}
.contact-info-wrap h2 span,
.contact-info-card h3,
.contact-question h2 {
color: #b69648;
}
.contact-info-card {
display: flex;
flex-direction: column;
gap: 20px;
align-items: start;
}
.contact-info-card i {
color: #fff;
font-size: 29px;
line-height: 1;
}
.contact-info-card h3 {
margin: 0 0 12px;
color: var(--gold-head); font-size: clamp(2rem, 2.25rem, 3rem);
font-weight: 500;
line-height: 1;
letter-spacing: 1.2px;
text-transform: uppercase;
}
.contact-info-card p {
margin: 0;
color: #f4e6c2; font-weight: 400;
font-size: 20px;
line-height: 1.55;
}
.contact-info-card a {
color: inherit;
}
.contact-form-section {
border-top: 1px solid #b69648;
border-bottom: 1px solid #b69648;
}
.contact-form-wrap {
display: grid;
grid-template-columns: 1fr 1fr;
min-height: clamp(560px, 44vw, 690px);
}
.contact-question,
.contact-form {
display: flex;
flex-direction: column;
justify-content: center; }
.contact-question {
margin-right: 40px;
border-right: 1px solid #b69648;
}
.contact-question h2 {
margin: 0 0 48px;
color: #fff;
font-family: 'Oswald', sans-serif !important;
font-size: 3.8rem; letter-spacing: .6px;
font-weight: 800;
text-transform: uppercase;
}
.contact-question h2 span{
color: #b69648;
}
.contact-question p {
margin: 0 0 40px;
color: #b69648;
font-size: 1.5rem;
font-weight: 400;
line-height: 1.2; }
.contact-socials {
display: flex;
gap: 34px;
}
.contact-socials a {
color: #fff;
font-size: 1.85rem;
}
.contact-form {
gap: 42px;
}
.contact-form-wrap--single {
grid-template-columns: minmax(0, 1fr);
}
.contact-form-wrap--single .contact-question {
margin-right: 0;
border-right: 0;
}
.contact-form .wpcf7,
.contact-form .wpcf7 form,
.contact-form .wpcf7 .contact-form {
width: 100%;
}
.contact-form .wpcf7 form,
.contact-form .wpcf7 .contact-form {
display: flex;
flex-direction: column;
gap: 42px;
}
.contact-form .wpcf7 p {
margin: 0;
}
.contact-form .wpcf7-form-control-wrap {
display: block;
width: 100%;
}
.contact-form .wpcf7-submit {
width: auto;
max-width: 100%;
min-height: 0;
align-self: flex-start;
}
.contact-form .wpcf7-spinner {
margin: 14px 0 0;
}
.contact-form .wpcf7-not-valid-tip {
margin-top: 10px;
color: #ff6767;
font-family: 'Roboto', sans-serif;
font-size: 0.95rem;
}
.contact-form .wpcf7-response-output {
margin: 0 !important;
padding: 14px 18px !important;
color: #fff;
font-family: 'Roboto', sans-serif;
border-color: #b69648 !important;
}
.contact-form input:not(.wpcf7-submit),
.contact-form textarea {
width: 100%;
border: 1px solid rgba(255, 255, 255, 0.9);
border-radius: 0;
background: #fff;
color: #111;
font-family: 'Oswald', sans-serif;
font-size: clamp(1rem, 1.2vw, 1.35rem);
font-weight: 600;
outline: 0;
}
.contact-form input:not(.wpcf7-submit) {
min-height: 50px;
padding: 0 26px;
}
.contact-form textarea {
min-height: 154px;
padding: 18px 26px;
resize: vertical;
}
.contact-form input:not(.wpcf7-submit)::placeholder,
.contact-form textarea::placeholder {
color: rgba(160, 160, 160, 0.18);
}
.contact-form button,
.contact-form .wpcf7-submit { border: 1px solid rgba(255, 255, 255, 0.9);
background: #b69648;
color: #fff;
font-family: 'Oswald', sans-serif;
font-size: clamp(1.1rem, 1.35vw, 1.55rem);
font-weight: 800;
padding: 20px 40px;
cursor: pointer;
transition: background 0.25s ease, color 0.25s ease;
}
.contact-form button:hover,
.contact-form .wpcf7-submit:hover {
background: #d2a642;
color: #111;
} .membership-page {
background: #000;
}
.membership-hero {
position: relative;
min-height: calc(100vh - 25vh);
display: grid;
place-items: center;
overflow: hidden;
background: #000;
}
.membership-hero-bg {
position: absolute;
inset: 0;
background-image: url(//wbc.cfdev.in/wp-content/themes/wbc-theme/assets/banner.jpg);
background-position: center;
background-size: cover;
transform: scale(1.04);
}
.membership-hero-overlay {
position: absolute;
inset: 0;
background:
linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.52)),
rgba(0, 0, 0, 0.34);
}
.membership-hero-watermark {
position: absolute;
z-index: 1;
left: 50%;
top: 52%;
width: 112vw;
transform: translate(-50%, -50%);
color: rgba(255, 255, 255, 0.1);
font-family: 'Oswald', sans-serif;
font-size: clamp(6.5rem, 15vw, 18rem);
font-weight: 800;
line-height: 0.8;
text-align: center;
text-transform: uppercase;
white-space: nowrap;
pointer-events: none;
}
.membership-hero-content {
position: relative;
z-index: 2;
height: 100%;
width: min(100%, 980px);
padding: 30vh 0 0;
text-align: center;
}
.membership-hero-content p {
margin: 0 0 20px;
color: #b69648;
font-size: 1.5rem;
font-weight: 400;
line-height: 1.2;
letter-spacing: 1.3px;
}
.membership-hero-content h1 {
margin: 0 0 40px;
color: #fff;
font-family: 'Oswald', sans-serif;
font-size: clamp(70px, 95px, 95px);
font-weight: 800;
line-height: 0.9;
letter-spacing: .3px;
text-transform: uppercase;
} .membership-services {
position: relative;
overflow: hidden;
background: #000;
color: #fff;
padding: clamp(86px, 9vw, 120px) 0 clamp(86px, 9vw, 120px);
}
.membership-services-watermark {
position: absolute;
left: 50%;
top: 56%;
width: 100%;
transform: translate(-50%, -50%);
color: rgba(255, 255, 255, 0.07);
font-family: 'Oswald', sans-serif;
font-size: clamp(4.5rem, 10vw, 12rem);
font-weight: 800;
line-height: 0.9;
text-align: center;
text-transform: uppercase;
white-space: nowrap;
pointer-events: none;
}
.membership-services-wrap {
position: relative;
z-index: 2;
width: min(100%, 1140px);
margin: 0 auto;
padding: 0;
}
.membership-section-head {
margin-bottom: clamp(70px, 8vw, 112px);
text-align: center;
}
.membership-section-head p {
margin-bottom: 16px;
color: var(--gold-head);
font-family: 'Oswald', sans-serif;
font-size: 1rem;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 1px;
}
.membership-section-head h2 {
margin: 0 0 48px;
color: #fff;
font-family: 'Oswald', sans-serif !important;
font-size: 3.8rem;
line-height: 1em;
letter-spacing: 6px;
font-weight: 800;
text-transform: uppercase;
}
.membership-section-head h2 span {
color: #b69648;
}
.membership-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: clamp(44px, 5vw, 72px);
}
.membership-card {
min-height: 310px;
padding: 0 10px 34px;
border-bottom: 1px solid rgba(182, 150, 72, 0.7);
}
.membership-card-icon {
width: 88px;
height: 88px;
display: grid;
place-items: center;
margin-bottom: 30px;
border: 1px solid rgba(182, 150, 72, 0.75);
color: #b69648;
font-size: 2.45rem;
}
.membership-card h3 {
margin: 0 0 18px;
color: #fff; font-size: clamp(1.45rem, 1.55vw, 1.8rem); }
.membership-card p {
color: #cac0a7; font-size: clamp(1.1rem, 1.16vw, 1.32rem);
line-height: 1.45;
}
.member-benefits-section {
position: relative;
overflow: hidden;
background: #000;
color: #fff;
padding: clamp(86px, 9vw, 120px) 0 clamp(86px, 9vw, 120px);
}
.member-benefits-bg {
position: absolute;
inset: 0;
pointer-events: none;
}
.member-benefits-bg::before {
content: var(--member-benefits-watermark, "MEMBER BENEFITS");
position: absolute;
left: 50%;
top: 51%;
width: 100%;
transform: translate(-50%, -50%);
color: rgba(255, 255, 255, 0.07);
font-family: 'Oswald', sans-serif;
font-size: clamp(4.2rem, 9vw, 11rem);
font-weight: 800;
line-height: 0.9;
text-align: center;
text-transform: uppercase;
white-space: nowrap;
}
.member-benefits-wrap {
position: relative;
z-index: 2;
width: min(100%, 1140px);
margin: 0 auto;
padding: 0 5%;
}
.member-benefits-wrap h2 {
margin: 0 0 clamp(70px, 8vw, 112px);
color: #fff;
font-family: 'Oswald', sans-serif !important;
font-size: 3.8rem; line-height: 1em;  text-transform: uppercase;
}
.member-benefits-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: clamp(44px, 5vw, 72px);
}
.member-benefit-card { padding: 0 10px 34px;
border-bottom: 1px solid rgba(182, 150, 72, 0.7);
}
.member-benefit-icon {
width: 88px;
height: 88px;
display: grid;
place-items: center;
margin-bottom: 30px;
border: 1px solid rgba(182, 150, 72, 0.75);
color: #b69648;
font-size: 2.45rem;
}
.member-benefit-card h3 {
margin: 0 0 18px;
color: #fff; font-size: clamp(1.45rem, 1.55vw, 1.8rem); line-height: 1.3;
text-transform: none;
}
.member-benefit-card p {
margin: 0;  font-size: clamp(1.1rem, 1.16vw, 1.32rem);
font-weight: 400;
line-height: 1.45;
}
.business-support-section {
position: relative;
overflow: hidden;
background: #070a0f;
color: #fff;
padding: clamp(82px, 8vw, 116px) 0 clamp(94px, 9vw, 132px);
}
.business-support-bg {
position: absolute;
inset: 0;
background: transparent;
}
.business-support-wrap {
position: relative;
z-index: 1;
width: min(100%, 1140px);
margin: 0 auto;   align-items: center;
}
.business-support-brand {
position: relative;
min-height: 520px;
display: grid;
place-items: center;
}
.business-support-brand::before,
.business-support-brand::after {
content: "";
position: absolute;
left: 50%;
width: clamp(150px, 15vw, 230px);
height: clamp(82px, 8vw, 126px);
border-top: clamp(22px, 2.4vw, 34px) solid #d9ad34;
border-radius: 100% 100% 0 0;
transform-origin: center;
}
.business-support-brand::before {
top: 24px;
transform: translateX(-12%) rotate(30deg);
}
.business-support-brand::after {
bottom: 24px;
transform: translateX(-74%) rotate(210deg);
}
.business-support-emblem {
width: clamp(220px, 23vw, 340px);
aspect-ratio: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
border: 8px solid #f3df8d;
border-radius: 50%;
background: radial-gradient(circle, #15151a 0 52%, #06070a 53% 100%);
color: #f7e8a8;
font-family: 'Oswald', sans-serif;
font-size: clamp(1.8rem, 2.3vw, 3rem);
font-weight: 800;
line-height: 0.9;
text-align: center;
text-transform: uppercase;
box-shadow: 0 20px 35px rgba(0, 0, 0, 0.52), inset 0 0 0 6px #191919;
}
.business-support-ring {
position: absolute;
right: 0;
top: 50%;
color: #fff; font-size: clamp(1.45rem, 2.2vw, 2.4rem);
line-height: 1;
transform: translateY(-50%) rotate(62deg);
white-space: nowrap;
}
.business-support-content h2 {
margin: 0 0 clamp(42px, 5vw, 64px);
color: #dcb322;
font-family: 'Oswald', sans-serif;
font-size: 3.8rem; line-height: 0.95;
text-transform: uppercase;
}
.business-support-grid {
display: grid;
grid-template-columns: repeat(4, minmax(170px, 1fr));
gap: clamp(20px, 2.2vw, 34px);
}
.business-support-column {
display: flex;
flex-direction: column;
align-items: center;
}
.business-support-item {
width: 100%;
aspect-ratio: 1;
display: grid;
place-items: center;
padding: clamp(18px, 2vw, 28px);
border: 5px solid #bd7c17;
border-radius: 50%;
background: rgba(8, 11, 16, 0.82);
color: #fff; font-size: clamp(1rem, 1.35vw, 1.55rem); line-height: 1.3;
text-align: center;
text-transform: uppercase;
box-shadow:
inset 0 0 0 1px rgba(255, 236, 154, 0.35),
0 18px 28px rgba(0, 0, 0, 0.36);
}
.business-support-item:nth-of-type(odd) {
border-color: #c27913;
}
.business-support-item:nth-of-type(even) {
border-color: #e7c053;
}
.business-support-arrow {
margin: 30px 0;
color: #f2d54e;
font-size: clamp(1.25rem, 1.6vw, 1.9rem);
line-height: 1;
}
.membership-join {
position: relative;
min-height: clamp(560px, 68vh, 760px);
display: grid;
place-items: center;
overflow: hidden;
color: #fff;
}
.membership-join-bg {
position: absolute;
inset: 0;
background-image: url(https://web.archive.org/web/20250326052803im_/https://womanbusinesscircle.com/wp-content/uploads/2024/12/Copy-of-Copy-of-Open-call-for.jpg);
background-position: center;
background-size: cover;
}
.membership-join-overlay {
position: absolute;
inset: 0;
background: rgba(0, 0, 0, 0.62);
}
.membership-join-content {
position: relative;
z-index: 2;
width: min(100%, 900px);
padding: 0;
text-align: center;
}
.membership-join-content p {
margin: 0 0 26px;
color: #cac0a7;
font-size: 16px;
font-weight: 800;
line-height: 1.2; text-transform: uppercase;
letter-spacing: 2px;
}
.membership-join-content h2 {
margin: 0 0 62px;
color: #b69648; font-size: 50px;
font-weight: 800;
line-height: 1.18;
letter-spacing: 0;
text-transform: uppercase;
}
.membership-join-content button {
min-width: 250px;
font-family: 'Oswald';
min-height: 58px;
border: 1px solid #b69648;
background: #b69648;
color: #fff;
font-size: 1rem;
font-weight: 800;
text-transform: uppercase;
cursor: pointer;
}
.membership-join-content button:hover {
background: #d2a642;
color: #111;
}
.events-list-section {
position: relative;
overflow: hidden;
background: #000;
color: #fff;
padding: clamp(96px, 8vw, 128px) 0 clamp(110px, 10vw, 170px);
}
.events-list-wrap {
position: relative;
z-index: 2;
width: min(100%, 1140px);
margin: 0 auto;
padding: 0;
}
.events-list-watermark {
position: absolute;
z-index: 1;
right: -5vw;
bottom: 8%;
color: rgba(255, 255, 255, 0.06);
font-family: 'Oswald', sans-serif;
font-size: clamp(6rem, 12vw, 15rem);
font-weight: 800;
line-height: 0.82;
text-transform: uppercase;
white-space: nowrap;
pointer-events: none;
}
.events-kicker {
margin-bottom: 16px;
color: var(--gold-head);
font-family: 'Oswald', sans-serif;
font-size: 1rem;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 1px;
}
.events-main-title {
margin: 0;
color: var(--white);
font-family: "Oswald", Sans-serif !important;
font-size: 3.8rem;
line-height: 1em;
letter-spacing: .4px;
text-transform: uppercase;
}
.events-main-title span {
color: #b69648;
}
.events-tabs {
width: min(100%, 1140px);
margin: clamp(80px, 7vw, 100px) auto 75px;
min-height: 96px;
display: flex;
align-items: flex-end;
justify-content: center;
gap: clamp(38px, 5vw, 84px);
padding: 0 30px;
background: #020202;
}
.events-tabs button {
position: relative;
padding: 0 24px 34px;
border: 0;
background: transparent;
color: #fff;
font-family: inherit;
font-size: clamp(1.15rem, 1.45vw, 1.55rem);
line-height: 1;
cursor: pointer;
}
.events-tabs button.active {
color: #b69648;
}
.events-tabs button.active::after {
content: "";
position: absolute;
left: 0;
right: 0;
bottom: 0;
height: 2px;
background: #b69648;
}
.events-panel {
display: none;
}
.events-panel.active {
display: block;
}
.upcoming-event-grid {
display: grid;
grid-template-columns: minmax(300px, 1fr) minmax(300px, 1fr) minmax(300px, 1fr);
gap: clamp(24px, 3vw, 52px);
align-items: start;
padding-top: 0;
}
.upcoming-event-card {
min-width: 0;
}
.upcoming-event-card img {
width: 100%;
aspect-ratio: 1.32 / 1;
object-fit: cover;
margin-bottom: clamp(34px, 4vw, 58px);
}
.event-copy-only {
padding: clamp(64px, 8vw, 112px) 0 0 clamp(10px, 1vw, 24px);
}
.event-date-label {
margin: 0 0 24px;
color: #9ba2ad;
font-size: clamp(1.15rem, 1.35vw, 1.5rem);
}
.upcoming-event-card h3 {
margin: 10px 0 12px;
font-family: 'Oswald', sans-serif !important;
font-size: clamp(1.35rem, 1.8vw, 2rem);
font-weight: 800;
line-height: 1.18;
}
.upcoming-event-card p:not(.event-date-label) {
margin: 0 0 28px; color: #CAC0A7;
font-weight: 400;
font-size: 20px;
line-height: 1.55;
}
.event-register {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 66px;
padding: 14px 10px;
border: 3px solid #b69648;
color: #b69648;
font-size: clamp(1.05rem, 1.2vw, 1.35rem);
line-height: 1;
text-transform: uppercase;
}
.past-tabs {
margin-top: clamp(110px, 12vw, 170px);
}
.past-title {
margin-top: clamp(60px, 5vw, 78px);
margin-bottom: clamp(70px, 6vw, 92px);
}
.past-events-grid {
display: grid;
grid-template-columns: minmax(300px, 1fr) minmax(300px, 1fr) minmax(300px, 1fr);
gap: clamp(28px, 4.5vw, 70px);
align-items: start;
}
.past-event-card img {
width: 100%;
aspect-ratio: 1.53 / 1;
object-fit: cover;
margin-bottom: 26px;
}
.past-event-card h3 {
margin: 0 0 6px;
color: #fff;
font-family: 'Oswald', sans-serif;
font-size: clamp(1.5rem, 1.8vw, 2rem);
font-weight: 400;
letter-spacing: 0.08em;
line-height: 1.08;
text-transform: uppercase;
}
.past-event-card h3 a {
color: inherit;
}
.past-meta {
margin: 0 0 22px;
color: #c49a39;
font-size: clamp(0.95rem, 1.05vw, 1.12rem);
}
.past-event-card p:not(.past-meta) {
margin: 0 0 26px;
color: #fff;
font-size: clamp(1rem, 1.08vw, 1.15rem);
line-height: 1.45;
}
.past-readmore {
color: #b69648;
font-family: 'Oswald', sans-serif;
font-size: clamp(1.05rem, 1.2vw, 1.25rem);
letter-spacing: 0.08em;
text-transform: uppercase;
}
.past-event-text {
padding-top: 6px;
} .magazine-page {
background: #111;
}
.magazine-hero {
background: #111;
color: #fff;
padding: clamp(72px, 8vw, 112px) 0 clamp(96px, 10vw, 150px);
}
.magazine-wrap {
width: min(100%, 1140px);
margin: 0 auto;
padding: 0;
}
.magazine-wrap h1,
.magazine-issue-title {
margin: 0 0 clamp(140px, 16vw, 210px);
color: #ffd400;
font-family: 'Oswald', sans-serif;
font-size: clamp(2.3rem, 3.8vw, 4rem);
font-weight: 800;
line-height: 1.1;
}
.magazine-issue-title {
margin: clamp(86px, 10vw, 135px) 0 clamp(300px, 28vw, 420px);
color: #b69648;
font-size: clamp(1.6rem, 2vw, 2rem);
}
.magazine-viewer,
.tmpContainer.magazine-flipbook {
position: relative;
width: min(100%, 1014px);
min-height: 576px;
margin: 0 auto;
display: grid;
place-items: center;
background: #76686e;
}
.tmpContainer.magazine-flipbook {
height: 460px !important;
max-width: 1014px;
min-height: 0;
}
.bookContainer {
position: relative;
width: 100%;
height: 100%;
min-height: 0;
display: grid;
place-items: center;
}
.bookContainer .book {
position: relative;
width: min(79%, 804px);
height: auto;
aspect-ratio: 1.4545 / 1;
display: block;
touch-action: pan-y;
user-select: none;
-webkit-user-drag: none;
}
.page-mask {
position: absolute;
top: 0;
width: 50%;
height: 100%;
overflow: hidden;
backface-visibility: hidden;
will-change: transform;
}
.left-mask-side {
left: 0;
}
.right-mask-side {
right: 0;
}
.under-page {
z-index: 0;
opacity: 0.88;
}
.page-side,
.side-content,
.side-image {
position: absolute;
inset: 0;
}
.left-side {
right: 0;
}
.right-side {
left: 0;
}
.side-content {
overflow: hidden;
background: #fff;
}
.side-image img {
width: 100%;
height: 100%;
object-fit: cover;
image-rendering: -webkit-optimize-contrast;
pointer-events: none;
}
.thickness,
.doubleWidth.bookShadow,
.leftShadow.magazine,
.rightShadow.magazine,
.cover_shadow,
.grayShadow {
position: absolute;
top: 0;
height: 100%;
pointer-events: none;
}
.left_thickness {
left: 0;
width: 0;
z-index: 5;
}
.right_thickness {
left: 100%;
width: 11px;
z-index: 5;
background: linear-gradient(90deg, rgba(255,255,255,0.45), rgba(0,0,0,0.2));
}
.doubleWidth.bookShadow {
inset: 0;
box-shadow: 0 12px 18px rgba(0, 0, 0, 0.38);
}
.leftShadow.magazine {
right: 0;
width: 71px;
background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.28));
}
.rightShadow.magazine {
left: 0;
width: 28px;
background: linear-gradient(90deg, rgba(0, 0, 0, 0.26), transparent);
}
.cover_shadow.saddle {
left: 0;
width: 64px;
background: linear-gradient(90deg, rgba(0,0,0,0.18), transparent 55%);
}
.normal_left_body::before,
.normal_left_body::after {
content: "";
position: absolute;
left: 0;
width: 1px;
height: 33px;
background: rgba(0, 0, 0, 0.25);
}
.normal_left_body::before {
top: 26%;
}
.normal_left_body::after {
bottom: 26%;
}
.loadingOuter {
position: absolute;
inset: 0;
display: grid;
place-items: center;
}
.loadingImage {
width: 50px;
height: 50px;
border: 6px solid #e1e1e1;
border-top-color: transparent;
border-radius: 50%;
}
.fbTopBar {
position: absolute;
right: 32px;
top: 24px;
z-index: 4;
}
.pageButton,
.fbTopBar button {
width: 42px;
height: 42px;
display: grid;
place-items: center;
border: 0;
border-radius: 4px;
background: rgb(54, 50, 51);
color: rgb(132, 121, 124);
font-size: 1.35rem;
cursor: pointer;
}
.leftPageBar,
.rightPageBar {
position: absolute;
z-index: 4;
top: 41%;
display: grid;
gap: 19px;
}
.leftPageBar {
left: 0;
}
.rightPageBar {
right: 0;
}
.magazine-viewer-wide {
width: min(100%, 1014px);
}
.magazine-booklet {
width: min(100%, 1014px);
margin: 0 auto;
}
.booklet-stage {
position: relative;
min-height: clamp(360px, 45vw, 576px);
display: grid;
place-items: center;
overflow: hidden;
background: #76686e;
outline: 0;
}
.booklet-book {
position: relative;
width: min(79%, 804px);
aspect-ratio: 1.4545 / 1;
display: grid;
grid-template-columns: 1fr 1fr;
background: #f8f0dc;
box-shadow: 0 12px 18px rgba(0, 0, 0, 0.38);
transform-style: preserve-3d;
}
.booklet-book::before {
content: "";
position: absolute;
z-index: 3;
top: 0;
bottom: 0;
left: calc(50% - 14px);
width: 28px;
background: linear-gradient(90deg, rgba(0, 0, 0, 0.2), transparent 46%, rgba(0, 0, 0, 0.18));
pointer-events: none;
}
.booklet-page {
position: relative;
min-width: 0;
overflow: hidden;
background: #fff;
}
.booklet-page img {
width: 100%;
height: 100%;
display: block;
object-fit: cover;
-webkit-user-drag: none;
user-select: none;
}
.booklet-left::after,
.booklet-right::before {
content: "";
position: absolute;
top: 0;
width: 70px;
height: 100%;
pointer-events: none;
}
.booklet-left::after {
right: 0;
background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.24));
}
.booklet-right::before {
left: 0;
background: linear-gradient(90deg, rgba(0, 0, 0, 0.24), transparent);
}
.booklet-stage.is-turning .booklet-book {
animation: booklet-turn 260ms ease;
}
.booklet-menu,
.booklet-arrow,
.booklet-controls {
position: absolute;
z-index: 5;
}
.booklet-menu {
right: 32px;
top: 24px;
}
.booklet-arrow {
top: 41%;
}
.booklet-arrow-left {
left: 0;
}
.booklet-arrow-right {
right: 0;
}
.booklet-menu,
.booklet-arrow {
width: 42px;
height: 42px;
display: grid;
place-items: center;
border: 0;
border-radius: 4px;
background: rgb(54, 50, 51);
color: rgb(182, 173, 176);
font-size: 1.25rem;
cursor: pointer;
}
.booklet-controls {
left: 50%;
bottom: 18px;
display: flex;
align-items: center;
gap: 10px;
padding: 8px 12px;
border-radius: 6px;
background: rgba(35, 31, 33, 0.88);
transform: translateX(-50%);
}
.booklet-controls span {
min-width: 74px;
color: #fff;
font-family: 'Oswald', sans-serif;
font-size: 0.88rem;
font-weight: 700;
text-align: center;
}
.booklet-stage button:disabled {
cursor: not-allowed;
opacity: 0.38;
}
.booklet-stage:fullscreen {
width: 100vw;
min-height: 100vh;
}
.booklet-stage:fullscreen .booklet-book {
width: min(88vw, 1180px);
}
@keyframes booklet-turn {
0% {
transform: perspective(1200px) rotateY(0deg);
}
45% {
transform: perspective(1200px) rotateY(-4deg);
}
100% {
transform: perspective(1200px) rotateY(0deg);
}
}
.book-spread {
width: min(79%, 804px);
aspect-ratio: 1.5 / 1;
display: grid;
grid-template-columns: 1fr 1fr;
box-shadow: 0 12px 18px rgba(0, 0, 0, 0.34);
background: #f8f0dc;
}
.book-page {
position: relative;
overflow: hidden;
min-width: 0;
padding: 44px 30px 24px;
background:
radial-gradient(circle at 8% 10%, rgba(190, 153, 68, 0.34) 0 3px, transparent 4px) 0 0 / 26px 26px,
#fbf3de;
color: #171717;
}
.book-page:first-child {
background:
linear-gradient(105deg, rgba(0, 0, 0, 0.16), transparent 15%, transparent 90%, rgba(0, 0, 0, 0.12)),
#fff;
}
.book-page:first-child::after,
.closed-book::before {
content: "";
position: absolute;
top: 0;
right: -1px;
width: 28px;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.18), transparent);
}
.book-page:last-child::before {
content: "";
position: absolute;
left: -1px;
top: 0;
width: 30px;
height: 100%;
background: linear-gradient(90deg, rgba(0, 0, 0, 0.2), transparent);
}
.page-band {
position: absolute;
top: 0;
left: 0;
right: 0;
height: 24px;
background: #efae09;
}
.book-page h2 {
margin: 0 0 18px;
color: #1a1a1a;
font-family: 'Oswald', sans-serif;
font-size: clamp(1.6rem, 2.2vw, 2.15rem);
font-weight: 800;
line-height: 1.08;
}
.book-page h2 span {
color: transparent;
-webkit-text-stroke: 1px #c79b43;
}
.about-page-grid {
display: grid;
grid-template-columns: 0.85fr 1fr;
gap: 16px;
align-items: end;
}
.portrait {
min-height: 300px;
background: url(https://web.archive.org/web/20250326052834im_/https://womanbusinesscircle.com/wp-content/uploads/2024/05/1-4.svg) center bottom / contain no-repeat;
}
.about-page-grid p {
color: #1f1f1f;
font-family: 'Oswald', sans-serif;
font-size: clamp(0.66rem, 0.8vw, 0.82rem);
line-height: 1.55;
}
.content-layout {
display: grid;
grid-template-columns: 0.42fr 1fr;
gap: 20px;
}
.content-layout aside {
min-height: 282px;
padding: 18px 14px;
background: #c8a85e;
color: #fff;
font-size: 0.78rem;
}
.content-layout aside strong,
.content-layout aside small {
display: block;
margin-bottom: 12px;
}
.content-layout ul {
display: grid;
gap: 9px;
}
.content-layout li {
display: grid;
grid-template-columns: 36px 1fr;
column-gap: 8px;
color: #1a1a1a;
font-size: 0.78rem;
}
.content-layout li span {
grid-row: span 2;
width: 30px;
height: 30px;
display: grid;
place-items: center;
border: 1px dotted #c8a85e;
border-radius: 50%;
color: #4c3b1b;
font-size: 0.72rem;
}
.content-layout li small {
color: #386273;
font-size: 0.67rem;
}
.mag-arrow,
.mag-menu {
position: absolute;
z-index: 3;
width: 42px;
height: 42px;
display: grid;
place-items: center;
border: 0;
border-radius: 4px;
background: rgba(36, 33, 35, 0.82);
color: rgba(255, 255, 255, 0.68);
font-size: 1.4rem;
}
.mag-arrow.left {
left: 0;
top: 41%;
}
.mag-arrow.left.lower {
top: calc(41% + 61px);
}
.mag-arrow.right {
right: 0;
top: 41%;
}
.mag-arrow.right.lower {
top: calc(41% + 61px);
}
.mag-menu {
right: 32px;
top: 24px;
font-size: 1.2rem;
}
.single-book {
width: min(100%, 900px);
height: 455px !important;
min-height: 0;
}
.tmpContainer.single-book .book.single {
width: min(76%, 392px);
aspect-ratio: 0.75 / 1;
}
.closed-book {
position: relative;
width: 100%;
aspect-ratio: 0.75 / 1;
display: grid;
place-items: center;
overflow: hidden;
background:
linear-gradient(90deg, #efefef, #fff 12%, #fff 88%, #efefef),
#fff;
box-shadow: 0 5px 8px rgba(0, 0, 0, 0.45);
}
.closed-book::before {
right: auto;
left: 0;
width: 34px;
}
.spinner {
width: 52px;
height: 52px;
border: 6px solid #e1e1e1;
border-top-color: transparent;
border-radius: 50%;
}
.magazine-book-row {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: clamp(24px, 3vw, 50px);
margin-top: clamp(120px, 12vw, 180px);
}
.book-card {
min-height: clamp(440px, 30vw, 564px);
display: grid;
place-items: center;
background: #76686e;
padding: 12px 24px;
}
.mini-flipbook {
width: min(100%, 394px);
background: transparent;
}
.mini-flipbook .bookContainer,
.mini-flipbook .book.single {
min-height: 0;
width: 100%;
}
.mini-flipbook .book.single {
aspect-ratio: 0.75 / 1;
}
.closed-book span {
padding: 18px 28px;
border-radius: 6px;
background: rgba(31, 31, 31, 0.82);
color: #fff;
font-family: 'Oswald', sans-serif;
font-size: 1rem;
font-weight: 700;
line-height: 1.45;
text-align: center;
}
@media (max-width: 980px) {
.magazine-wrap h1,
.magazine-issue-title {
margin-bottom: 80px;
}
.magazine-viewer {
min-height: 440px;
}
.book-spread {
width: 84%;
}
.book-page {
padding: 36px 18px 20px;
}
.about-page-grid,
.content-layout {
grid-template-columns: 1fr;
}
.portrait {
min-height: 180px;
}
.magazine-book-row {
grid-template-columns: 1fr;
}
}
@media (max-width: 680px) {
.magazine-hero {
padding-top: 56px;
}
.magazine-viewer {
min-height: 360px;
}
.booklet-stage {
min-height: 430px;
}
.booklet-book {
width: min(74%, 330px);
aspect-ratio: 0.75 / 1;
grid-template-columns: 1fr;
}
.booklet-book::before,
.booklet-left {
display: none;
}
.booklet-right::before {
width: 34px;
}
.booklet-controls {
gap: 7px;
max-width: calc(100% - 24px);
}
.book-spread {
width: 78%;
aspect-ratio: 0.75 / 1;
grid-template-columns: 1fr;
}
.book-page:first-child {
display: none;
}
.mag-arrow.left {
display: none;
}
.book-card {
min-height: 430px;
}
}
.mission-vision {
position: relative;
overflow: hidden;
background: #000;
color: #fff; padding: clamp(92px, 9vw, 118px) 0 80px;
--mission-watermark-x: 0px;
--mission-watermark-y: 0px;
}
.mission-wrap {
position: relative;
z-index: 2;
width: min(100%, 1140px);
margin: 0 auto;
padding: 0;
display: grid;
grid-template-columns: minmax(470px, 670px) minmax(380px, 540px);
gap: clamp(56px, 7vw, 98px);
align-items: center;
}
.mission-watermark {
position: absolute;
z-index: 1;
top: 118px;
left: 56%;
width: max-content;
transform: translate(calc(-50% + var(--mission-watermark-x)), var(--mission-watermark-y));
color: rgba(255, 255, 255, 0.055);
font-family: 'Oswald', sans-serif;
font-size: clamp(7rem, 12vw, 14.2rem);
font-weight: 800;
line-height: 0.8;
text-transform: uppercase;
white-space: nowrap;
pointer-events: none;
}
.mission-kicker,
.founder-label {
margin: 0 0 30px;
color: #c79a36;
font-family: 'Oswald', sans-serif;
font-size: clamp(1.35rem, 1.35vw, 1.6rem);
font-weight: 400;
line-height: 1;
letter-spacing: 0.08em;
text-transform: uppercase;
}
.mission-copy h2 {
margin: 0 0 48px;
color: #fff;
font-family: 'Oswald', sans-serif !important;
font-size: 3.8rem;
line-height: 1em; font-weight: 800;
text-transform: uppercase;
}
.mission-copy h2 span {
display: block;
color: #b69648;
}
.mission-copy > p:not(.mission-kicker):not(.founder-label) {
max-width: 690px;
margin: 0 0 22px;
color: #cac0a7; font-size: 1.2rem;
line-height: 1.45;
}
.mission-copy blockquote {
max-width: 690px;
margin: 0;
padding: 0 0 0 20px;
border-left: 3px solid #c79a36;
color: #cac0a7; font-size: 1.2rem;
line-height: 1.45;
}
.founder-label {
margin-top: 114px;
margin-bottom: 0;
}
.mission-media {
align-self: center;
margin-top: 136px;
}
.mission-media img {
width: min(100%, 540px); object-fit: cover;
object-position: center;
}
.mission-goals-section {
position: relative;
overflow: hidden;
min-height: max-content;  align-items: stretch;
background: #0a0d12;
color: #f4d565;
}
.mission-goals-section::before {
content: "";
position: absolute;
inset: 0;
background:
linear-gradient(90deg, rgba(10, 13, 18, 0.08) 0%, rgba(10, 13, 18, 0.68) 48%, rgba(10, 13, 18, 0.94) 100%),
url(https://wbc.cfdev.in/wp-content/themes/wbc-theme/assets/contact-bnr.jpeg) center / cover no-repeat;
opacity: 0.42;
}
.mission-goals-visual,
.mission-goals-content {
position: relative;
z-index: 1;
}
.mission-goals-visual {
min-height: 760px;
display: flex;
align-items: flex-end;
justify-content: center;
padding: clamp(52px, 7vw, 86px);
background:
linear-gradient(110deg, transparent 0 58%, #d0a02f 58.4% 62%, transparent 62.4%),
repeating-linear-gradient(100deg, rgba(255, 255, 255, 0.08) 0 22px, rgba(255, 255, 255, 0.02) 22px 44px),
#171717;
}
.mission-goals-visual::before {
content: "";
position: absolute;
left: -12%;
top: -8%;
width: 78%;
aspect-ratio: 1;
border: 3px solid rgba(208, 160, 47, 0.72);
border-radius: 50%;
}
.mission-goals-arrow {
position: absolute;
left: 12%;
top: 12%;
width: clamp(150px, 18vw, 260px);
aspect-ratio: 1;
display: grid;
place-items: center;
color: #0a0d12;
background: linear-gradient(135deg, #f9e657, #c58b1f);
clip-path: polygon(42% 0, 100% 58%, 70% 58%, 70% 100%, 16% 100%, 16% 58%, 0 58%);
transform: rotate(-38deg);
box-shadow: 0 22px 40px rgba(0, 0, 0, 0.38);
}
.mission-goals-arrow i {
font-size: clamp(3.8rem, 7vw, 7rem);
transform: rotate(38deg);
}
.mission-goals-label {
position: relative;
margin: 0 auto 6%;
color: #ffd850;
font-family: 'Oswald', sans-serif;
font-size: clamp(4.7rem, 10vw, 9.2rem);
font-weight: 800;
line-height: 0.9;
letter-spacing: 0.02em;
text-transform: uppercase;
text-shadow: 0 8px 0 #6e4b14, 0 18px 26px rgba(0, 0, 0, 0.62);
transform: rotate(-15deg);
} .mission-goals-content h2 { color: #b69648;
font-family: 'Oswald', sans-serif;
font-size: 3.8rem;
font-weight: 800;
text-transform: uppercase;
line-height: 0.9;
letter-spacing: 0;
}
.mission-goals-content h2 span {
display: block;
}
.mission-goals-content p {
margin: 0 0 20px; font-weight: normal;
font-size: 1.2rem;
line-height: 1.45;
letter-spacing: 0px;
color: #ffffff;
}
.mission-goals-content p:last-child {
margin-bottom: 0;
}
.founder-section {
position: relative;
overflow: hidden;
background: #000;
color: #fff; padding: clamp(72px, 8vw, 104px) 0 100px;
--founder-watermark-x: 0px;
--founder-watermark-y: 0px;
}
.founder-wrap {
position: relative;
z-index: 2;
width: min(100%, 1140px);
margin: 0 auto;
padding: 0;
}
.founder-watermark {
position: absolute;
z-index: 1;
top: 92px;
left: 41%;
width: max-content;
transform: translate(calc(-50% + var(--founder-watermark-x)), var(--founder-watermark-y));
color: rgba(255, 255, 255, 0.07);
font-family: 'Oswald', sans-serif;
font-size: clamp(8rem, 13vw, 15.5rem);
font-weight: 800;
line-height: 0.8;
text-transform: uppercase;
white-space: nowrap;
pointer-events: none;
}
.founder-heading {
margin-bottom: 75px;
}
.founder-heading p {
margin-bottom: 16px;
color: var(--gold-head);
font-family: 'Oswald', sans-serif;
font-size: 1rem;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 1px;
}
.founder-heading h2 {
margin: 0;
color: var(--white);
font-family: "Oswald", Sans-serif !important;
font-size: 3.8rem;
line-height: 1em;
letter-spacing: .4px;
text-transform: uppercase;
}
.founder-heading h2 span {
color: #b69648;
}
.founder-grid {
display: grid;
grid-template-columns: minmax(360px, 408px) minmax(520px, 680px);
justify-content: center;
gap: clamp(72px, 9vw, 170px);
align-items: start;
}
.founder-photo img {
width: min(100%, 408px); object-fit: cover;
object-position: center top;
background: #fff;
}
.founder-copy {
padding-top: 2px;
}
.founder-copy p {
margin: 0; font-size: 1.2rem;
font-weight: normal;
line-height: 1.8em;
letter-spacing: 0px;
color: #cac0a7;
}
.her-vision-section {
position: relative;
overflow: hidden;
background: #131313;
color: #fff;
min-height: 860px;
padding: clamp(70px,100px, 110px) 0 clamp(70px, 100px, 110px);
--her-vision-y: 600px;
}
h2.her-vision-title{
margin-bottom: 5px !important;
}
.her-vision-giant {
position: absolute;
z-index: 1;
top: 200px;
left: 12.5%;
transform: translateY(var(--her-vision-y));
color: #fff;
font-family: 'Oswald', sans-serif;
font-size: clamp(8rem, 13vw, 15.4rem);
font-weight: 800;
line-height: 0.82;
letter-spacing: 0;
text-transform: uppercase;
white-space: nowrap;
pointer-events: none;
}
.her-vision-wrap {
position: relative;
z-index: 2;
width: min(100%, 1140px);
margin: 0 auto;
padding: 0;
}
.her-vision-wrap h2 {
margin: 0 0 clamp(78px, 7vw, 100px);
color: #fff;
font-family: 'Oswald', sans-serif;
font-size: clamp(2.7rem, 3.8vw, 4rem);
font-weight: 800;
line-height: 1.08;
letter-spacing: 0.03em;
text-transform: uppercase;
}
.her-vision-wrap h2 span {
color: #b69648;
}
.her-vision-grid {
display: grid;
grid-template-columns: minmax(560px, 860px) minmax(360px, 480px);
gap: clamp(54px, 5vw, 72px);
align-items: start;
}
.her-vision-copy {
max-width: 875px;
}
.her-vision-copy p {
margin: 0 0 22px; font-size: 1.2rem;
font-weight: normal;
line-height: 1.8em;
letter-spacing: 0px;
color: #cac0a7;
}
.her-vision-copy p:last-child {
margin-bottom: 0;
}
.her-vision-photo img {
width: min(100%, 480px); object-fit: cover;
object-position: center top;
}
.about-roster-section {
position: relative;
overflow: hidden;
background:
linear-gradient(rgba(4, 5, 9, 0.88), rgba(4, 5, 9, 0.92)),
url(https://images.unsplash.com/photo-1518005020951-eccb494ad742?w=1800&q=80) center/cover;
color: #fff;
padding: clamp(78px, 8vw, 120px) 0 clamp(92px, 9vw, 140px);
}
.about-roster-section::before,
.about-roster-section::after {
content: "";
position: absolute;
width: 360px;
height: 34px;
right: -80px;
background: linear-gradient(90deg, #6b4911, #f3ca58, #9c6b14);
transform: rotate(26deg);
opacity: 0.9;
}
.about-roster-section::before {
top: 54px;
}
.about-roster-section::after {
top: 116px;
right: -138px;
background: linear-gradient(90deg, #111, #3b3b3b, #050505);
}
.about-roster-wrap {
position: relative;
z-index: 1;
width: min(100%, 1140px);
margin: 0 auto;
padding: 0;
}
.about-roster-kicker {
margin: 0 0 16px;
color: #cac0a7;
font-family: "Montserrat", sans-serif;
font-size: 0.95rem;
font-weight: 800;
letter-spacing: 2px;
text-transform: uppercase;
}
.about-roster-title {
margin: 0;
color: #fff;
font-family: "Oswald", sans-serif !important;
font-size: clamp(3rem, 6vw, 5.8rem);
font-weight: 800;
line-height: 1;
text-transform: uppercase;
}
.about-roster-title span {
color: #dcb322;
}
.about-roster-tabs {
margin-top: clamp(46px, 5vw, 76px);
margin-bottom: clamp(46px, 5vw, 74px);
min-height: 76px;
justify-content: flex-start;
gap: clamp(18px, 3vw, 46px);
padding: 0;
background: transparent;
overflow-x: auto;
}
.about-roster-tabs button {
flex: 0 0 auto;
padding-left: 0;
padding-right: 0;
white-space: nowrap;
}
.about-roster-panel {
display: none;
}
.about-roster-panel.active {
display: block;
}
.about-roster-grid {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: clamp(34px, 4vw, 58px) clamp(24px, 4vw, 52px);
align-items: start;
}
.about-roster-grid.compact {
grid-template-columns: repeat(4, minmax(0, 1fr));
}
.about-roster-card {
min-width: 0;
text-align: center;
}
.about-roster-card img {
width: 100%;
aspect-ratio: 1 / 1;
object-fit: cover;
object-position: center top;
border: 10px solid #e4c45c;
background: #050505;
box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}
.about-roster-card h3 {
margin: 18px 0 6px;
color: #dcb322; font-size: 26px;
text-align: left;
margin-bottom: 10px;
font-weight: 800;
line-height: 1;
}
.about-roster-card p,
.about-roster-card span {
display: block;
margin: 0;
color: #e6c44a;
text-align: left;
font-family: 'Oswald', sans-serif !important; font-weight: 500;
line-height: 1.15;
}
.about-roster-card span {
margin-top: 2px;
}
.join-journey-section {
position: relative;
min-height: clamp(680px, 78vh, 820px);
display: grid;
place-items: center;
overflow: hidden;
background: #111;
color: #fff;
}
.join-journey-bg {
position: absolute;
inset: 0;
background-size: cover;
background-position: center;
opacity: 0;
transform: scale(1.01);
transition: opacity 1.1s ease;
}
.join-journey-bg.is-active {
opacity: 1;
}
.join-journey-overlay {
position: absolute;
inset: 0;
z-index: 1;
background: rgba(0, 0, 0, 0.58);
}
.join-journey-content {
position: relative;
z-index: 2;
width: min(100%, 1120px);
padding: 0;
text-align: center;
}
.join-journey-content p {
margin: 0 0 26px;
color: #cac0a7;
font-size: 16px; line-height: 1.2; text-transform: uppercase;
letter-spacing: 2px;
}
.join-journey-content h2 {
margin: 0 0 62px;
color: #b69648; font-size: 50px; line-height: 1.18;
letter-spacing: 0;
text-transform: uppercase;
}
.membership-hero-content button.btn-primary:hover{
background: var(--dark-gold);
color: var(--white);
}
.membership-hero-content button.btn-primary{
min-width: 234px;
padding: 20px 30px;
display: inline-flex;
align-items: center;
justify-content: center;
border-radius: 2px;
font-family: 'Oswald', sans-serif;
font-size: 1rem;
font-weight: 500;
letter-spacing: 1px;
line-height: 1.2em;
text-transform: uppercase;
text-transform: uppercase;
cursor: pointer;
border: 1px solid var(--dark-gold);
background: rgba(10, 7, 7, 0.52);
color: var(--gold-head);
transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.join-journey-content button { padding: 14px 49px;
display: inline-flex;
align-items: center;
justify-content: center;
border: 2px solid #b69648;
border-radius: 0;
background: rgba(0, 0, 0, 0.12);
color: #fff;
font-family: 'Oswald';
font-size: 21px;
font-weight: 500;
letter-spacing: 0.02em;
text-transform: uppercase;
cursor: pointer;
}
.join-journey-content button:hover {
background: #b69648;
color: #000;
}
.news-events-page .news-events-join {
min-height: clamp(720px, 82vh, 900px);
}
.news-events-page .news-events-join .join-journey-overlay {
background: rgba(0, 0, 0, 0.68);
}
.news-events-page .news-events-join .news-events-join-content {
width: min(100%, 1700px);
padding: 0 6%;
text-align: left;
}
.news-events-page .news-events-join .news-events-join-inner {
width: min(100%, 960px);
margin-left: auto;
margin-right: 0;
}
.news-events-page .news-events-join .news-events-join-kicker {
display: flex;
align-items: center;
gap: clamp(18px, 2vw, 30px);
margin: 0 0 34px;
}
.news-events-page .news-events-join .join-journey-content p {
margin: 0;
color: #fff;
font-family: 'Oswald', sans-serif;
font-size: clamp(1.1rem, 1.2vw, 1.45rem);
font-weight: 500;
letter-spacing: 0.16em;
line-height: 1;
text-transform: uppercase;
white-space: nowrap;
}
.news-events-page .news-events-join .news-events-join-line {
flex: 1 1 auto;
height: 4px;
background: rgba(255, 255, 255, 0.92);
}
.news-events-page .news-events-join .join-journey-content h2 {
max-width: 920px;
margin: 0 0 54px;
color: #fff;
font-family: 'Oswald', sans-serif;
font-size: clamp(3rem, 4.6vw, 4.55rem);
font-weight: 400;
line-height: 1.34;
letter-spacing: 0;
text-align: left;
text-transform: none;
}
.news-events-page .news-events-join .news-events-join-button {
width: 100%;
min-height: 70px;
padding: 18px 28px;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 12px;
border: 1px solid rgba(182, 150, 72, 0.95);
background: rgba(0, 0, 0, 0.18);
color: #fff;
font-family: 'Oswald', sans-serif;
font-size: clamp(1.2rem, 1.3vw, 1.55rem);
font-weight: 500;
letter-spacing: 0.02em;
text-transform: uppercase;
}
.news-events-page .news-events-join .news-events-join-button i {
font-size: 0.95em;
}
.news-events-page .news-events-join .news-events-join-button:hover {
background: rgba(182, 150, 72, 0.88);
color: #111;
}
@media (max-width: 1140px) {
.news-events-page .news-events-join {
min-height: 680px;
}
.news-events-page .news-events-join .news-events-join-content {
width: min(100%, 1180px);
}
.news-events-page .news-events-join .news-events-join-inner {
margin: 0 auto;
}
.news-events-page .news-events-join .join-journey-content h2 {
max-width: 100%;
}
}
@media (max-width: 767px) {
.news-events-page .news-events-join {
min-height: 560px;
}
.news-events-page .news-events-join .news-events-join-content {
padding: 0 6%;
}
.news-events-page .news-events-join .news-events-join-kicker {
gap: 14px;
margin-bottom: 24px;
}
.news-events-page .news-events-join .news-events-join-line {
height: 3px;
}
.news-events-page .news-events-join .join-journey-content p {
font-size: 0.95rem;
letter-spacing: 0.12em;
}
.news-events-page .news-events-join .join-journey-content h2 {
margin-bottom: 34px;
font-size: clamp(2.15rem, 9vw, 3.1rem);
line-height: 1.3;
}
.news-events-page .news-events-join .news-events-join-button {
min-height: 62px;
padding: 16px 20px;
font-size: 1.1rem;
}
}
@media (max-width: 1140px) {
.container {
max-width: 100%;
margin: 0 auto;
padding: 0 5% !important;
}
.about-roster-wrap {
padding: 0 5%;
}
.about-roster-grid,
.about-roster-grid.compact {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
.membership-services-wrap {
padding: 0 5% !important;
}
.events-list-wrap{
padding: 0 5% !important;
}
.footer-top-grid{
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
}
}
@media (max-width: 1040px) {
.news-events-hero-content{
padding: 0 5% !important;
}
.page-header-wrap {
grid-template-columns: 190px 1fr auto;
}
.page-nav {
position: absolute;
top: 100%;
left: 0;
right: 0;
display: none;
background: #111;
border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.page-nav.open {
display: block;
}
.page-nav ul {
flex-direction: column;
align-items: stretch;
gap: 0;
padding: 10px 28px 22px;
}
.page-nav a {
display: block;
padding: 14px 0;
}
.page-burger {
display: block;
}
.mission-wrap {
grid-template-columns: 1fr;
}
.mission-media {
margin-top: 0;
}
.mission-media img {
width: min(100%, 760px);
}
.mission-goals-section {
grid-template-columns: 1fr;
}
.mission-goals-visual {
min-height: 430px;
}
.mission-goals-content {
padding-top: 72px;
padding-bottom: 78px;
}
.mission-watermark {
left: 50%;
font-size: clamp(6rem, 18vw, 11rem);
}
.founder-grid {
grid-template-columns: 1fr;
gap: 44px;
}
.founder-photo img {
width: min(100%, 520px);
min-height: 0;
margin: 0 auto;
}
.founder-watermark {
left: 50%;
font-size: clamp(6rem, 18vw, 11rem);
}
.her-vision-grid {
grid-template-columns: 1fr;
}
.her-vision-giant {
left: 6%;
font-size: clamp(6.5rem, 20vw, 12rem);
}
.her-vision-photo img {
width: min(100%, 560px);
}
.join-journey-section {
min-height: 620px;
}
.upcoming-event-grid,
.past-events-grid {
grid-template-columns: 1fr 1fr;
}
.event-copy-only,
.past-event-text { padding-top: 20px;
}
.events-tabs {
gap: 18px;
}
.contact-info-wrap {
grid-template-columns: 1fr 1fr;
}
.contact-info-wrap h2 {
grid-column: 1 / -1;
margin-top: 0;
}
.contact-form-wrap {
padding: 70px 0;
gap: 40px;
grid-template-columns: 1fr;
}
.contact-question {
border-right: 0;
padding-bottom: 30px;
border-bottom: 1px solid #b69648;
}
.membership-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.member-benefits-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.member-benefits-wrap h2 {
text-align: center;
}
.business-support-wrap {
grid-template-columns: 1fr;
}
.business-support-brand {
min-height: 360px;
}
.business-support-grid { max-width: 100%;
padding: 0 5%;
margin: 0 auto;
}
.business-support-content h2 {
text-align: center;
}
}
@media (max-width: 680px) {
.page-header-wrap {
min-height: 78px;
grid-template-columns: 1fr auto;
}
.page-logo img {
width: 150px;
}
.page-join {
display: none;
}
.about-hero {
min-height: calc(100vh - 78px);
}
.news-events-hero {
min-height: calc(100vh - 78px);
}
.contact-hero {
min-height: calc(100vh - 78px);
}
.about-hero-watermark {
font-size: clamp(6rem, 31vw, 11rem);
white-space: normal;
}
.news-events-hero-watermark {
font-size: clamp(6rem, 31vw, 11rem);
white-space: normal;
}
.contact-hero-watermark {
font-size: clamp(6rem, 31vw, 11rem);
white-space: normal;
}
.about-hero-content {
transform: none;
}
.mission-goals-section {
min-height: 0;
}
.mission-goals-visual {
min-height: 320px;
padding: 42px 22px;
}
.mission-goals-visual::before {
width: 92%;
left: -30%;
}
.mission-goals-arrow {
width: 132px;
left: 10%;
top: 18%;
}
.mission-goals-label {
font-size: clamp(3.2rem, 18vw, 5.4rem);
margin-bottom: 16px;
}
.mission-goals-content {
padding: 58px 22px 64px;
}
.mission-goals-content h2 {
margin-bottom: 34px;
font-size: clamp(3.2rem, 16vw, 4.7rem);
}
.mission-goals-content p {
margin-bottom: 30px;
font-size: clamp(1.08rem, 5vw, 1.45rem);
letter-spacing: 0.04em;
}
.news-events-hero-content {
transform: none;
}
.contact-hero-content {
transform: none;
}
.contact-info-section {
padding: 58px 0 72px;
}
.contact-info-wrap,
.contact-form-wrap {
grid-template-columns: 1fr;
}
.contact-info-card {
grid-template-columns: 48px 1fr;
gap: 16px;
}
.contact-question,
.contact-form {
padding: 48px 28px;
}
.contact-form {
gap: 22px;
}
.contact-form input:not(.wpcf7-submit) {
min-height: 58px;
}
.contact-form button,
.contact-form .wpcf7-submit {
min-height: 64px;
}
.membership-hero {
min-height: calc(100vh - 78px);
}
.membership-hero-watermark,
.membership-services-watermark,
.member-benefits-bg::before {
font-size: clamp(4.7rem, 22vw, 8rem);
white-space: normal;
}
.membership-grid {
grid-template-columns: 1fr;
}
.membership-card {
min-height: 0;
}
.member-benefits-section {
padding: 68px 0;
}
.member-benefits-wrap {
padding: 0 5%;
}
.member-benefits-wrap h2 {
margin-bottom: 52px;
font-size: clamp(3.2rem, 14vw, 4rem);
}
.member-benefits-grid {
grid-template-columns: 1fr;
gap: 44px;
}
.member-benefit-card {
min-height: 0;
padding: 0 10px 34px;
}
.member-benefit-card h3 {
font-size: clamp(1.45rem, 8vw, 1.9rem);
}
.member-benefit-card p {
font-size: clamp(1.05rem, 4.5vw, 1.25rem);
}
.business-support-section {
padding: 66px 0 80px;
}
.business-support-wrap {
padding: 0 18px;
gap: 38px;
}
.business-support-brand {
min-height: 260px;
}
.business-support-brand::before,
.business-support-brand::after {
width: 132px;
height: 72px;
border-top-width: 18px;
}
.business-support-emblem {
width: min(72vw, 245px);
border-width: 6px;
}
.business-support-ring {
right: 8%;
font-size: clamp(1.05rem, 5vw, 1.55rem);
}
.business-support-content h2 {
margin-bottom: 34px;
font-size: clamp(2.5rem, 13vw, 4rem);
}
.business-support-grid {
grid-template-columns: 1fr;
max-width: 330px;
gap: 28px;
}
.business-support-item {
padding: 22px;
font-size: clamp(0.98rem, 4.5vw, 1.25rem);
}
.business-support-arrow {
margin: 8px 0;
}
.membership-join {
min-height: 560px;
}
.events-list-section {
padding: 70px 0 92px;
}
.events-kicker {
margin-bottom: 24px;
}
.events-main-title {
font-size: clamp(3rem, 14vw, 4.2rem);
}
.events-tabs {
min-height: auto;
margin-top: 52px;
padding: 0 12px;
gap: 0;
justify-content: space-between;
}
.events-tabs button {
padding: 22px 8px 18px;
font-size: 1rem;
text-align: center;
}
.upcoming-event-grid,
.past-events-grid {
grid-template-columns: 1fr;
}
.upcoming-event-card img {
margin-bottom: 26px;
}
.event-copy-only {
padding-left: 0;
}
.upcoming-event-card h3 {
font-size: clamp(2.2rem, 10vw, 3.2rem);
}
.past-tabs {
margin-top: 80px;
}
.past-title {
margin-bottom: 46px;
}
.mission-vision {
min-height: auto;
padding: 68px 0;
}
.mission-watermark {
top: 90px;
white-space: normal;
text-align: center;
}
.mission-copy h2 {
font-size: clamp(4rem, 18vw, 5.6rem);
}
.mission-copy blockquote {
padding-left: 16px;
}
.founder-label {
margin-top: 54px;
}
.founder-section {
min-height: auto;
padding: 62px 0 72px;
}
.founder-heading {
margin-bottom: 46px;
}
.founder-heading h2 {
font-size: clamp(2.6rem, 14vw, 4rem);
}
.founder-watermark {
top: 86px;
white-space: normal;
text-align: center;
}
.founder-copy p {
line-height: 1.62;
}
.her-vision-section {
min-height: auto;
padding: 108px 0 68px;
}
.her-vision-giant {
top: -56px;
left: 24px;
font-size: clamp(5.4rem, 24vw, 8.6rem);
white-space: normal;
}
.her-vision-wrap h2 {
margin-bottom: 42px;
font-size: clamp(2.2rem, 11vw, 3.4rem);
}
.her-vision-copy p {
line-height: 1.62;
}
.about-roster-section {
padding: 66px 0 82px;
}
.about-roster-title {
font-size: clamp(2.8rem, 15vw, 4.6rem);
}
.about-roster-tabs {
justify-content: flex-start;
gap: 22px;
padding: 0 0 10px;
}
.about-roster-tabs button {
padding-bottom: 18px;
}
.about-roster-grid,
.about-roster-grid.compact {
grid-template-columns: 1fr;
max-width: 340px;
margin: 0 auto;
gap: 42px;
}
.about-roster-card img {
border-width: 8px;
}
.join-journey-section {
min-height: 560px;
}
.join-journey-content p {
margin-bottom: 34px;
letter-spacing: 0.14em;
}
.join-journey-content h2 {
margin-bottom: 42px;
font-size: clamp(2.25rem, 11vw, 3.5rem);
}
.join-journey-content button {
min-width: 210px;
}
}
h1,
h2,
h3,
h4,
h5,
h6,
.dual-header,
.hero-title,
.hero-title-outline,
.about-title,
.partners-title,
.members-side-title span,
.members-side-title strong,
.events-main-title,
.past-title,
.magazine-issue-title {
font-family: 'Oswald', sans-serif !important;
}
.service-card h3 { }
.footer-brand {
width: max-content;
}
@media (max-width: 420px) {
.header .btn-join {
padding: 9px 12px;
font-size: 0.76rem;
}
}