.hero-container-global {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 5rem;
    width: 100dvw;
}

.product-hero {
    background-image: url('../images/greenry.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 50vh;
    /* aspect-ratio: 9 / 9; */
}

.hero-container-global h2 {
    font-size: 2rem;
    color: var(--primary-color);
}

.hero-container-global h1 {
    color: var(--white-color);
    font-size: 2.5rem;
}

.hero-container-global p {
    color: var(--white-color);
}

.content .para {
    text-align: center;
}

.content {
    position: relative;
}

.coma-up {
    position: absolute;
    top: 2.5rem;
    left: 2.8rem;
}

.coma-down {
    position: absolute;
    bottom: 2rem;
    right: 2.8rem;
    rotate: 180deg;
}

.product-desc {
    display: flex;
    align-items: center;
    justify-content: center;
}


