#hero {
    margin-top: 95px;
    z-index: 6;
    position: relative;
    display: flex;
    justify-content: space-between;
}

.hero-headline {
    font-weight: bold;
    font-size: 3rem;
    line-height: 3rem;
    color: var(--color-primary);
    margin: 20px 0;
    max-width: 800px;
}

#hero-form {
    display: flex;
}

.hero-disclaimer {
    font-size: 14px;
    color: gray;
}

.hero-benefit-wrapper {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 30px;
}

.hero-benefit {
    display: flex;
    position: relative;
    gap: 10px;
    padding: 15px;
    background-color: rgb(12, 76, 53, 0.2);
    box-shadow: 0 2px 12px 2px rgba(12, 76, 53, .1);
    transition: 1s;
}

.hero-benefit > * {
    width: 50%;
}

.benefit-img {
    width: 120px;
    height: 120px;
    position: relative;
    background-color: #fff;
}

.benefit-img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.benefit-text {
    margin: auto;
}

.benefit-text > * {
    margin: 0;
}

/*right side*/

.hero-right {
    width: 50%;
    position: relative;
    display: none;
}

.bg-rect { /*460px, 65px offset*/
    position: absolute;
    top: -65px;
    right: -460px;
    width: 847px;
    height: 1035px;
    background-color: var(--color-primary);
    z-index: 2;
    border-radius: 0 180px;
    display: none;
}

/*hero images*/

.hero-right img {
    z-index: 2;
    position: relative;
}

#hero-img {
    position: relative;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.hero-secondary-img {
    display: none;
}



#bg-parsley-leaf {
    top: -20px;
    left: -100px;
}

#bg-tomato-vine {
    top: -180px;
    right: -90px;
}

#bg-chili-pepper {
    bottom: -130px;
    left: 0;
}

#bg-tomato-slice {
    bottom: 70px;
    right: -80px;
}

@media screen and (min-width: 840px) {

    .hero-left {
        width: 50%;
    }

    .hero-right {
        display: block;
    }
    
    .bg-rect {
        display: block;
    }

    #hero-form > input[type="text"] {
        width: 400px;
    }
}

@media screen and (min-width: 1180px) {
    
    .hero-benefit-wrapper {
        flex-direction: row;
    }

    .hero-benefit {
        width: 50%;
    }

}


@media screen and (min-width: 1340px) {

    .hero-headline {
        font-size: 4rem;
        line-height: 4rem;
    }

    .hero-right img {
        position: absolute;
    }

    #hero-img {
        position: relative;
        width: 100%;
        top: 40%;
        transform: translate(-50%, -50%);
    }

    .hero-secondary-img {
        display: block;
    }

}