.hero *:before,
.section-dark *:before,
.section-light *:before,
.sample-kit-wrapper *:before,
.features-section *:before,
.blog-section *:before,
.purchase-cta *:before,
.made-in-usa *:before,
.testimonials-section *:not(.fa-solid):not(.swiper-button-prev):not(.swiper-button-next):before,
.hero *:after,
.section-dark *:after,
.section-light *:after,
.sample-kit-wrapper *:after,
.features-section *:after,
.blog-section *:after,
.purchase-cta *:after,
.made-in-usa *:after,
.testimonials-section *:not(.fa-solid):not(.swiper-button-prev):not(.swiper-button-next):after {
    display: none;
}

/* ---------- FONT FACES: Scala Sans OT ---------- */
@font-face {
    font-family: 'Scala Sans';
    src: url('/fonts/ScalaSansOT-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Scala Sans';
    src: url('/fonts/ScalaSansOT-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Scala Sans';
    src: url('/fonts/ScalaSansOT-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Scala Sans Condensed';
    src: url('/fonts/ScalaSansOT-CondRegular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Scala Sans Condensed';
    src: url('/fonts/ScalaSansOT-CondBold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --tilton-navy: #3b4a54;
    --tilton-navy-dark: #2c383f;
    --tilton-cream: #9daca1;
    --tilton-red: #b14747;
    --tilton-red-dark: #8a3232;
    --tilton-grey-dark: #565556;
    --tilton-text-white: #ffffff;
    --tilton-text-black: #000000;
    --tilton-black: #000000;
    --tilton-border: #ffffff33;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: TitilliumText22LMedium, sans-serif;
}

.tilton-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 15px
}

/* ---------- HERO ---------- */
.hero {
    background: url(/assets/images/16.png);
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    padding: 60px 0 260px 0;
}

.hero h1 {
    font-weight: 400;
    font-size: 40px;
    line-height: 1.3;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    color: var(--tilton-text-white);
    text-shadow: 2px 2px 2px #000;
    margin-bottom: 15px;
    margin-top: 0;
    font-family: oswald, sans-serif;
}

.hero .subtitle {
    font-weight: 400;
    font-size: 24px;
    line-height: 35px;
    text-align: center;
    color: var(--tilton-text-white);
    text-shadow: 2px 2px 2px #000;
    margin: 0;
    font-family: oswald, sans-serif;
    /* font-family: TitilliumText22LMedium, sans-serif; */
    color: #ffffff;
}

.hero .shop-by-category-label {
    font-weight: 400;
    font-size: 35px;
    text-align: center;
    text-transform: uppercase;
    color: #8b0b04;
    text-shadow: 2px 2px 1px #FFFFFF;
    margin: 35px 0;
    font-family: oswald, sans-serif;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 900px;
    margin: 0 auto 85px;
}

.category-card {
    position: relative;
    display: block;
    background: rgba(86, 85, 86, .831);
    padding: 8px;
    border-radius: 10px;
    text-decoration: none;
    transition: transform .4s ease;
    text-decoration: none !important;
}

.category-card:hover {
    /* transform: scale(0.95); */
}

.category-card:focus-visible {
    outline: none;
}

.category-card img {
    width: 100%;
    /* height: 150px; */
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
    border-radius: 4px;
}

.category-card span {
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    display: block;
    text-shadow: 1px 1px 1px #000000;
    color: #fff;
    font-family: scalasansbold, sans-serif;
    font-size: 19px;
    line-height: normal;
    margin-bottom: 0;
    padding-top: 5px;
    padding-bottom: 0;
    text-shadow: 2px 2px 2px #000;
    padding-right: 19px;
    padding-left: 18px;
}

.btn-red {
    /* background: var(--tilton-red); */
    font-weight: 500;
    line-height: 25px;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none !important;
    -webkit-appearance: none;
    background-color: #b14747;
    border: 2px solid #fff !important;
    border-radius: 8px;
    color: #fff !important;
    cursor: pointer;
    font-size: 20px;
    transition: all .3s ease-in-out;
    display: inline-block;
    font-family: scalasansbold, sans-serif;
    margin-bottom: 0;
    padding: 13px 30px;
    box-sizing: border-box;
    line-height: 1.1;
}

.btn-red:hover {
    /* background: var(--tilton-black); */
    opacity: .8;
}

/* ---------- DARK INFO SECTION ---------- */
.section-dark {
    margin-top: -170px;
}

.grey-container {
    background: var(--tilton-grey-dark);
    color: var(--tilton-text-white);
    text-align: center;
    padding: 30px 80px 30px 80px;
    border-radius: 16px 16px 0 0;
    margin-bottom: -1px;
}

.section-dark h2,
.section-light h2 {
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 30px;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--tilton-cream);
    margin: 0 0 12px 0;
    font-family: scalasansbold, sans-serif;
}

.section-dark .advantage_heading {
    margin-top: 55px;
}

.section-dark p,
.section-light p {
    font-weight: 400;
    font-size: 20px;
    line-height: 1.3;
    margin: 0 0 10px 0;
    font-family: TitilliumText22LMedium, sans-serif;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 0 auto;
    padding: 0 0 30px 0;
}

.advantage-grid img {
    width: 100%;
    /* height: 220px; */
    object-fit: cover;
    display: block;
    box-shadow: 5px 5px 5px #00000033;
    aspect-ratio: 1.56/1;
}

/* ---------- DECORATIVE SOLUTIONS ---------- */

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 0 auto;
    padding: 10px 0 50px 0;
}

.solutions-grid img {
    width: 100%;
    /* height: 350px; */
    object-fit: cover;
    display: block;
    box-shadow: 5px 5px 5px 0px #00000033;
    transition: all 0.3s ease;
    aspect-ratio: 1;
}

.solutions-grid a:hover img {
    /* transform: scale(0.97); */
}
.solutions-grid a span:hover {
    color: #fff;
}

.solutions-grid span {
    font-weight: 400;
    font-size: 22px;
    line-height: 25px;
    text-align: center;
    text-transform: uppercase;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-thickness: 0%;
    text-decoration-skip-ink: auto;
    color: var(--tilton-cream);
    padding-top: 10px;
    display: inline-block;
    font-family: scalasansbold, helvetica neue, Helvetica, Arial, sans-serif;
}

.section-light .grey-container,
.section-grey .grey-container {
    border-radius: 0;
    padding: 0 80px
}

.product-descriptions {
    text-align: left;
}

.product-descriptions h3 {
    margin: 0 0 7px 0;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.2;
    color: var(--tilton-white);
    font-family: scalasansbold, sans-serif;
}

.product-descriptions p {
    font-weight: 300;
    font-size: 20px;
    line-height: 30px;
    padding-bottom: 30px;
    margin: 0;
}

/* ---------- SHOP BY PRODUCTS (SWIPER) ---------- */
.section-grey .grey-container {
    position: relative;
    padding: 50px 80px;
}

.section-grey h2 {
    font-weight: 400;
    font-size: 30px;
    line-height: 1.3;
    text-align: center;
    text-transform: uppercase;
    margin: 0 0 30px 0;
    color: var(--tilton-cream);
    font-family: scalasansbold, sans-serif;
}

.products-swiper,
.testimonials-swiper {
    position: static;
}

/* .products-swiper .swiper-wrapper,
    .testimonials-section .swiper-wrapper {
        height: auto;
    } */
.products-swiper .swiper-wrapper {
    height: auto;
}

.product-slide img {
    width: 100%;
    /* height: 270px; */
    object-fit: cover;
    display: block;
    transition: all 0.3s ease;
    aspect-ratio: 1;
}

.product-slide a:hover img {
    /* transform: scale(0.97); */
}

.product-slide a {
    text-decoration: none;
}

.product-slide p {
    padding: 20px 0;
    margin: 0;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    text-align: left;
    color: var(--tilton-text-white);
}

.products-swiper .swiper-button-prev,
.products-swiper .swiper-button-next,
.testimonials-section .swiper-button-prev,
.testimonials-section .swiper-button-next {
    position: absolute;
    top: 0px !important;
    right: 0px !important;
    left: auto;
    width: 40px;
    height: 40px;
    background: #D9D9D9;
    font-size: 14px;
    border-radius: 50%;
    transform: none !important;
    margin: 0;
}

.slider_wrap {
    position: relative;
}

.products-swiper .swiper-button-prev:after,
.products-swiper .swiper-button-next:after,
.testimonials-swiper .swiper-button-prev:after,
.testimonials-swiper .swiper-button-next:after {
    font-size: 16px;
    color: #565556;
    font-weight: 900;
}

.products-swiper .swiper-button-prev,
.testimonials-swiper .swiper-button-prev {
    right: 50px !important;
}

.products-swiper .swiper-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
}

.products-swiper .swiper-pagination-bullet {
    background: #D9D9D9;
    opacity: .6;
    width: 15px;
    height: 15px;
}

.products-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: #fff;
    width: 20px;
    height: 20px;
}

