@import url("style.css");
@import url("static-overrides.css");

@font-face {
    font-family: bootstrap-icons;
    src: url('../bootstrap/icons/fonts/bootstrap-icons.woff2') format('woff2')
}

:root {
    --navy: #12304a;
    --teal: #12a6a6;
    --amber: #f29f3d;
    --ink: #263746;
    --muted: #657784;
    --line: #dbe5e8;
    --pale: #f5f8fa;
    --container: 1240px
}

* {
    box-sizing: border-box
}

body {
    color: var(--ink);
    font-family: Inter, Arial, sans-serif;
    margin: 0
}

.content{}
.content img{
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

a {
    text-decoration: none
}

.container {
    max-width: var(--container)
}

.site-header {
    background: #fff;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 20
}

.site-header .navbar {
    min-height: 76px
}

.navbar-brand {
    align-items: center;
    color: var(--navy);
    display: flex;
    font-size: .86rem;
    font-weight: 850;
    gap: .55rem;
    letter-spacing: .15em
}

.brand-mark {
    align-items: center;
    background: var(--navy);
    color: #fff;
    display: inline-flex;
    height: 28px;
    justify-content: center;
    width: 28px
}

.nav-link {
    color: var(--ink);
    font-size: .79rem;
    font-weight: 700;
    margin: 0 .35rem
}

.dropdown-menu {
    border: 1px solid var(--line);
    border-radius: 0
    text-transform: capitalize;
}

.btn {
    border-radius: 0;
    font-size: .78rem;
    font-weight: 750;
    padding: .85rem 1.2rem
}

.btn-primary {
    background: var(--teal);
    border-color: var(--teal)
}

.hero {
    background: #f5f8fa;
    background-position: center;
    background-size: cover;
    min-height: 660px;
    position: relative
}

.hero:before {
    background: linear-gradient(90deg, #f5f8fa 0%, rgba(245, 248, 250, .98) 31%, rgba(245, 248, 250, .74) 49%, rgba(245, 248, 250, .18) 70%, rgba(245, 248, 250, 0) 100%);
    content: '';
    inset: 0;
    position: absolute
}

.hero .container {
    min-height: 660px;
    position: relative;
    z-index: 1
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 780px;
    min-height: 660px
}

.eyebrow {
    color: var(--teal);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase
}

.hero h1 {
    color: var(--navy);
    font-size: clamp(3rem, 6vw, 6.2rem);
    letter-spacing: -.075em;
    line-height: .93;
    margin: 20px 0
}

.hero h1 em {
    color: var(--teal);
    font-family: Georgia, serif;
    font-weight: 400
}

.hero p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 610px
}

.slide {
    display: none
}

.slide.is-active {
    display: block
}

.hero-controls {
    bottom: 42px;
    position: absolute;
    right: 0
}

.hero-controls button {
    background: #fff;
    border: 1px solid var(--line);
    color: var(--navy);
    font-size: .66rem;
    font-weight: 800;
    height: 34px;
    margin-left: 8px;
    width: 34px
}

.hero-controls button.active {
    background: var(--teal);
    border-color: var(--teal);
    color: #fff
}

.section-pad {
    padding: 100px 0
}

.section-heading h2 {
    color: var(--navy);
    font-size: clamp(2rem, 4vw, 3.6rem);
    letter-spacing: -.055em;
    line-height: 1.04;
    margin: 14px 0
}

.section-heading p {
    color: var(--muted);
    line-height: 1.7
}

.card-clean {
    border: 1px solid var(--line);
    padding: 22px
}

.product-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, 1fr)
}
.application-grid,
.resource-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(4, 1fr)
}

.product-card h3,
.application-card h3,
.resource-card h3 {
    font-size: 1.1rem
}

.product-card p,
.application-card p,
.resource-card p {
    color: var(--muted);
    font-size: .82rem;
    line-height: 1.6
}

.price {
    color: var(--amber);
    font-weight: 800
}

.quote-band {
    background: var(--teal);
    color: #fff;
    padding: 70px 0
}

.quote-band h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: -.06em
}

.site-footer {
    background: var(--navy);
    color: rgba(255, 255, 255, .75);
    padding: 60px 0 22px
}

.footer-grid {
    display: grid;
    gap: 35px;
    grid-template-columns: 1.4fr .8fr 1fr
}

.footer-grid a {
    color: rgba(255, 255, 255, .75);
    display: block;
    font-size: .8rem;
    margin: .55rem 0
}

.footer-label {
    color: var(--amber);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .14em
}

.drawer-layer {
    display: none
}

.page-hero {
    background: #f5f8fa;
    background-position: center;
    background-size: cover;
    min-height: 530px;
    position: relative
}

