/*______/Reset_css\_____*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

/*______/css_variable\_____*/
:root {
    --main-color: #06C167;
    --second-color: #1D1D1F;
}

.container {
    width: 90%;
    margin: 0 auto;
}

/*______/Header_css\_____*/
#header {
    background: rgba(6, 193, 103, 0.1);
}

#header .container {
    position: relative;
    height: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.h_logo a {
    display: inline-block;
    text-decoration: none;
    font-size: 2rem;
    color: var(--main-color);
    font-weight: 500;
}

.desktop_menu ul {
    display: flex;
    list-style: none;
}

.desktop_menu ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.desktop_menu ul li a {
    display: inline-block;
    text-decoration: none;
    color: var(--second-color);
    margin-left: 3rem;
    font-size: 1.2rem;
    font-weight: 500;
    position: relative;
}


.desktop_menu ul li.active .circle {
    width: 8px;
    height: 8px;
    background: var(--main-color);
    position: absolute;
    display: block;
    border-radius: 50%;
    margin-left: 3rem;
    margin-top: 40px;
}


/*______/Mobile_menu\_____*/
.menu_icon {
    display: none;
}

.mobile_menu {
    display: none;
}

.mobile_menu.active {
    display: block;
}

.mobile_menu {
    position: absolute;
    top: 100%;
    right: 3%;
    background: var(--main-color);
    z-index: 11;
    border-radius: 10px;
}
.mobile_menu ul{
    list-style: none;
    padding: 1rem;

}
.mobile_menu ul li a{
    display: inline-block;
    text-decoration: none;
    color: var(--second-color);
    margin-top: 0.8rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.open_icon, .close_icon {
    font-size: 2rem;
}

/*______/end\_____*/


/*______/Hero_sec_css\_____*/
.hero_sec {
    background: rgba(6, 193, 103, 0.1);
    position: relative;
}

.hero_sec .container {
    display: flex;
    min-height: 70vh;
    align-items: center;
    position: relative;
}

.hero_con h1 {
    font-size: 3rem;
    color: var(--second-color);
    max-width: 40%;
}

.hero_con p {
    margin: 2rem 0;
    max-width: 60%;
    line-height: 1.5rem;
}

.btn {
    border: none;
    outline: none;
    cursor: pointer;
    padding: 15px 22px;
    font-weight: 500;

}

.btn a {
    display: inline-block;
    text-decoration: none;
    font-size: 1.2rem;
}

.hero_btn {
    background: var(--main-color);
}

.hero_btn a {
    color: #fff;
}

.btn a span {
    margin-left: 10px;
}

.hero_img {
    position: relative;
    display: block;
    top: 2rem;
}

.hero_img img {
    max-width: 85%;
}

img.ratings {
    position: absolute;
    top: 55%;
    right: 19rem;
}

img.gqp {
    position: absolute;
    top: 40%;
    left: 50%;
    z-index: 5;
}

img.dot_png {
    position: absolute;
    top: 23rem;
    right: 0rem;
}

.brand_logos {
    background: #fff;
    padding-left: 5%;
    padding-top: 3rem;
    display: block;
    width: 100%;
}

.brand_logos .logoipsum {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

/*______/end\_____*/


/*______/Services_sec_css\_____*/
.services {
    margin-top: 10rem;
}

.services .container {
    justify-content: space-around;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    min-height: 30vh;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
}

.services .container .col {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.services .container .col .s_icon {
    background: rgba(6, 193, 103, 0.1);
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.services .container .col .s_cont {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/*______/end\_____*/



/*______/Our_benefit_sec_css\_____*/
.our_benefit {
    padding: 5rem;
}

.our_benefit .container {
    display: flex;
    justify-content: center;
    gap: 10rem;
    align-items: center;
    min-height: 50vh;
}

.our_benefit .container .col:nth-of-type(1) {
    background: rgba(6, 193, 103, 0.1);
    text-align: center;
    width: 40%;
}

.our_benefit .container .col:nth-of-type(1) img {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2rem 2rem 2rem
}

.our_benefit .container .col:nth-of-type(2) {
    width: 50%;
}

.our_benefit .container .col:nth-of-type(2) h2 {
    padding: 1rem 0 2rem 0;
    font-size: 3rem;
    color: var(--second-color);
    max-width: 80%;
}

.our_benefit .container .col:nth-of-type(2) ul {
    list-style: none;
}

.our_benefit .container .col:nth-of-type(2) ul li {
    margin-bottom: 1rem;
}

.our_benefit .container .col:nth-of-type(2) ul li span {
    margin-right: 1rem;
    color: var(--main-color);
    font-weight: 900;
}

/*______/end\_____*/


/*______/Our_stars_sec_css\_____*/
.our_stars .container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5rem;
    min-height: 70vh;
}

.our_stars .container .col_01 {
    min-width: 45%;
    min-height: 25rem;
}

.our_stars .container .col_02 {
    min-width: 30%;
    min-height: 25rem;
    background: rgba(6, 193, 103, 0.1);
    display: flex;
    justify-content: end;
}

.our_stars .container .col_01 h2 {
    font-size: 3rem;
    font-weight: 500;
    margin-top: 1rem;
    color: var(--second-color);
    max-width: 66%;
}

.our_stars .container .col_01 .counts {
    display: flex;
    margin: 1rem 0;
    padding-bottom: 1rem;
}

.our_stars .container .col_01 .counts .count {
    margin-right: 2rem;
    text-align: center;
}

.our_stars .container .col_01 .counts .count h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--main-color);
}

.our_stars_btn {
    background: var(--main-color);
}

.our_stars_btn a {
    color: #fff;
}

.our_stars .container .col_02 figure {
    max-width: 100%;
}

.our_stars .container .col_02 figure img {
    max-width: 100%;
    padding-bottom: 20%;
    padding-left: 20%;
}

/*______/end\_____*/



/*______/Our_features_sec_css\_____*/
.our_features .container {
    min-height: 90vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.our_features .container h2 {
    font-size: 3rem;
    font-weight: 500;
    color: var(--second-color);
    margin-top: 0.5rem;
}

.our_features .container .foods_gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 4rem;
}

.our_features .container .foods_gallery .food {
    display: flex;
}

.our_features .container .foods_gallery .food .col {
    width: 18rem;
    height: 18rem;
}

.foods_gallery .food .food_content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    border: 2px solid var(--main-color);
}

.foods_gallery .food .food_content .feature_btn {
    background: rgba(6, 193, 103, 0.1);
}

.foods_gallery .food .food_content .feature_btn a {
    color: var(--main-color);
}

.foods_gallery .food .food_image img {
    max-width: 100%;
}

/*______/end\_____*/



/*______/Our_product_sec_css\_____*/
.our_products .container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 8rem 0;
}

