@font-face {
    src: url('../fonts/Inter_18pt-Medium.ttf');
    font-family: 'Inter-Medium';
}
@font-face {
    src: url('../fonts/Inter_18pt-Bold.ttf');
    font-family: 'Inter-Bold';
}
@font-face {
    src: url('../fonts/Inter_18pt-Black.ttf');
    font-family: 'Inter-Black';
}
@font-face {
    src: url('../fonts/Inter_18pt-Regular.ttf');
    font-family: 'Inter-Regular';
}
@font-face {
    src: url('../fonts/Inter_18pt-SemiBold.ttf');
    font-family: 'Inter-SemiBold';
}
* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    outline: none;
    border: none;
    box-sizing: border-box;
    font-family: 'Inter-Medium';
    transition: all var(--transition);
}
*:hover {
    transition: all var(--transition);
}
*:focus-visible {
    outline: 2px solid var(--brandGray);
    outline-offset: 2px;
}
html {
    scroll-behavior: smooth;
}
/* .swiper-button-next,  .swiper-button-prev {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
} */
a {
    text-decoration: none;
    color: var(--black);
}
img, video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
:root {
    /* Core text & surfaces */
    --black: #152032;
    --gray: rgba(21, 32, 50, 0.62);
    --white: #ffffff;
    --surface: #eef2f8;
    --surface-muted: #e2e8f0;
    --surface-card: #ffffff;
    --border-soft: rgba(21, 32, 50, 0.1);

    /* Brand — deep navy + highway gold accent */
    --purpleDark: #071426;
    --brandGray: #1e4d82;
    --brandGrayBold: #071426;
    --brandGrayLight: #3b73ae;
    --brandAccent: #d4a012;
    --brandAccentSoft: rgba(212, 160, 18, 0.14);
    --brandGradient: linear-gradient(135deg, #071426 0%, #0f3558 38%, #1a5685 72%, #2568a0 100%);
    --brandRgb: 30, 77, 130;
    --brandDarkRgb: 7, 20, 38;

    /* Step wizard on gradient panels */
    --step-on-gradient-muted: rgba(255, 255, 255, 0.58);
    --step-on-gradient-line: rgba(255, 255, 255, 0.34);
    --step-on-gradient-dot: rgba(255, 255, 255, 0.28);

    /* Design tokens */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 2px rgba(7, 20, 38, 0.06), 0 2px 8px rgba(7, 20, 38, 0.06);
    --shadow-md: 0 4px 14px rgba(7, 20, 38, 0.08);
    --shadow-lg: 0 12px 40px rgba(7, 20, 38, 0.1);
    --transition: 0.25s ease;

    /* Type scale */
    --forteen: 14px;
    --sixteen: 16px;
    --eighteen: 18px;
    --twenty: 20px;
    --fontTwentyTwo: 22px;
    --twofour: 24px;
    --titleFont: clamp(2rem, 4vw, 2.5rem);
}
.wrapper {
    max-width: 1620px;
    width: 100%;
    padding: 0 50px;
    margin: 0 auto;
}

.page_breadcrumb_block {
    max-width: 1620px;
    width: 100%;
    margin: 0 auto;
}
.section-spacing {
    padding-top: 96px;
    padding-bottom: 96px;
}
.sto_ {
    width: 100%;
}
.error-border {
    border-color: red !important;
}
.full_wrapper {
    max-width: 2500px;
    width: 100%;
    margin: 0 auto;
}
.d_flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
body {
    background: var(--surface);
    color: var(--black);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}
body, html{
    overflow-x: hidden;
}

/* Reusable copy styles */
.hero-eyebrow {
    display: inline-block;
    font-family: 'Inter-SemiBold', sans-serif;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
    margin-bottom: 6px;
}
.section-kicker {
    display: block;
    font-family: 'Inter-SemiBold', sans-serif;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brandGray);
    margin-bottom: 8px;
}
.lead-text {
    font-size: var(--eighteen);
    line-height: 1.65;
    color: var(--gray);
}
