| Server IP : 138.197.107.151 / Your IP : 216.73.217.7 Web Server : Apache/2.4.58 (Ubuntu) System : Linux BloxBy-Builder 6.8.0-71-generic #71-Ubuntu SMP PREEMPT_DYNAMIC Tue Jul 22 16:52:38 UTC 2025 x86_64 User : wpbetasites_mrakzqskir ( 1022) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/bsd-crawler-parser/demo/css/ |
Upload File : |
/* ==========================================================================
COMMON / SHARED STYLES
Used across every tab: reset, design tokens, header, tabs nav,
"Meet Your Team of Experts" section, and footer.
========================================================================== */
:root {
/* Colors */
--color-bg: #f8f8f8;
--color-navy: #031628;
--color-navy-soft: #0a2138;
--color-blue: #4fadec;
--color-blue-light: #5cbbf9;
--color-orange: #de8d16;
--color-green-bg: #e1f0ea;
--color-green-text: #168d5e;
--color-card-tint: #ecf1f6;
--color-border: #B8B8B8;
--color-text-primary: #0b1e33;
--color-text-secondary: #5b6472;
--color-white: #ffffff;
/* Typography */
--font-heading: "Montserrat", "Segoe UI", sans-serif;
--font-body: "Montserrat", "Segoe UI", sans-serif;
/* Layout */
--page-max-width: 1534px;
--radius-lg: 24px;
--radius-md: 16px;
--radius-sm: 10px;
--radius-pill: 999px;
}
*,
*::before,
*::after {
box-sizing: border-box;
}
html,
body {
margin: 0;
padding: 0;
}
body {
background: var(--color-bg);
color: var(--color-text-primary);
font-family: var(--font-body);
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
}
img {
max-width: 100%;
display: block;
}
h1,
h2,
h3,
h4 {
font-family: var(--font-heading);
margin: 0;
color: var(--color-text-primary);
}
p {
margin: 0;
}
button {
font-family: inherit;
}
.page-shell {
max-width: var(--page-max-width);
margin: 0 auto;
padding: 0 32px;
}
.visually-hidden {
position: absolute;
width: 1px;
height: 1px;
overflow: hidden;
clip: rect(0 0 0 0);
white-space: nowrap;
}
/* --------------------------------------------------------------------------
SHARED COMPONENT: HEADER
-------------------------------------------------------------------------- */
.site-header .page-shell {
padding: 0 0px;
}
.site-header .site-header__row {
padding-left: 32px;
padding-right: 30px;
}
.site-header {
padding-top: 28px;
padding-bottom: 0px;
position: sticky;
top: 0;
z-index: 100;
background: var(--color-bg);
}
.site-header__row {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 16px;
}
.site-header__logo img {
height: 29px;
width: auto;
}
.site-header__meta {
display: flex;
align-items: center;
gap: 12px;
flex-wrap: wrap;
}
.pill {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 10px 20px;
border-radius: var(--radius-pill);
font-size: 13px;
font-weight: 600;
white-space: nowrap;
}
.pill--outline {
background: var(--color-white);
color: var(--color-text-primary);
border: 1px solid #0316281A;
}
.pill--dark {
background: var(--color-navy);
color: var(--color-white);
}
.pill--dark .pill__label {
color: #5CBBF9;
font-size: 13px;
font-weight: 700;
letter-spacing: 0.06em;
margin-right: 2px;
}
/* --------------------------------------------------------------------------
SHARED COMPONENT: TAB NAVIGATION
-------------------------------------------------------------------------- */
.tabs-nav {
display: flex;
align-items: center;
gap: 10px;
margin-top: 27px;
padding-bottom: 28px;
padding-left: 30px;
overflow-x: auto;
scrollbar-width: thin;
}
.tabs-nav::-webkit-scrollbar {
height: 6px;
}
.tabs-nav::-webkit-scrollbar-thumb {
background: var(--color-border);
border-radius: var(--radius-pill);
}
.tab-btn {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 11px 18px;
border-radius: var(--radius-pill);
border: 1px solid #0316281A;
background: var(--color-white);
color: var(--color-text-secondary);
font-size: 13px;
font-weight: 500;
cursor: pointer;
white-space: nowrap;
flex: 0 0 auto;
transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
line-height: 1;
text-decoration: none;
}
.tab-btn svg {
width: 14px;
height: 15px;
flex-shrink: 0;
}
.tab-btn:hover {
color: var(--color-text-primary);
border: 1px solid rgba(3, 22, 40, .7);
}
.tab-btn[aria-current="page"] {
background: var(--color-navy);
border-color: var(--color-navy);
color: var(--color-white);
font-weight: 600;
box-shadow: 0px 8px 22px 0px #03162838;
}
.tab-btn[aria-current="page"] svg {
color: #5CBBF9;
}
.tab-btn[aria-current="page"] svg path[fill] {
fill: #5CBBF9;
fill-opacity: 1;
}
.tab-btn[aria-current="page"] svg path[stroke] {
stroke: #5CBBF9;
stroke-opacity: 1;
}
/* --------------------------------------------------------------------------
SHARED COMPONENT: MOBILE NAV (hamburger + slide-in drawer, <1024px)
Below 1024px the horizontal .tabs-nav is hidden and replaced by a
hamburger button that opens a right-side drawer containing the same
tab links (cloned in via JS from .tabs-nav, so they always stay in sync).
-------------------------------------------------------------------------- */
.mobile-menu-btn {
display: none;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 5px;
width: 42px;
height: 42px;
border-radius: var(--radius-sm);
border: 1px solid var(--color-border);
background: var(--color-white);
cursor: pointer;
padding: 0;
flex-shrink: 0;
}
.mobile-menu-btn span {
display: block;
width: 18px;
height: 2px;
border-radius: 2px;
background: var(--color-navy);
transition: transform 0.25s ease, opacity 0.2s ease;
}
.mobile-menu-btn[aria-expanded="true"] span:nth-child(1) {
transform: translateY(7px) rotate(45deg);
}
.mobile-menu-btn[aria-expanded="true"] span:nth-child(2) {
opacity: 0;
}
.mobile-menu-btn[aria-expanded="true"] span:nth-child(3) {
transform: translateY(-7px) rotate(-45deg);
}
.mobile-nav-backdrop {
position: fixed;
inset: 0;
background: rgba(3, 22, 40, 0.5);
opacity: 0;
visibility: hidden;
transition: opacity 0.3s ease, visibility 0.3s ease;
z-index: 199;
}
.mobile-nav-backdrop.is-open {
opacity: 1;
visibility: visible;
}
.mobile-nav-drawer {
position: fixed;
top: 0;
right: 0;
height: 100vh;
width: 300px;
max-width: 85vw;
background: var(--color-white);
transform: translateX(100%);
transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
z-index: 200;
display: flex;
flex-direction: column;
padding: 20px;
overflow-y: auto;
}
.mobile-nav-drawer.is-open {
transform: translateX(0);
}
.mobile-nav-drawer__header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 24px;
flex-shrink: 0;
}
.mobile-nav-drawer__logo {
height: 24px;
width: auto;
}
.mobile-nav-close {
background: none;
border: none;
font-size: 30px;
line-height: 1;
cursor: pointer;
color: var(--color-text-secondary);
padding: 0 4px;
}
.mobile-nav-drawer__links {
display: flex;
flex-direction: column;
gap: 10px;
}
.mobile-nav-drawer__links .tab-btn {
width: 100%;
justify-content: flex-start;
border-radius: var(--radius-sm);
padding: 14px 16px;
font-size: 14px;
}
.mobile-nav-drawer__links .tab-btn svg {
width: 17px;
height: 18px;
}
@media (max-width: 1024px) {
.tabs-nav {
display: none;
}
.mobile-menu-btn {
display: flex;
order: 3;
}
.site-header .site-header__row {
padding-bottom: 15px;
}
}
/* --------------------------------------------------------------------------
TAB PANELS (generic container / placeholder state)
-------------------------------------------------------------------------- */
.tab-panel {
padding-top: 0px;
}
.tab-panel[hidden] {
display: none;
}
.tab-placeholder {
min-height: 320px;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
background: var(--color-white);
border: 1px dashed var(--color-border);
border-radius: var(--radius-lg);
color: var(--color-text-secondary);
padding: 60px 24px;
}
.tab-placeholder h2 {
font-size: 1.3rem;
margin-bottom: 8px;
}
/* --------------------------------------------------------------------------
SHARED COMPONENT: FOOTER
-------------------------------------------------------------------------- */
.site-footer {
margin-top: 65px;
padding: 25px 0px;
border-top: 1px solid #0316281A;
}
.site-footer__row {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 12px;
}
.site-footer__logo img {
height: 30px;
width: auto;
opacity: 1;
}
.site-footer__sources,
.site-footer__copyright {
font-size: 0.82rem;
color: #0316286B;
}
.seo-table-wrap tbody {
background: #fff;
}
/* --------------------------------------------------------------------------
SHARED COMPONENT: MEET YOUR TEAM OF EXPERTS
-------------------------------------------------------------------------- */
.team-section {
text-align: center;
margin-top: 65px;
}
.team-section__heading {
font-size: 32px;
font-weight: 700;
margin-bottom: 24px;
letter-spacing: -0.84px;
}
.team-card {
background: var(--color-white);
border-radius: var(--radius-lg);
padding: 50px 50px 60px 50px;
display: flex;
justify-content: space-between;
gap: 16px;
overflow-x: auto;
border: 1.32px solid #A7A7A7;
}
.team-member {
display: flex;
flex-direction: column;
align-items: center;
gap: 14px;
flex: 1 1 0;
min-width: 120px;
}
.team-member__role {
font-family: var(--font-heading);
font-weight: 700;
font-size: 20px;
color: var(--color-text-primary);
letter-spacing: -0.84px;
}
.team-member__photo {
width: 138px;
height: 138px;
border-radius: 50%;
overflow: hidden;
background: var(--color-card-tint);
}
.team-member__photo img {
width: 100%;
height: 100%;
object-fit: cover;
}
.team-member__name {
font-size: 0.9rem;
color: #212121;
font-weight: 400;
}
.hero {
position: relative;
border-radius: var(--radius-lg);
overflow: hidden;
background: url("../assets/images/hero-banner.png");
background-size: cover;
background-position: right center;
min-height: 265px;
display: flex;
align-items: center;
padding: 40px 60px;
box-shadow: 0px 30px 60px -28px #0316288C;
}
.hero__inner {
display: flex;
align-items: center;
}
.hero__title-block {
color: var(--color-white);
}
.hero__eyebrow {
display: block;
font-size: 0.78rem;
font-weight: 600;
letter-spacing: 0.12em;
margin-bottom: 10px;
color: #FFFFFFB2;
}
.hero__title {
font-size: 2.4rem;
font-weight: 700;
line-height: 1.15;
color: var(--color-white);
margin-bottom: 10px;
}
.hero__subtitle {
font-size: 0.85rem;
font-weight: 600;
letter-spacing: 0.08em;
color: var(--color-blue-light);
}
/* --------------------------------------------------------------------------
RESPONSIVE
-------------------------------------------------------------------------- */
@media (max-width: 900px) {
.page-shell {
padding: 0 20px;
}
.team-card {
justify-content: flex-start;
}
.team-member {
min-width: 150px;
}
.team-member__role {
font-size: 16px;
}
.team-member__name {
font-size: 12px;
}
.tab-leads-overview .chart-canvas-wrap {
padding: 0;
}
.site-header {
padding-top: 20px;
}
.site-header .site-header__row {
padding-bottom: 20px;
}
}
@media (max-width: 560px) {
.mobile-menu-btn {
display: flex;
order: 2;
}
.site-header__row {
justify-content: flex-start;
}
.site-footer__row {
flex-direction: column;
align-items: center;
text-align: center;
gap: 20px;
}
.team-member__photo {
width: 72px;
height: 72px;
}
a.site-header__logo {
width: 30%;
order: 1;
}
.site-header__meta {
width: 100%;
gap: 5px;
justify-content: space-between;
padding-top: 15px;
order: 3;
}
.site-header__row {
justify-content: space-between;
gap: 0;
align-items: center;
}
.pill {
font-size: 10px;
}
.pill--dark .pill__label {
font-size: 10px;
}
.site-header {
padding-top: 15px;
}
.tab-overview .leads-badge__label {
font-size: 12px;
}
.site-header .site-header__row {
padding-left: 20px;
padding-right: 20px;
}
.team-card {
padding: 40px 0px 40px 0px;
}
}
/* ==========================================================================
INFO ICON TOOLTIP
Shared hover tooltip for every info icon across all tab pages.
========================================================================== */
.info-icon-wrap {
position: relative;
display: inline-flex;
align-items: center;
vertical-align: middle;
}
.info-icon-wrap svg {
cursor: help;
}
.info-icon-wrap .info-tooltip {
position: absolute;
bottom: calc(100% + 8px);
right: 0;
background: var(--color-navy);
color: var(--color-white);
font-size: 10px;
font-weight: 500;
line-height: 1.4;
padding: 8px 12px;
border-radius: 6px;
white-space: normal;
width: max-content;
max-width: 200px;
text-align: left;
opacity: 0;
visibility: hidden;
transition: opacity 0.12s ease;
pointer-events: none;
z-index: 30;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.info-icon-wrap:hover .info-tooltip,
.info-icon-wrap:focus-within .info-tooltip {
opacity: 1;
visibility: visible;
}
@media (max-width: 1024px) {
.info-icon-wrap .info-tooltip {
right: 0;
transform: translateX(0%);
left: auto;
}
}
@media (max-width: 560px) {
.info-icon-wrap .info-tooltip {
position: absolute;
bottom: calc(100% + 8px);
left: auto;
right: 0%;
transform: translateX(0%);
font-size: 10px;
border-radius: 6px;
max-width: 140px;
}
.team-section__heading {
font-size: 28px;
}
}
@media (max-width: 400px) {
.team-member {
min-width: 130px;
}
}