.page-hero:before {
    background: linear-gradient(90deg, #f5f8fa 0%, rgba(245, 248, 250, .98) 30%, rgba(245, 248, 250, .7) 50%, rgba(245, 248, 250, .12) 72%, transparent 100%);
    content: '';
    inset: 0;
    position: absolute
}

.pro-band:before {
    background: none;
}
.pro-band .container .copy h1,
.pro-band .container .copy p{
    color: #ffffff;
    text-transform: capitalize;
}
.pro-band .container .copy p{
    font-size: 1.8em;
}

.page-hero .container {
    min-height: 530px;
    position: relative;
    z-index: 1
}

.page-hero .copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 780px;
    min-height: 530px
}

.page-hero h1 {
    color: var(--navy);
    font-size: clamp(2.8rem, 5vw, 5.4rem);
    letter-spacing: -.07em;
    line-height: .96;
    margin: 16px 0
}

.page-hero p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 620px
}

.catalog {
    display: grid;
    gap: 50px;
    grid-template-columns: 220px 1fr
}

.sidebar {
    border-left: 1px solid var(--line);
    padding-left: 22px
}

.sidebar a {
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    display: block;
    font-size: .8rem;
    padding: 12px 0
}

.sidebar a.active,
.sidebar a:hover {
    color: var(--teal)
}

.article {
    max-width: 880px
}

.article h1 {
    color: var(--navy);
    font-size: clamp(2.7rem, 5vw, 5.4rem);
    letter-spacing: -.07em;
    line-height: .95
}

.article p {
    color: var(--muted);
    line-height: 1.8
}

.quote-hero {
    background: #12304a;
    background-position: center;
    background-size: cover;
    color: #fff;
    position: relative
}

.quote-hero:before {
    background: linear-gradient(90deg, rgba(18, 48, 74, 1), rgba(18, 48, 74, .98) 31%, rgba(18, 48, 74, .8) 50%, rgba(18, 48, 74, .25) 73%, rgba(18, 48, 74, .05));
    content: '';
    inset: 0;
    position: absolute
}

.quote-hero .container {
    padding: 90px 12px;
    position: relative;
    z-index: 1
}

.quote-hero h1 {
    font-size: clamp(3rem, 6vw, 6rem);
    letter-spacing: -.08em;
    line-height: .9
}

.quote-hero h1 em {
    color: #70ded9;
    font-family: Georgia, serif
}

.quote-form {
    background: #fff;
    box-shadow: 0 16px 40px rgba(18, 48, 74, .09);
    padding: 34px
}

.form-label {
    color: var(--navy);
    font-size: .73rem;
    font-weight: 750
}

.mobile-quote {
    display: none
}

@media(max-width:991px) {
    .desktop-nav {
        display: none
    }

    .drawer-toggle {
        border: 2px solid var(--navy);
        border-radius: 10px
    }

    .drawer-layer {
        display: block;
        height: 100vh;
        inset: 0;
        opacity: 0;
        pointer-events: none;
        position: fixed;
        transition: .25s;
        z-index: 50
    }

    .drawer-layer.is-open {
        opacity: 1;
        pointer-events: auto
    }

    .drawer-scrim {
        background: rgba(18, 48, 74, .2);
        border: 0;
        inset: 0;
        position: absolute;
        width: 100%
    }

    .drawer {
        background: #fff;
        box-shadow: -12px 0 34px rgba(18, 48, 74, .15);
        height: 100vh;
        max-width: 390px;
        padding: 22px;
        position: absolute;
        right: 0;
        top: 0;
        transform: translateX(100%);
        transition: .3s;
        width: 82vw
    }

    .drawer-layer.is-open .drawer {
        transform: translateX(0)
    }

    .drawer a {
        color: var(--navy);
        display: block;
        font-weight: 700;
        padding: 13px 0
    }

    .drawer details {
        border-bottom: 1px solid var(--line)
    }

    .drawer summary {
        cursor: pointer;
        font-weight: 750;
        padding: 13px 0
    }

    .drawer summary+div {
        padding-left: 12px
    }

    .hero,
    .hero .container {
        min-height: 590px
    }

    .product-grid,
    .application-grid,
    .resource-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .catalog {
        grid-template-columns: 1fr
    }

    .sidebar {
        border-left: 0;
        padding-left: 0
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:575px) {

    .hero:before,
    .page-hero:before {
        background: linear-gradient(90deg, rgba(245, 248, 250, .99), rgba(245, 248, 250, .94) 65%, rgba(245, 248, 250, .65))
    }

    .hero h1 {
        font-size: 3.3rem
    }

    .page-hero,
    .page-hero .container {
        min-height: 440px
    }

    .product-grid,
    .application-grid,
    .resource-grid,
    .footer-grid {
        grid-template-columns: 1fr
    }

    .mobile-quote {
        align-items: center;
        background: #fff;
        border-top: 1px solid var(--line);
        bottom: 0;
        display: flex;
        justify-content: space-between;
        left: 0;
        padding: 10px 16px;
        position: fixed;
        right: 0;
        z-index: 25
    }

    .mobile-quote span {
        font-size: .72rem;
        font-weight: 700
    }

    .quote-hero:before {
        background: linear-gradient(90deg, rgba(18, 48, 74, .99), rgba(18, 48, 74, .92) 73%, rgba(18, 48, 74, .68))
    }
}