/* ---------- SAMPLE KIT CTA ---------- */
.sample-kit-wrapper .grey-container {
    border-radius: 0;
}

.sample-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* border: 20px solid #fff; */
    padding: 20px;
    background: #fff;
}

.sample-cta img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sample-cta .copy {
    background: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    border: none;
    box-shadow: none !important;
}

.sample-cta h3 {
    margin-bottom: 14px;
    font-weight: 400;
    font-size: 26px;
    line-height: 40px;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: var(--tilton-text-black);
    margin: 15px 0;
    font-family: scalasansbold, sans-serif;
}

.sample-cta p {
    margin: 0 0 40px 0;
    font-weight: 300;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0%;
    color: var(--tilton-text-black);
}

.sample-cta .button {
    background: #33557A;
    padding: 15px 25px;
    font-size: 20px;
    color: var(--tilton-cream);
    text-decoration: none;
    font-weight: 400;
    text-transform: uppercase;
    border-radius: 10px;
    display: inline-block;
    width: max-content;
    transition: background .2s ease;
    border: 1px solid #d8d8d8;
    line-height: 1;
    font-family: scalasansbold, sans-serif;
}

.sample-cta .button:hover,
.testimonials-section .button:hover,
.see-products a:hover,
.blog-section .button:hover,
.purchase-cta .button:hover {
    background: #9daca1;
    color: #33557A;
    border: 1px solid #9daca1;
}

