.our-product-hero {
    background-image: url('../images/our-p-hero.png');
}

.our-product-hero {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 70vh;
    /* aspect-ratio: 9 / 9; */
}


.col-choose {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: calc((100% - 4rem) / 3);
    background-color: var(--off-white-color);
    padding: 1rem;
    border-radius: .7rem;
    /* flex: 1; */
}

.col-choose>div {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.col-choose>div figure {
    width: 20%;
    height: fit-content;
    /* border: 1px solid; */
}

.col-choose>div figure img {
    height: auto;
    width: 100%;
}


@media only screen and (max-width : 1000px) {
    .col-choose {

        width: calc((100% - 2rem) / 2);

    }

    .col-choose:last-child {
        width: 100%;
    }
}

@media only screen and (max-width : 768px) {
    .col-choose {

        width: 100%;

    }
}