@font-face {
    font-family: 'Microgramma';
    src: url('../fonts/MicrogrammaDBolExt Regular.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
}

/*DEBUG* {
    outline: 1px solid red;
}*/

html {
    scroll-behavior: smooth;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    min-height: 100%;
    overflow-x: hidden;
    width: 100%;
}

h1 {
    font-family: 'Microgramma', sans-serif;
    text-transform: uppercase;
    line-height: 1.2;
}

body, h2, h3, h4, h5, h6, a {
    font-family: "PT Sans", sans-serif;
}

nav.menu-links {
    display: flex;
    flex-direction: row;
    padding: .75rem 2rem;
    padding-bottom: 1.25rem;
    gap: 2.25rem;
}

    nav.menu-links a {
        font-size: 1rem;
        position: relative;
        text-transform: uppercase;
        color: #231F20;
        text-decoration: none;
        font-weight: 700;
    }

        nav.menu-links a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -3px;
            width: 100%;
            height: 2px;
            background-color: #FFC425;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        nav.menu-links a:hover::after {
            transform: scaleX(1);
        }

#aboutInfo {
    max-width: 1200px;
    padding: 2.5rem 1rem;
    margin: 0 auto;
}

#about-us {
    padding: 2.25rem 0;
}

.promaxx-products {
    max-width: 1200px;
    width: 100%;
    padding: 2.5rem 1rem;
    margin: 0 auto;
}

.productpill-row-wrap {
    display: flex;
    flex-wrap: nowrap;
    gap: .5rem;
    margin: 1rem 0 1.5rem 0;
    height: 35px;
}

.productpill-row-wrap {
    display: flex;
    flex-wrap: nowrap;
    gap: .5rem;
    margin: 1rem 0 1.5rem 0;
    height: 35px;
}

.pill {
    padding: .5rem 1rem;
    border-radius: .125rem;
    border: 1px solid #808285;
    background: #fff;
    vertical-align: middle;
    line-height: 1.2;
    font-size: .75rem;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    color: #555;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.15s;
}

    .pill:hover {
        background: #f0f0ec;
        color: #111;
    }

    .pill.active {
        background: #FFC425;
        color: #231F20;
        border-color: #231F20;
    }

.card {
    background: #fff;
    border: 1px solid #e5e5e0;
    border-radius: .75rem;
    padding: 1.75rem 2.25rem;
    display: none;
    animation: fadeIn 0.2s ease;
    max-width: 1200px;
    width: 100%;
    justify-self: center;
}

    .card.active {
        display: flex;
        flex-direction: row;
        gap: 2rem;
    }

.card-product-image {
    flex: 1;
    min-width: 0;
}

    .card-product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: .5rem;
        display: block;
    }

.card-content-info {
    flex: 1;
    min-width: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0;
}

.card-title {
    font-size: 1.5rem;
    font-family: 'Microgramma', sans-serif;
    font-weight: 800;
    letter-spacing: -0.0125rem;
    text-transform: uppercase;
    color: #000;
    margin: 0 0 .25rem;
}

.card-subtitle {
    font-size: .875rem;
    letter-spacing: -0.025rem;
    color: #808285;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.card-body {
    font-size: 1rem;
    color: #231F20;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
}

.feat {
    display: flex;
    align-items: center;
    gap: .5rem;
    background: #f7f7f3;
    border-radius: .5rem;
    padding: .625rem 1.125rem;
    font-size: .875rem;
    white-space: nowrap;
    color: #222;
}

.body-site-font {
    font-size: 1.125rem;
    color: #231F20;
}

    .body-site-font p {
        margin-bottom: 1rem;
    }

.topcontainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 3rem 2rem;
    padding-bottom: 2rem;
    box-sizing: border-box;
    border-bottom: 1px solid #000;
}

    .topcontainer img {
        max-width: 25%;
        aspect-ratio: 16/3;
        height: auto;
        width: auto;
    }

.img-link {
    position: relative;
}

header {
    padding: 2px;
    text-align: center;
    place-items: center;
    max-width: 100%;
    width: 100%;
    justify-self: center;
}

main {
    max-width: 100%;
    margin: auto;
}

.image-header {
    margin: 0;
    padding-bottom: 2rem;
    text-align: center;
    max-width: 100%;
    justify-self: center;
}

    .image-header img {
        width: 100%;
        display: block;
    }

.button-link, .button-link:visited {
    display: inline-block;
    white-space: nowrap;
    text-transform: uppercase;
    padding: .75rem 1rem;
    border: 1px solid #FFC425;
    border-radius: .25rem;
    cursor: pointer;
    background-color: #FFC425;
    transition: background-color 0.2s;
}

    .button-link:hover {
        background-color: #000;
        color: #FFC425;
        border: 2px solid #FFC425;
        border-radius: .25rem;
    }

    .button-link, .button-link:visited a {
        color: #000;
        text-align: center !important;
        text-decoration: none;
        font-weight: 700;
        font-size: 1rem;
    }

footer {
    width: 100%;
    aspect-ratio: 16 / 3;
    background-image: url('/images/Footer.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#footerContentDiv {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-inner-content-2 {
    padding: 3rem 4rem;
}

.footer-inner-content-1 {
    padding: 3rem;
    vertical-align: middle;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: row;
    gap: 3rem;
}

    .footer-inner-content-1 p {
        color: white;
        line-height: 1.5;
    }

        .footer-inner-content-1 p a {
            text-decoration: none;
            color: inherit;
        }

#footerLogoContact {
    padding: 0 2rem;
}

img.footer-logo {
    padding-bottom: 1rem;
    width: 100%;
}

#footerNavMenu {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

    #footerNavMenu.foot-menu-links a {
        text-decoration: none;
        color: #FFF;
        font-size: 1rem;
        font-weight: 600;
        text-transform: uppercase;
    }