/* ---------- EFFICIENT / FEATURES ---------- */
.features-section .grey-container {
    padding: 30px 80px;
    border-radius: 0;
}

.features-section h2 {
    margin: 0 0 10px 0;
    font-weight: 400;
    font-size: 30px;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    color: var(--tilton-cream);
    font-family: scalasansbold, sans-serif;
}

.features-info {
    text-align: left;
}

.features-info h4 {
    font-weight: 400;
    font-size: 24px;
    line-height: 35px;
    margin: 0 0 5px 0;
    font-family: scalasansbold, sans-serif;
}

.features-section .sub-copy {
    font-weight: 400;
    font-size: 20px;
    text-align: center;
    margin: 0 0 25px 0;
    font-size: 20px;
    line-height: 1.6;
    font-family: TitilliumText22LMedium, sans-serif;
}

.features-info p {
    font-weight: 300;
    font-size: 20px;
    line-height: 35px;
    letter-spacing: 0%;
    margin: 0 0 20px 0;
    font-family: TitilliumText22LMedium, sans-serif;
}

.testimonials-section .grey-container {
    padding: 15px 0;
    border-radius: 0;
}

.testimonials-section .tilton-container {
    position: relative;
}

/* .testimonials-section .swiper-slide {
        background: #fff;
        padding: 20px 25px;
    } */
.testimonials-section .swiper-slide {
    background: #fff;
    padding: 20px 25px;
    height: auto;
}

.testimonials-section .swiper-wrapper {
    align-items: stretch;
}

.testimonial-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-meta {
    display: flex;
    justify-content: space-between;
    font-size: .8rem;
    color: #888;
    margin-bottom: 6px;
}

.testimonial-meta span {
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    text-align: left;
    color: #828282;
}

.testimonial-meta span label,
.testimonial-meta .testimonial-date {
    color: var(--tilton-text-black);
    display: block;
    margin-bottom: 0;
}

.testimonial-stars {
    color: #FFAE00;
    letter-spacing: 2px;
    text-align: left;
    font-size: 14;
    padding: 12px 0;
}

