html {
    font-size: 16px;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body>* {
    font-family: "Inter", sans-serif;
    font-style: normal;
    line-height: normal;
    color: var(--black-color);
}

a {
    text-decoration: none !important;
}

:root {
    --black-color: #000000;
    --white-color: #FFFFFF;
    --yellow-color: #EFB443;
    --green-color: #255946;
}

.sec-pad {
    padding: 50px 0;
}

.sec-pad-bottom {
    padding-bottom: 50px;
}

.sec-pad-top {
    padding-top: 50px;
}

body h2 {
    color: var(--black-color);
    font-family: "Oswald", sans-serif;
    font-size: 2.3rem;
    font-weight: 600;
    line-height: 2.5rem;
    letter-spacing: 0.025rem;
    text-transform: uppercase;
    background: url(./assets/heading-line.png);
    background-position: left bottom;
    background-repeat: no-repeat;
    padding-bottom: 15px;
    margin-bottom: 30px !important;
    display: inline-block;
}

h2 span.green {
    color: var(--green-color);
}

h2 span.yellow {
    color: var(--yellow-color);
}

p {
    color: var(--black-color);
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.75rem;
    letter-spacing: 0.01125rem;
}

/* header */

header {
    position: absolute;
    z-index: 100;
    top: 0;
    width: 100%;
    background: url(./assets/header-bg.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
}


header .header-contact-main {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 30px;
}

header .header-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--black-color);
}

.call-on-wapp a {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white-color);
    background: var(--yellow-color);
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1.125rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: .3s;
    border: 1px solid transparent;
}

.call-on-wapp a:hover {
    color: var(--green-color);
    border: 1px solid var(--green-color);
    background: transparent;
}



/* top-form-sec */

section.top-form-sec {
    padding: 125px 0px 25px 0px;
    position: relative;
    z-index: 1;
}



section.top-form-sec::before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 300px;
    background: url(./assets/banner-bottom.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: bottom left;
    z-index: -1;
}

section.top-form-sec {
    background: url(./assets/top-banner.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

section.top-form-sec h1 {
    color: var(--black-color);
    font-family: "Oswald", sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 4.375rem;
    letter-spacing: 0.0375rem;
}

section.top-form-sec h1 span {
    color: var(--green-color);
}

.form-sec {
    border-radius: 10px;
    background: var(--green-color);
    padding: 30px;
    position: relative;
}

.form-sec::before {
    content: "Inquire Us";
    position: absolute;
    top: 0px;
    left: 100%;
    color: var(--white-color);
    font-size: 4.625rem;
    font-weight: 900;
    line-height: 100%;
    text-transform: uppercase;
    writing-mode: sideways-lr;
    text-orientation: mixed;
}

.form-sec h3 {
    color: var(--white-color);
    text-align: center;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 120%;
}

.form-sec form {
    margin-top: 30px;
}

.form-sec form textarea {
    resize: none;
}

.form-sec form .form-control {
    padding: 10px 15px;
    border: 0px;
    margin: 20px 0;
}

.form-sec form .form-control::placeholder {
    color: var(--black-color);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5625rem;
}

.form-sec form .form-control:focus {
    outline: none;
    box-shadow: none;
}

.form-sec form button {
    color: var(--white-color);
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 120%;
    text-transform: uppercase;
    border-radius: 10px;
    background: var(--yellow-color);
    border: 1px solid var(--yellow-color);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.04);
    padding: 10px 30px;
    transition: .3s;
    margin-top: 25px;
}

.form-sec form button:hover {
    color: var(--yellow-color);
    background: transparent;
}



/* supplying */

.supplying {
    border-radius: 10px;
    background: #F0F0F0;
    padding: 45px 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.supplying div.exp {
    color: var(--black-color);
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 3.4375rem;
}

.supplying div.exp strong {
    color: var(--green-color);
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 3.4375rem;
}


/* cta  */

.cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--green-color);
    border-radius: 10px;
    overflow: hidden;
    padding-right: 40px;
}

.cta .text {
    color: var(--white-color);
    font-size: 2rem;
    font-weight: 700;
    line-height: 118%;
    text-align: center;
}

.cta .call-on-wapp a:hover {
    color: var(--yellow-color);
    border: 1px solid var(--yellow-color);
    background: transparent;
}


