.elementor-155 .elementor-element.elementor-element-b3515ab .elementor-heading-title{color:#232323;font-family:"Oswald", Sans-serif;font-weight:700;}.elementor-155 .elementor-element.elementor-element-ffa0d5c .elementor-heading-title{font-family:"Barlow", Sans-serif;font-weight:600;}.elementor-155 .elementor-element.elementor-element-8264b17 .elementor-heading-title{color:#232323;font-family:"Barlow", Sans-serif;font-weight:700;}.elementor-155 .elementor-element.elementor-element-917ec13{color:#232323;font-family:"Barlow", Sans-serif;font-weight:400;}.elementor-155 .elementor-element.elementor-element-0c191cc .elementor-heading-title{font-family:"Barlow", Sans-serif;font-weight:700;}.elementor-155 .elementor-element.elementor-element-34b82ce{font-family:"Barlow", Sans-serif;font-weight:400;}.elementor-155 .elementor-element.elementor-element-8aa4a69 .tested-with-list .tested-with-list-item .icon{font-size:80px;padding:0px 0px 10px 0px;}.elementor-155 .elementor-element.elementor-element-8aa4a69 .tested-with-list .tested-using-headline{background-color:#232323;color:#fff;font-family:"Oswald", Sans-serif;font-weight:700;padding:10px 10px 10px 10px;text-align:center;}.elementor-155 .elementor-element.elementor-element-8aa4a69 .tested-with-list .tested-with-list-item{border-width:1px;border-style:solid;border-color:#211224;font-family:"Barlow", Sans-serif;font-weight:600;padding:10px 10px 10px 10px;}.elementor-155 .elementor-element.elementor-element-94bac01 .wcag-include .title-area .icon{width:30px;}.elementor-155 .elementor-element.elementor-element-94bac01 .wcag-include .description{color:#232323;font-family:"Barlow", Sans-serif;font-weight:600;}/* Start custom CSS for html, class: .elementor-element-69d47d8 *//* Styling per our companies style guides */
@import url('https://fonts.googleapis.com/css2?family=Barlow&family=Oswald:wght@700&display=swap');

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
}

* {
    font-family: 'Barlow', sans-serif;
}

:root {
    --link-color: black;
    --cur-link-color: #0050c8;
    --bg-color: white;
    --border-radius: 0.5rem;
}

.product-card-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 1rem;
}

.product-card-list .product-card  {
    position: relative;
    border-radius: var(--border-radius);
    color: #222;
    overflow: hidden;
    max-width: 25rem;
    box-shadow: 0px 2px 3px -1px #222;
    transition: scale 70ms ease, box-shadow 70ms ease;
    scale: 1;
}

.product-card-list .product-card:is(:hover, :focus-within) {
    scale: 1.015;
    box-shadow: 0px 4px 7px -2px #222;
}

.product-card-list .product-card:focus-within {
    outline: 0.2rem solid black;
    outline-offset: 0.2rem;
}

/* visual formatting */
.product-card-list .product-card p {
    margin: 0;
    padding: 0rem 1rem 1rem;
}

.product-card-list .product-card h2 {
    margin: 0;
    padding: 0.75rem 1rem;
}

.product-card-list .header-wrapper {
    padding: 0;
}

.product-card-list img {
    width: 100%;
}

.product-card-list .header-wrapper {
    display: flex;
    flex-direction: column;
}

/* Removes the default focus indicator for the link. 
 * We only remove the default focus indicator because we
 * are adding our own.
 */
.card-link:focus-within {
    outline: none;
}

.product-card-list .card-link::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.product-card-list .header-wrapper a {
    text-decoration: none;
    color: var(--link-color);
}

.product-card-list .product-card:active {
    scale: 1;
}


@media (prefers-reduced-motion) {
    .product-card-list li.product-card {
        transition: 0ms !important;
    }
}/* End custom CSS */