.testimonial-card h4 a {
    color: #828282 !important;
}

.testimonial-stars i {
    padding: 0 2px;
}

.testimonial-card {
    text-align: left;
}

.testimonials-section .swiper-button-next {
    right: 40px !important;
}

.testimonials-section .swiper-button-prev {
    right: 90px !important;
}

.testimonial-card h4 {
    margin: 0 0 5px;
    color: var(--tilton-text-black);
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0%;
}

.testimonial-card p {
    color: #555;
    /* font-style: italic; */
    font-weight: 350;
    font-size: 14px;
    line-height: 15px;
    margin: 0;
}

.testimonials-section h2 {
    font-weight: 400;
    font-size: 30px;
    line-height: 45px;
    text-align: center;
    text-transform: uppercase;
    color: var(--tilton-cream);
    margin: 0 0 30px 0;
    font-family: scalasansbold, sans-serif;
}

.testimonials-section .button,
.see-products a,
.blog-section .button {
    /* background: -webkit-linear-gradient(top, #33557a, #33557a 70%, #576b82 0, #576b82 74%, #263c54 0, #43556a); */
    padding: 15px 20px;
    background: #33557A;
    display: inline-block;
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--tilton-cream);
    letter-spacing: .5px;
    border-radius: 10px;
    margin-top: 30px;
    transition: background .2s ease;
    border: 1px solid #d8d8d8;
    font-family: scalasansbold, sans-serif;
    height: 52px;
}

.see-products a i {
    margin-left: 6px;
    font-size: 0.75em;
    vertical-align: 1px;
}

.see-products a i,
.blog-section .button i {
    margin-left: 6px;
    font-size: 0.75em;
    vertical-align: 1px;
}

.button i {
    font-size: 18px !important;
}

.button i::before {
    display: block;
}

/* ---------- BLOG SECTION ---------- */
.blog-section .grey-container {
    padding: 45px 80px;
    border-radius: 0;
}

.blog-section h2 {
    margin: 0 0 30px 0;
    font-weight: 400;
    font-size: 30px;
    line-height: 45px;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    color: var(--tilton-cream);
    font-family: scalasansbold, sans-serif;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 0 auto 20px;
}

.blog-card {
    background: #fff;
    text-align: left;
    padding: 10px;
}

.blog-card img {
    width: 100%;
    /* height: 310px; */
    object-fit: cover;
    display: block;
    aspect-ratio: 1.16/1;
}

.blog-card h4 {
    margin: 0;
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
    letter-spacing: 0%;
    text-align: center;
    color: var(--tilton-text-black);
    padding: 25px 0;
}

.purchase-cta .grey-container {
    padding: 15px 80px;
    border-radius: 0;
}

.purchase-cta h2 {
    font-weight: 400;
    font-size: 30px;
    line-height: 25px;
    text-align: center;
    text-transform: uppercase;
    color: var(--tilton-cream);
    margin: 0 0 30px 0;
    font-family: scalasansbold, sans-serif;
}

.purchase-cta .button {
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    text-align: center;
    background: #33557A;
    padding: 15px 30px;
    border: 1px solid #d8d8d8;
    color: var(--tilton-cream);
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 10px;
    display: block;
    max-width: 265px;
    margin: 0 auto 10px auto;
    transition: background .2s ease;
    font-family: scalasansbold, sans-serif;
}

.purchase-cta p {
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
    text-align: center;
    padding: 20px 0;
    margin: 0;
    font-family: TitilliumText22LMedium, sans-serif;
}

.made-in-usa h2 {
    font-weight: 400;
    font-size: 30px;
    line-height: 25px;
    text-align: center;
    text-transform: uppercase;
    color: var(--tilton-cream);
    margin: 0;
    padding: 10px 0 30px;
    font-family: scalasansbold, sans-serif;
}

.made-in-usa .grey-container {
    border-radius: 0 0 16px 16px;
    padding: 0 80px 60px 80px;
    margin-bottom: 30px;
}

.category-card img:hover {
    opacity: 0.85;
}