/* Product  */

.product {
    background: #F0F0F0;
    overflow: hidden;
}

.products {
    border-radius: 10px;
    overflow: hidden;
}

.products .product-name {
    background: #007A3F;
    padding: 5px 15px 10px 15px;
    position: relative;
    height: 67px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.products .product-name::before {
    content: "";
    position: absolute;
    bottom: 99%;
    left: 0px;
    height: 50px;
    aspect-ratio: 1/1;
    background: url(./assets/green-corner.png);
    background-size: contain;
    background-position: left bottom;
    background-repeat: no-repeat;
    transform: rotateY(180deg);
}

.products .product-name::after {
    content: "";
    position: absolute;
    bottom: 99%;
    right: 0px;
    height: 50px;
    aspect-ratio: 1/1;
    background: url(./assets/green-corner.png);
    background-size: contain;
    background-position: left bottom;
    background-repeat: no-repeat;
}

.products .product-name p {
    color: var(--white-color);
    text-align: center;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.625rem;
    letter-spacing: 0.01125rem;
    margin-bottom: 0px;
}

.products-list h3 {
    color: var(--black-color);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.625rem;
    letter-spacing: 0.015rem;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.products-list {
    position: relative;
    z-index: 0;
    margin-top: -50px;
}

.products-list:after {
    content: "";
    position: absolute;
    width: 346px;
    aspect-ratio: 1/1;
    background: url(./assets/dotes-img.png);
    background-size: contain;
    bottom: -230px;
    right: -100px;
    z-index: -1;
}

.cta {
    position: relative;
    z-index: 10;
}




/* Applications */

.Grades {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}

.Grades p {
    margin-bottom: 0px;
}

.industries-banner {
    background: #D9D9D9;
    border-radius: 10px;
    overflow: hidden;
}

.industries-img img {
    border-radius: 500px 0 0 500px;
    border-left: 30px solid var(--yellow-color);

}

.industries-img {
    position: relative;
    z-index: 0;
}

.industries-img::before {
    position: absolute;
    content: "";
    height: 100%;
    aspect-ratio: 1/1;
    background: url(./assets/dotes-img-gray.png);
    background-size: contain;
    left: -150px;
    top: 0px;
    z-index: -1;
}

.ind-banner-left {
    padding: 40px 0px 40px 30px;
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 10;
}

.ind-banner-left p {
    margin-bottom: 0px;
    font-size: 2rem;
    font-weight: 400;
    line-height: 2.5rem;
    letter-spacing: 0.02rem;
}

.ind-banner-left h3 {
    font-size: 3.125rem;
    font-weight: 800;
    line-height: 3.375rem;
    letter-spacing: 0.03125rem;
    text-transform: uppercase;
    color: var(--black-color);
}

.ind-data {
    text-align: center;
}

.ind-data p {
    margin-bottom: 10px;
}

.ind-data img.main-img {
    border-radius: 10px;
    margin-bottom: 15px;
}

.food-ind-data {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.Compliant {
    background: #FFD78B;
    padding: 23px;
}

.Compliant p {
    margin-bottom: 0px;
    text-align: center;
}

.pharma-sec .industries-banner {
    background: #F0F0F0;
}

.Industrial-sec .industries-banner {
    background: #F5F5F5;
}

.pharma-sec .industries-img img {
    border-left: 30px solid #C67CFF;
}

.pharma-sec .Compliant {
    background: #E9CEFD;
}

.Industrial-sec .Compliant {
    background: #AFFFA4;
}

.Industrial-sec .industries-img img {
    border-left: 30px solid #0DAD49;
}



.ind-data p.bottom {
    margin: 15px 0 0 0;
}


.Quality {
    background: #FAF8F5;
    overflow: hidden;
}



/* Quality */

.Specifications table {
    border-radius: 10px !important;
    overflow: hidden;
    background: var(--white-color);

}

.Specifications .table-responsive {
    border-radius: 10px !important;
    box-shadow: 0px 7px 14px 0px rgba(0, 0, 0, 0.25);
}

.Specifications table {
    line-height: 1.5rem;
    text-align: left;
}

.Specifications table th {
    background: #FFD78B;
    width: 35%;
    padding: 20px 20px;
    border: 1px solid #989898;
    border-left: none;
    border-right: none;
}

.Specifications table tr:first-child th,
.Specifications table tr:first-child td {
    border-top: none;
}

.Specifications table tr:last-child th,
.Specifications table tr:last-child td {
    border-bottom: none;
}

.Specifications table td {
    width: 65%;
    padding: 20px 20px;
    border: 1px solid #989898;
    border-left: none;
    border-right: none;
}

.Quality .guar-gum-powder {
    position: relative;
}

.Quality .guar-gum-powder::before {
    content: "";
    position: absolute;
    width: 350px;
    aspect-ratio: 1/1;
    background: url(./assets/dotes-img-gray-1.png);
    background-size: contain;
    background-repeat: no-repeat;
    top: -100px;
    right: -180px;
}




/* certifcations */

.certifications {
    position: relative;
}

.certifications::before {
    content: "";
    position: absolute;
    width: 350px;
    aspect-ratio: 1/1;
    background: url(./assets/dotes-img-gray-1.png);
    background-size: contain;
    background-repeat: no-repeat;
    left: 0px;
    top: 0px;
    z-index: -10;
}

.certifications::after {
    content: "";
    position: absolute;
    width: 300px;
    aspect-ratio: 1/1;
    background: url(./assets/raw-guar-meal.png);
    background-size: contain;
    background-repeat: no-repeat;
    left: 0px;
    bottom: -115px;
    z-index: 10;
}

.certifcations-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 35px;
}

/* why-choose */

.why-choose {
    background: #FAF8F5;
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: "";
    position: absolute;
    width: 360px;
    aspect-ratio: 1/1;
    background: url(./assets/powder.png);
    background-size: cover;
    background-repeat: no-repeat;
    right: -100px;
    bottom: 150px;
}

.why-choose::after {
    content: "";
    position: absolute;
    width: 360px;
    aspect-ratio: 1/1;
    background: url(./assets/dotes-img-gray-1.png);
    background-size: cover;
    background-repeat: no-repeat;
    right: 130px;
    top: 0px;
    z-index: 0;
}

.why-choose ul.choose-agro {
    height: 100%;
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 0;
    margin-bottom: 0px;
    transform: translateX(-120px);
}

.why-choose ul.choose-agro li {
    display: flex;
    align-items: center;
    gap: 25px;
    height: 56px;
}

.why-choose ul.choose-agro li img {
    display: none;
}

.why-choose ul.choose-agro li:nth-child(even) {
    transform: translateX(65px);
}

.why-choose ul.choose-agro li:nth-child(3) {
    /* margin-left: 100px; */
    transform: translateX(100px);
}

.why-choose ul.choose-agro li p {
    color: var(--black-color);
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.75rem;
    margin-bottom: 0;
}


/* packaging */

ul.yellow-list {
    padding-left: 0px;
    list-style: none;
}

ul.yellow-list li {
    position: relative;
    padding-left: 45px;
    color: var(--black-color);
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 700;
    line-height: 2.8125rem;
    letter-spacing: 0.01125rem;
}

ul.yellow-list li::before {
    position: absolute;
    content: "";
    width: 33px;
    aspect-ratio: 1/1;
    background: url(./assets/yellow-list.svg);
    left: 0px;
    top: .3rem;
}

.packaging-left {
    max-width: 636px;
    float: right;
}

.packging-large {
    margin-top: -200px;
}

/* faq */

.faq {
    background: #F0F0F0;
    position: relative;
    z-index: 0;
}

.faq::after {
    content: "";
    position: absolute;
    width: 350px;
    aspect-ratio: 1/1;
    background: url(./assets/guar-korma.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top right;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.faq::before {
    content: "";
    position: absolute;
    width: 350px;
    aspect-ratio: 1/1;
    background: url(./assets/dotes-img-gray-1.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top left;
    top: 0;
    left: 0;
    z-index: -1;
}

.accordion-item {
    border: none;
    background: var(--white-color) !important;
    border-radius: 10px !important;
    overflow: hidden;
    border: none;
}

.accordion-button {
    background: var(--white-color) !important;
    box-shadow: none !important;
    color: #000;
    font-size: 1.125rem !important;
    line-height: 120%;
}

.accordion-button:not(.collapsed) {
    color: var(--green-color) !important;
    font-weight: 600;
}

.accordion-button:focus {
    outline: 0;
    background: none;
}

p.accordion-body {
    font-size: 1.125rem !important;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accordion-button::after {
    background-image: url(./assets/plus.svg) !important;
    background-position: center center;
}

.accordion-button:not(.collapsed)::after {
    background-image: url(./assets/minus.svg) !important;

}


/* footer */

.footer {
    background: url(./assets/footer-bg.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 80px;
}

.footer h3 {
    color: var(--white-color);
    font-family: "Oswald", sans-serif;
    font-size: 1.875rem;
    font-weight: 600;
    line-height: 2.5rem;
    letter-spacing: 0.01875rem;
    text-transform: uppercase;
    background: url(./assets/footer-hed-line.png);
    background-repeat: no-repeat;
    background-position: bottom left;
    padding-bottom: 10px;
    margin-bottom: 40px;
}

.footer h3 span {
    color: var(--yellow-color);
}

.footer .footer-data p {
    color: var(--white-color);
    line-height: 1.875rem;
    letter-spacing: 0.01125rem;
}

.footer .footer-data p a {
    color: var(--white-color);
}

.footer ul.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    list-style: none;
}

.footer ul.footer-nav li a {
    color: var(--white-color);
    background: var(--green-color);
    display: inline-block;
    height: 50px;
    aspect-ratio: 1/1;
    line-height: 50px;
    text-align: center;
    border-radius: 50px;
    font-size: 1.5rem;
    border: 1px solid var(--green-color);
    transition: .3s;
}

.footer ul.footer-nav li a:hover {
    background: transparent;
    color: var(--white-color);
    border: 1px solid var(--white-color);
}

.footer .footer-data h6 {
    color: var(--white-color);
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.875rem;
    letter-spacing: 0.015rem;
}

.footer-bottom {
    background: var(--green-color);
    padding: 25px 0;
}

.footer-bottom p {
    margin-bottom: 0px;
    text-align: center;
    color: var(--white-color);
}

.footer-bottom p a {
    color: var(--yellow-color);
    text-align: center;
}




/* scroll to top  */


.scroll {
    display: none;
    position: fixed;
    aspect-ratio: 1/1;
    bottom: 40px;
    right: 30px;
    z-index: 1000;
    font-size: 1.5rem;
    border: none;
    outline: none;
    width: 60px;
    background-color: var(--yellow-color);
    color: var(--black-color);
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

.scroll:hover {
    color: var(--white-color);
    background-color: var(--green-color);
}


@media (max-width: 1475px) and (min-width: 1400px) {
    .form-sec::before {
        content: "Inquire Us";
        display: none;
    }
}

@media (max-width:1400px) {

    html {
        font-size: 15px;
    }

    section.top-form-sec h1 {
        font-size: 3.3rem;
        line-height: 4rem;
    }

    .form-sec {
        padding: 25px;
    }

    .form-sec h3 {
        font-size: 1.3rem;
    }

    .form-sec form button {
        margin-top: 10px;
    }

    body h2 {
        font-size: 2.1rem;
    }

    p {
        font-size: 1rem;
        line-height: 1.7rem;
    }

    .cta img {
        width: 300px !important;
    }

    .cta .text {
        font-size: 1.8rem;
    }

    .call-on-wapp a {
        padding: 15px 25px;
    }

    .ind-banner-left h3 {
        font-size: 2.7rem;
    }

    .ind-banner-left p {
        font-size: 1.8rem;
    }

    .ind-banner-left {
        padding: 25px 0px 25px 30px;
    }

    .industries-img::before {
        left: -130px;
    }

    .certifcations-icon img {
        height: 110px;
    }

    .why-choose ul.choose-agro li p {
        font-size: 1rem;
    }

    .why-choose::after {
        content: "";
        right: 0;
        background-size: contain;
    }

    .packaging-left {
        max-width: 547.5px;
    }

    .packging-large {
        margin-top: -105px;
    }

    .faq::after {
        width: 230px;
    }

    .footer ul.footer-nav {
        padding-left: 0px;
    }

    .why-choose ul.choose-agro {
        padding: 15px 0;
    }

    .why-choose ul.choose-agro {
        transform: translateX(-110px);
    }

    .why-choose ul.choose-agro li:nth-child(even) {
        transform: translateX(60px);
    }

    .why-choose ul.choose-agro li:nth-child(3) {
        transform: translateX(85px);
    }

    section.top-form-sec {
        padding: 125px 0px 0px 0px;
    }

    .d-flex.gap-3.mt-5.align-items-center.ps-4 {
        margin-top: 2rem !important;
    }

    .form-sec::before {
        content: "Inquire Us";
        font-size: 4.025rem;
    }
}

@media (max-width: 1275px) and (min-width: 1200px) {
    .form-sec::before {
        content: "Inquire Us";
        display: none;
    }

    .packging-large {
        margin-top: -90px;
    }
}

@media (max-width: 1200px) {
    .call-on-wapp a {
        padding: 10px 20px;
        text-align: center;
        font-size: 1rem;
    }

    section.top-form-sec h1 {
        font-size: 3rem;
        line-height: 3.5rem;
    }

    .supplying div.exp {
        font-size: 2.3rem;
        line-height: 3rem;
    }

    .supplying div.exp strong {
        font-size: 3.2rem;
    }

    .form-sec form .form-control {
        padding: 10px 15px;
        border: 0px;
        margin: 0px 0;
    }

    .cta img {
        width: 250px !important;
    }

    .cta {
        padding-right: 25px;
    }

    .form-sec::before {
        content: "Inquire Us";
        font-size: 3.525rem;
    }

    .cta .text {
        font-size: 1.5rem;
    }

    .products-list {
        margin-top: 25px;
    }

    .industries-img::before {
        display: none;
    }

    .ind-banner-left {
        padding: 20px 0px 20px 25px;
    }

    .ind-banner-left h3 {
        font-size: 2.2rem;
        line-height: 2.5rem;
    }

    .ind-banner-left p {
        font-size: 1.5rem;
    }

    .row.mt-4.Specifications {
        padding-bottom: 2rem;
    }

    .certifcations-icon img {
        height: 90px;
    }

    .certifications::after {
        content: "";
        width: 220px;
        bottom: -85px;
    }

    .why-choose::before {
        content: "";
        width: 290px;
    }

    .why-choose ul.choose-agro li {
        gap: 0px;
    }

    .why-choose ul.choose-agro li p {
        font-size: 0.9rem;
        line-height: 1.4rem;
    }

    .why-choose ul.choose-agro {
        padding: 5px;
    }

    .why-choose ul.choose-agro {
        transform: translateX(-85px);
    }

    .why-choose ul.choose-agro li:nth-child(even) {
        transform: translateX(50px);
    }

    .why-choose ul.choose-agro li:nth-child(3) {
        transform: translateX(75px);
    }

    .why-choose::after {
        content: "";
        width: 300px;
    }

    .packging-large {
        margin-top: -35px;
    }

    .footer ul.footer-nav {
        justify-content: start;
    }

    .packaging-left {
        max-width: 937.5px;
        float: none;
        margin: 0 auto;
    }

}


@media (max-width: 1075px) and (min-width: 992px) {
    .form-sec::before {
        content: "Inquire Us";
        display: none;
    }
}


@media (max-width: 992px) {
    header .header-contact a span {
        display: none;
    }

    .supplying div.exp strong {
        font-size: 2.5rem;
        line-height: 100%;
    }

    .supplying div.exp {
        font-size: 1.6rem;
    }

    .supplying {
        padding: 15px;
        gap: 0px;
    }

    .Grades {
        row-gap: 20px;
    }

    .industries-img img {
        overflow: hidden;
        border-radius: 0 0 30% 30%;
        border-left: none;
        border-bottom: 20px solid var(--yellow-color);
    }

    .ind-banner-left {
        text-align: center;
    }

    .ind-banner-left h3 {
        font-size: 1.8rem;
    }

    .food-ind-data {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
    }

    .food-ind-data .ind-data {
        width: 210px;
    }

    .pharma-sec .industries-img img {
        border-left: none;
        border-bottom: 20px solid #c67cff;
    }

    .Industrial-sec .industries-img img {
        border-left: none;
        border-bottom: 20px solid #0DAD49;
    }

    .ind-banner-left {
        padding: 20px 15px;
    }

    .why-choose .call-on-wapp a {
        font-size: 0.9rem;
    }

    .why-choose .cta .text {
        font-size: 1.3rem;
    }

    .why-choose .cta img {
        width: 225px !important;
    }

    .why-choose ul.choose-agro {
        transform: translateX(0);
        gap: 20px;
    }

    .why-choose ul.choose-agro li:nth-child(even) {
        transform: translateX(0px);
    }

    .why-choose ul.choose-agro li:nth-child(3) {
        transform: translateX(0px);
    }

    .why-choose ul.choose-agro li img {
        display: block;
    }

    .why-choose ul.choose-agro li {
        height: auto;
        gap: 20px;
    }

    .why-choose ul.choose-agro li p {
        font-size: 1rem;
        line-height: 1.4rem;
    }

    .packaging-left {
        max-width: 720px;
        float: none;
        margin: 0 auto;
    }

    .packging-large {
        margin-top: 0;
    }

    .footer ul.footer-nav {
        gap: 21px;
        justify-content: center;
    }

    .footer ul.footer-nav li a {
        height: 40px;
        line-height: 39px;
        font-size: 1rem;
    }

    body h2 {
        background-size: 150px;
    }

}


@media (max-width: 830px) and (min-width: 767px) {
    .form-sec::before {
        content: "Inquire Us";
        display: none;
    }
}

@media (max-width:768px) {
    html {
        font-size: 14px;
    }

    section.top-form-sec h1 {
        font-size: 2.4rem;
    }

    .supplying div.exp strong {
        width: 100%;
        display: inline-block;
    }

    .supplying div.exp {
        text-align: center;
    }

    .cta {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: start;
        padding-right: 10px;
        row-gap: 15px;
        padding-bottom: 25px;
    }

    .cta .text {
        font-size: 1.5rem;
        padding: 0px 20px;
    }

    .call-on-wapp {
        width: 100%;
        text-align: center;
    }

    .call-on-wapp a {
        display: inline-block;
    }

    .cta img {
        width: 100% !important;
    }

    .cta-main {
        text-align: center;
    }

    .packaging-left {
        max-width: 519px;
        float: none;
        margin: 0 auto;
    }

    .form-sec::before {
        content: "Inquire Us";
        display: none;
    }

    .products .product-name p {
        font-size: 1rem;
    }

    body h2 {
        text-align: center;
        background-position: center bottom;
    }


    header .header-contact-main {
        align-items: center;
        justify-content: end;
        gap: 15px;
    }

    header .call-on-wapp {
        width: auto !important;
    }

    .certifcations-icon {
        gap: 20px;
    }

    .certifcations-icon img {
        height: 60px;
    }

    .cta div:first-child {
        width: 100%;
    }

    .why-choose .cta img {
        width: 100% !important;
    }
}

@media (max-width:576px) {
    .certifications::after {
        content: "";
        width: 100px;
        bottom: -50px;
    }
}

@media (max-width:500px) {
    section.top-form-sec h1 {
        font-size: 2rem;
        line-height: 2.5rem;
    }

    .supplying div.exp {
        font-size: 1.3rem;
    }

    .products .product-name::before,
    .products .product-name::after {
        height: 25px;
    }

    .products .product-name {
        padding: 5px 10px 10px 10px;
        height: 45px;

    }

    .products .product-name p {
        font-size: 0.7rem;
        line-height: 1.025rem;
    }

    .food-ind-data div.ind-data {
        width: 47% !important;
        gap: 0px;
    }

    .food-ind-data {
        gap: 3%;
        row-gap: 25px;
    }

    .pharma-sec .ind-data p {
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .why-choose::after {
        content: "";
        display: none;
    }

    .faq::before {
        display: none;
    }

    .Grades {
        display: inline-flex;
        flex-wrap: wrap;
        justify-content: left;
        margin: 0 auto;
    }

    header .call-on-wapp a span {
        display: none;
    }

    .Quality .guar-gum-powder::before,
    .certifications::before,
    .faq::after {
        display: none;
    }

}