.select-hero{
    padding-top: 120px;
    padding-bottom: 1em;
    text-align: center;
    background-color: rgb(14, 82, 147);
    color: white
}
.product-select {
    color: rgb(14, 82, 147);
    text-align: center;
}
.product-types {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 35px;
    margin-bottom: 40px;
}
.product {
    display: flex;
    flex: 1;
    gap: 10px;
    align-content: inherit;
    justify-content: center;
    aspect-ratio: 1.5 / 1;
    background: rgb(14, 82, 147);
    border-radius: 15px;
    color: white;
    font-size: 25px;
    padding: 20px 14px;
    position: relative;
    cursor: pointer;
}

.product a {
    color: white;
    text-decoration: none;
}
.product-image {
    width: 86%;
    height: 75%;
    margin-bottom: 5px;
    position: absolute;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: contain;
    align-content: center;
    background-position: center;
}

/* Responsive Design */
@media (max-width: 768px) {

    .product-types {
        flex-direction: column;
    }
}