.solutions-grid a, 
.solutions-grid a span {
    text-decoration: underline !important;
    text-decoration-thickness: auto !important; /* or a fixed value like 1px */
    text-decoration-line: underline !important; /* extra safety net */
}
.purchase-cta .button, .sample-cta .button, .testimonials-section .button, .blog-section .button, .testimonials-section .button, .see-products a, .blog-section .button{
    height: 52px;
}
@media (min-width: 1700px) {
    .tilton-container {
        max-width: 1480px;
        margin: 0 auto;
    }
}

@media (max-width: 1199px) {
    .grey-container {
        padding: 40px 60px 20px 60px;
    }

    .hero {
        padding: 60px 0 250px 0;
    }

    .purchase-cta p {
        line-height: 1.2;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero .subtitle {
        font-size: 24px;
        line-height: 1.3;
    }

    .hero .shop-by-category-label {
        font-size: 24px;
    }

    .category-card span {
        font-size: 18px;
    }

    .btn-red {
        /* font-size: 28px; */
        /* padding: 20px 40px; */
    }

    .product-slide img {
        /* height: 200px; */
    }

    .section-dark p,
    .section-light p,
    .features-section .sub-copy,
    .features-info p,
    .purchase-cta p {
        /* font-size: 24px; */
    }

    .section-dark h2,
    .section-light h2,
    .testimonials-section h2,
    .blog-section h2,
    .purchase-cta h2,
    .made-in-usa h2,
    .features-section h2,
    .section-grey h2 {
        font-size: 28px;
        line-height: 1.3;
    }

    .product-descriptions h3,
    .features-info h4 {
        font-size: 26px;
    }

    .product-slide p {
        font-size: 18px;
    }

    .blog-card h4 {
        font-size: 18px;
    }
}

@media (max-width: 991px) {
    .hero .subtitle br {
        display: none;
    }

    .product-descriptions h3,
    .features-info h4 {
        font-size: 22px;
        line-height: 1.2;
    }

    .section-dark h2,
    .section-light h2,
    .testimonials-section h2,
    .blog-section h2,
    .purchase-cta h2,
    .made-in-usa h2,
    .features-section h2,
    .section-grey h2 {
        font-size: 28px;
        line-height: 1.3;
    }

    .section-dark p,
    .section-light p,
    .features-info p {
        font-size: 22px;
        margin: 0 0 10px 0;
    }

    .product-descriptions p {
        margin-bottom: 0;
    }

    .product-slide p {
        padding: 15px 0;
        font-size: 20px;
    }

    .features-section .sub-copy {
        font-size: 22px;
        line-height: 1.1;
    }

    .sample-cta h3 {
        font-size: 22px;
        line-height: 28px;
    }

    .sample-cta .button,
    .testimonials-section .button,
    .blog-section .button {
        padding: 12px 20px;
        font-size: 18px;
    }

    .sample-cta p {
        font-size: 16px;
    }

    .blog-card h4 {
        font-size: 18px;
        padding: 15px 0;
    }

    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-card:nth-child(3):last-child {
        grid-column: 1 / -1;
        justify-self: center;
        width: 100%;
        max-width: calc(50% - 10px);
    }

    .category-grid {
        /* grid-template-columns: repeat(2, 1fr); */
    }

    .section-dark p,
    .section-light p,
    .features-section .sub-copy,
    .features-info p,
    .purchase-cta p {
        font-size: 22px;
        line-height: 1.3;
    }

    .grey-container {
        padding: 40px 40px 20px 40px;
    }

    .advantage-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-section .swiper-button-prev,
    .testimonials-section .swiper-button-next {
        /* top: 34px !important; */
    }

    .products-swiper .swiper-button-prev,
    .products-swiper .swiper-button-next {
        /* top: 68px !important; */
    }

    .section-light .grey-container,
    .section-grey .grey-container {
        padding: 0 40px;
    }

    .features-section .grey-container,
    .blog-section .grey-container,
    .purchase-cta .grey-container {
        padding: 30px 40px;
    }

    .solutions-grid span {
        font-size: 20px;
    }
    .purchase-cta .button, .sample-cta .button, .testimonials-section .button, .blog-section .button, .testimonials-section .button, .see-products a, .blog-section .button {
        font-size: 18px;
        height: 52px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    section.purchase-cta .button-group {
        display: flex;
        flex-direction: column;
    }

    .purchase-cta .button {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .sample-cta {
        grid-template-columns: 1fr;
    }

    .category-grid,
    .advantage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .hero h1 {
        font-size: 20px;
    }

    .category-card span {
        font-size: 18px;
        padding: 10px 0;
    }

    .btn-red {
        /* font-size: 20px; */
        /* padding: 20px 40px; */
        font-size: 18px;
        margin-bottom: 10px;
        padding: 12px 15px;
    }

    .hero {
        padding: 30px 0 200px 0;
    }

    .blog-section .grey-container {
        padding: 20px 20px;
    }

    .category-grid,
    .advantage-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-grid {
        margin-bottom: 30px;
    }

    .advantage-grid {
        grid-template-columns: repeat(1, 1fr);
        margin-top: 30px;
    }

    .advantage-grid img {
        /* height: 200px; */
    }

    .product-slide img {
        /* height: 150px; */
    }

    .product-slide p {
        padding: 8px 0;
        font-size: 16px;
    }

    .solutions-grid {
        grid-template-columns: repeat(1, 1fr);
        padding-bottom: 40px;
    }

    .section-dark .grey-container {
        padding-top: 50px;
    }

    .grey-container,
    .section-grey .grey-container,
    .section-light .grey-container,
    .section-grey .grey-container,
    .features-section .grey-container,
    .purchase-cta .grey-container,
    .made-in-usa .grey-container {
        padding: 20px 20px 10px 20px;
    }

    .section-grey .grey-container {
        padding-bottom: 40px;
    }

    .section-dark h2,
    .section-light h2,
    .testimonials-section h2,
    .blog-section h2,
    .purchase-cta h2,
    .made-in-usa h2,
    .features-section h2,
    .section-grey h2 {
        font-size: 22px;
    }

    .section-grey h2,
    .testimonials-section h2,
    .blog-section h2,
    .purchase-cta h2,
    .made-in-usa h2 {
        /* font-size: 30px; */
    }

    .blog-card:nth-child(3):last-child {
        grid-column: 1;
        justify-self: center;
        width: auto;
        max-width: 100%;
    }

    .made-in-usa .grey-container {
        padding-top: 0;
    }

    .made-in-usa h2 {
        padding-bottom: 10px;
    }

    .sample-cta .copy {
        padding: 0;
    }

    .sample-cta p {
        margin: 0 0 20px 0;
    }

    .features-info {
        /* text-align: center; */
    }

    .testimonials-section .swiper-button-prev,
    .testimonials-section .swiper-button-next,
    .testimonials-section .swiper-button-prev,
    .testimonials-section .swiper-button-next,
    .products-swiper .swiper-button-prev,
    .products-swiper .swiper-button-next {
        position: static;
        display: inline-flex;
        margin-top: 30px;
        margin-right: 5px;
        margin-left: 5px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .section-dark p,
    .section-light p,
    .features-section .sub-copy,
    .features-info p,
    .purchase-cta p {
        font-size: 18px;
    }

    .solutions-grid span {
        font-size: 18px;
        padding-top: 11px;
    }

    .product-descriptions p {
        padding-bottom: 20px;
    }

    .section-dark .advantage_heading {
        margin-top: 40px;
    }

    .testimonials-section .grey-container {
        padding: 15px 0px;
    }

    .testimonials-section .grey-container h2 {
        padding-left: 15px;
        padding-right: 15px;
    }

    .testimonials-section .swiper-slide {
        padding: 15px;
    }

    .hero .subtitle {
        font-size: 18px;
    }

    .grey-container a.button {
        padding: 12px 15px;
        font-size: 16px;
        line-height: 1.2;
    }

    section.sample-kit-wrapper .grey-container {
        padding: 10px 20px;
    }

    .sample-cta {
        padding: 15px;
    }
    .purchase-cta .button, .sample-cta .button, .testimonials-section .button, .blog-section .button, .testimonials-section .button, .see-products a, .blog-section .button {
        height: 50px;
    }
}

@media(min-width:568px) {
    .slider_wrap h2 {
        max-width: calc(100% - 280px);
        margin-left: auto;
        margin-right: auto;
    }
}
