.banner-image {
    object-fit: cover;
    width: 100%;
    height: 240px;
    /* box-shadow: 0px 0px 2px rgb(0 0 0 / 0.5); */
    border-radius: 20px;
    margin-bottom: 40px;
}

.application-example {
    box-shadow: 0px 0px 2px rgb(0 0 0 / 0.5);
    margin: 20px 0px;
    border-radius: 20px;
    transition: 100ms ease-in-out;
    border: 2px solid transparent;
    flex-basis: 100%;
    display: flex;
    flex-direction: column;
}

.application-example:not(:has(> a)) {
    padding: 24px;
}
.application-example > a {
    padding: 24px;
}

.application-example:hover, .application-example:has( > a:focus) {
    background-color: #FAFAFA;
    border-color: grey;
}

:is(.application-example, .application-example > a)>h2 {
    font-size: 3rem;
    font-weight: 600;
    line-height: 3.5rem;
}

:is(.application-example, .application-example > a) > h2:not(:has(+span)) {
    margin-bottom: 20px;
}
:is(.application-example, .application-example > a)>h2:has(+span) {
    margin-bottom: 0;
}

:is(.application-example, .application-example > a) > span {
    display: block;
    font-size: 2rem;
    line-height: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.image-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-evenly;
    transition: 500ms ease-in-out;
    flex-grow: 1;
    margin-bottom: 20px;
}

.image-grow-container {
    width: 300px;
    max-height: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.image-grow-container>img {
    flex-basis: 1px;
    flex-grow: 1;
    max-width: 100%;
    max-height: 280px;
    border-radius: 4px;
}

.heading-container>.image-grow-container {
    width: 400px;
}

.image-grow-fullsize {
    width: 100%;
}

.image-grow-dense {
    width: 120px;
    max-height: 200px;
}

.image-grow-dense>img {
    max-height: 220px;
}


:is(.application-example:hover, .application-example:has( > a:focus)) .image-list {
    transform: scale(101%);
}

.cover-image {
    align-items: stretch;
}

.cover-image > .image-grow-container > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.inner-flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 20px;
}

.flex-wide {
    flex-basis: 100%;
}

.flex-small {
    flex-basis: 500px;
    flex-grow: 1;
}

.heading-container {
    margin-bottom: 60px;
    flex-basis: 400px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    text-align: center;
}

.heading-container>h3 {
    display: block;
    font-size: 2.4rem;
    line-height: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.heading-container img {
    max-height: 220px;
    margin-bottom: 10px;
    transition: 500ms ease-in-out;
}

.heading-container .image-list {
    justify-content: center;
}

.main-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    column-gap: 20px;
}

.heading-list {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    justify-content: space-evenly;
}

:is(.application-example, .application-example > a ) > img {
    width: 200px;
    margin-bottom: 20px;
}

.heading-container:hover img {
    transform: scale(101%);
}

:is(.application-example, .application-example > a) > p {
    margin-bottom: 20px;
}

.figure-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-evenly;
    margin-top: 80px;
}

.figure-list>figure {
    width: 340px;
    text-align: center;

}

.figure-list>figure>img {
    transition: 500ms ease-in-out;
}

.figure-list>figure:hover>img {
    transform: scale(102%);
}

.product-form-button {
    display: block;
    background-color: #FFFFFF;
    width: fit-content;
    border-radius: 2px;
    font-size: 1.6rem;
    font-weight: 500;
    padding: 6px 0px;
    transition: 100ms ease-in-out;
    border: 1px solid lightgrey;
    box-shadow: 0px 0px 2px rgb(0, 0, 0, 0.2);
    text-transform: uppercase;
    margin-top: 40px;
    width: 180px;
    text-align: center;
    cursor: pointer;
    align-self: center;
}

.product-form-button:hover, .product-form-button:focus {
    background-color: #EEEEEE;
}


@media only screen and (max-width: 950px) {
    .application-example {
        align-items: center;
    }

    .application-example>p {
        text-align: center;
    }

    :is(.application-example, .application-example > a) > h2 {
        text-align: center;
        font-size: 2.5rem;
        line-height: 3rem;
    }
    :is(.application-example, .application-example > a)> span {
        text-align: center;
        font-size: 1.8rem;
        line-height: 2rem;
    }

    .logo-list {
        justify-content: center;
    }

    .image-grow-container {
        width: 260px;
        max-width: 100%;
    }

    :is(.application-example, .application-example > a)>img {
        justify-self: center;
    }

    :is(.application-example, .application-example > a) > span {
        text-align: center;
    }

    :is(.application-example, .logo-list)>img {
        align-self: unset;
    }

    .logo-60 {
        height: 50px;
    }

    .logo-80 {
        height: 70px;
    }

    .logo-100 {
        height: 90px;
    }

    .image-grow-fullsize {
        width: unset;
    }

    .heading-list {
        max-width: 100%;
    }

    .heading-container {
        margin-bottom: 40px;
        flex-basis: 260px;
        max-width: 100%;
    }

    .heading-container>.image-grow-container {
        width: 260px;
        max-width: 100%;
    }

    .heading-container>h4 {
        font-size: 2rem;
        line-height: 2.1rem;
        margin-bottom: 10px;
    }

    .figure-list {
        max-width: 100%;
    }

    .figure-list>figure {
        width: 300px;
        max-width: 100%;
    }

    .figure-list>figure>figcaption {
        font-size: 1.4rem;
        line-height: calc(1.4rem * 1.5);
    }

    .image-list {
        max-width: 100%;
    }

    .product-form-button {
        font-size: 1.4rem;
        width: 160px;
    }
}