.our_products .container h4,
.our_products .container h2 {
    margin-left: 2rem;
}

.our_products .container .products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    justify-content: space-around;
}

.our_products .container .products .product {
    text-align: center;
    padding: 1.5rem;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.5);
    border: 2px solid #fff;
    transition: 0.3s ease-in-out;
    max-width: 20rem;
}

.our_products .container .products .product:hover {
    border: 2px solid var(--main-color);
}

.our_products .container .products .product .p_img img {
    max-width: 80%;
}

.our_products .container .products .product .p_review .fa-star {
    color: var(--main-color);
    margin-top: 0.5rem;
}

.our_products .container .products .product .p_name h3 {
    color: var(--second-color);
    margin: 1.3rem 0;
}

.our_products .container .products .product .price {
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.our_products .container .products .product .price .old_price {
    text-decoration: line-through;
    color: #9b9b9b;
}

.our_products .container .products .product .price .new_price {
    color: var(--main-color);
}

.our_products .container .products .product .product_btn {
    margin-top: 1.8rem;
    background: #fff;
    border: 2px solid var(--main-color);
}

.our_products .container .products .product .product_btn a {
    color: var(--main-color);
}

/*______/end\_____*/


/*______/Veggie_foods_sec_\_____*/
.veggie_foods .container {
    min-height: 60vh;
    background: url(../images/Rectangle_01.png) no-repeat center center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
}

.veggie_foods .container h2 {
    text-align: center;
    font-size: 3rem;
    color: #fff;
    font-weight: 400;
}

.veggie_foods .container .veggie_food_btn {
    background: var(--main-color);
}

.veggie_foods .container .veggie_food_btn a {
    color: #fff;
}

/*______/end\_____*/


/*______/Footer_sec_\_____*/
.footer .container:first-child {
    padding: 6rem 0 2rem 0;
}

.footer .container {
    display: flex;
    gap: 2rem;
}

.footer .container .column_1 {
    flex: 2;
}

.footer .container .column_1 .f_logo {
    font-size: 3rem;
    color: var(--main-color);
}

.footer .container .column_1 p {
    margin: 2rem 0;
}

.footer .container .column_1 .media_link {
    display: flex;
    gap: 1rem;
}

.footer .container .column_1 .media_link a {
    color: var(--second-color);
}

.footer .container .column_2 {
    flex: 1;
}

.footer .container .column_2 h3 {
    flex: 1;
    color: #3a3a3a;
    margin-bottom: 1rem;
}

.footer .container .col ul {
    list-style: none;
}

.footer .container .col ul li a {
    color: #161616;
    display: inline-block;
    text-decoration: none;
    margin: 0.5rem 0;
}

.footer .container .column_3 {
    flex: 1;
}

.footer .container .column_3 h3 {
    flex: 1;
    color: #3a3a3a;
    margin-bottom: 1rem;
}

.footer .container .column_4 {
    flex: 2;
}

.footer .container .column_4 h3 {
    flex: 1;
    color: #3a3a3a;
    margin-bottom: 1rem;
}

.footer .container .column_4 p {
    margin-top: 1.5rem;
    margin-bottom: 3rem;
}

.footer .container .column_4 form {
    margin-top: 1rem;
}

.f_form_email {
    background: #cacaca;
    padding: .8rem;
    margin-right: 0.5rem;
}

.bottom_footer p {
    margin: 2rem auto;
}

/*______/end\_____*/
/*______/style.css_end\_____*/