@media all and (max-width: 1200px) {
    .topcontainer {
        max-width: 100%;
    }

    #aboutInfo {
        padding: 2.5rem 2rem;
    }

    .card {
        padding: 1.25rem 2rem;
    }
}

@media all and (max-width: 1024px) {
    .feat {
        padding: .5rem .875rem;
    }

    .promaxx-products {
        padding: 2.25rem 1.5rem;
    }

    .productpill-row-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 4px;
    }

        .productpill-row-wrap::-webkit-scrollbar {
            display: none;
        }

    .card-body {
        font-size: .9375rem;
    }

    #aboutInfo {
        padding: 2.25rem 2rem;
    }

    .body-site-font p {
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }

    .footer-inner-content-1 {
        padding: 3rem 1rem;
    }

    .footer-inner-content-2 {
        padding: 3rem 2rem;
    }
}

@media all and (max-width: 768px) {
    .topcontainer {
        padding: 2.75rem 1.5rem;
    }

        .topcontainer img {
            max-width: 35%;
        }

    .image-header {
        padding-bottom: 1.125rem;
    }

    .button-link, .button-link:visited a {
        font-size: .875rem;
    }

    .card.active {
        flex-direction: column;
    }

    .features {
        display: grid;
        gap: .75rem;
        margin-bottom: 1.5rem;
    }

    .feat {
        gap: .75rem;
        padding: .5rem 1rem;
    }

    .promaxx-products {
        padding: 2.5rem 1.75rem;
    }

    .productpill-row-wrap {
        margin: 1rem 0 1.125rem 0;
    }

    .card {
        padding: 1.25rem 1.75rem;
    }

        .card.active {
            gap: 1.25rem;
        }

    .card-body {
        margin-bottom: 1.5rem;
    }

    .body-site-font {
        font-size: 1rem;
    }

    .footer-inner {
        padding: 24px 16px;
    }

    footer {
        aspect-ratio: auto;
    }

    #footerLogoContact {
        padding: 0;
    }

    .footer-inner-content-2 {
        padding: 3rem 1rem 0 0;
    }
}

@media all and (max-width: 640px) {
    .topcontainer {
        padding: 2.75rem 1rem;
    }

    .topcontainer img {
        max-width: 40%;
    }

    .button-link, .button-link:visited {
        padding: .5rem .75rem;
    }

        .button-link, .button-link:visited a {
            font-size: .75rem;
        }

    #aboutInfo {
        padding: 1.75rem;
    }

    .body-site-font {
        font-size: .9375rem;
    }

    footer {
        aspect-ratio: auto;
    }

    img.footer-logo {
        width: 100%;
    }

    #footerContentDiv {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }

    .footer-inner-content-1 {
        flex-direction: row;
        justify-content: space-between;
        padding: 0;
        margin: 0;
    }

    #footerNavMenu {
        padding-right: .75rem;
    }

        #footerNavMenu.foot-menu-links a {
            font-size: .875rem;
        }

    .footer-inner-content-2 {
        padding: 0;
    }

    #footerLogoContact {
        padding: 0;
    }
}

@media all and (max-width: 480px) {
    nav.menu-links {
        padding: .75rem 1rem;
        padding-bottom: 1.125rem;
    }

        nav.menu-links a {
            font-size: .875rem;
        }

    .topcontainer {
        padding: 2.5rem 1rem;
    }

        .topcontainer img {
            max-width: 35%;
        }

    #bodyContentDiv,
    #footerContainer,
    #footerContentDiv,
    .footer-inner-content-1,
    .footer-inner-content-2 {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    h1 {
        font-size: 1.75rem;
    }

    .promaxx-products {
        padding: 2rem 1.25rem;
    }

    .card {
        padding: 1rem 1.5rem;
    }

        .card.active {
            gap: 1rem;
        }

    .card-body {
        font-size: .9375rem;
    }

    .features {
        gap: .5rem;
    }

    .feat {
        padding: .5rem .75rem;
    }

    #about-us {
        padding: 1rem 0;
    }

    #aboutInfo {
        padding: 2rem;
        padding-top: .75rem;
    }

    .body-site-font {
        font-size: 1rem;
    }

        .body-site-font p {
            margin-bottom: 1rem;
        }

    .button-link {
        white-space: nowrap;
    }
}

@media all and (max-width: 320px) {
    nav.menu-links {
        padding: .75rem .875rem;
        padding-bottom: 1rem;
        gap: 1rem;
    }

        nav.menu-links a {
            font-size: .75rem;
            white-space: nowrap;
        }

    .button-link, .button-link:visited {
        padding: .25rem .5rem;
    }

    .button-link, .button-link:visited a {
        font-size: .625rem;
        letter-spacing: -.0125rem;
    }

    .topcontainer {
        padding: 2rem .75rem;
    }

    .topcontainer img {
        max-width: 30%;
    }

    .promaxx-products {
        padding: 1.25rem 1rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    .card-title {
        font-size: 1.125rem;
    }

    .pill {
        padding: .5rem .75rem;
    }

    .card {
        padding: 1rem;
    }

    #about-us {
        padding: 0;
    }

    #aboutInfo {
        padding: 1.25rem;
    }

    .features {
        display: grid;
        grid-template-columns: 1fr;
        gap: .5rem;
    }

    .feat {
        display: flex;
        align-items: center;
        gap: .5rem;
        background: #f7f7f3;
        border-radius: .25rem;
        padding: .5rem .875rem;
        font-size: .75rem;
        white-space: nowrap;
        color: #222;
    }

    .footer-inner-content-1 {
        gap: 1.5rem;
    }

    #footerNavMenu {
        padding-right: 0;
    }
}