@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary-color: #00411a;
    --secondary-color: #2c3e50;
    --font-color: #333;
    --background-color: #f5f5f5;
    --nav-color: #2e2e2e;
    --button-bg: rgb(255, 166, 0);
    --icons-color: rgb(75, 6, 6);
    --head-color: #000;
    --para-color: #999;
    --highlight-para-color: #666;
    --top-nav-color: #ffff;
    --main-nav-item-color: #ffff;
    --font-poppins: 'Poppins', sans-serif;
    --font-montserrat: 'Montserrat', sans-serif;
    --font-googlesans: 'Google Sans', sans-serif;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: var(--font-color);
    background-color: var(--background-color);
}

.nav-bar-section {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
}

.top-nav {
    width: 70%;
    height: 120px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-left: 15%;
    margin-right: 15%;
}

.left-nav-info {
    width: 20%;
    height: auto;
    z-index: 1000;
}

.left-nav-info img {
    width: 110px;
    height: auto;
    margin-top: 3%;
}

.right-nav-info {
    width: 80%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-top: 1%;
    font-family: var(--font-poppins);
}

.right-nav-info .call-icon {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 3%;
}

.call-icon .icon i {
    font-size: 1.7rem;
    color: var(--icons-color);
    text-align: center;
    justify-content: center;
    align-items: center;
}

.call-icon .contact-details {
    display: flex;
    flex-direction: column;
}

.contact-details .phone {
    font-size: 0.9rem;
    color: var(--font-color);
    font-family: var(--font-montserrat);
}

.contact-details .contact-desc {
    color: var(--para-color);
    font-size: 0.85rem;
    font-weight: 600;
}

@media (max-width:986px) {
    .right-nav-info {
        display: none;
    }

    .top-nav {
        width: 90%;
        margin-left: 5%;
        margin-right: 5%;
    }

    .left-nav-info img {
        width: 90px;
        /* margin-top: 2%; */
    }

}

.main-nav {
    width: 100%;
    height: 65px;
    background-color: var(--nav-color);
    margin: 0;
    margin-top: 1%;
    /* box-shadow: inset 0 -3px 10px rgba(0, 0, 0, 0.14); */
    padding-left: 10%;
    padding-right: 10%;
    z-index: 999;
}

.main-nav ul {
    width: 85%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    font-family: var(--font-poppins);
}

.main-nav ul li a {
    text-decoration: none;
    color: var(--main-nav-item-color);
    font-size: 1rem;
    font-weight: 600;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.main-nav ul li a:hover {
    background-color: var(--button-bg);
    color: var(--head-color);
    border-radius: 5px;
}

@media (max-width:768px) {
    .main-nav {
        visibility: 0;
        display: none;
    }

    .main-nav ul {
        width: 100%;
        height: auto;
        flex-direction: column;
        gap: 10px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

}

.main-nav .sub-nav {
    display: flex;
    flex-direction: column;
    background-color: var(--nav-color);
    position: absolute;
    margin-top: 1%;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: none;
}

.main-nav .sub-nav {
    width: 250px;
    height: auto;
    background: var(--top-nav-color);
    list-style: none;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid var(--primary-color);
    line-height: 50px;
}

.main-nav .sub-nav li a {
    color: var(--font-color);
}

.main-nav .sub-nav li a:hover {
    color: var(--primary-color);
}


/* here we have to style the submenu bar which will appear when user hovers on our products also stays visible when user wants to click the sub nav */

.main-nav ul li:hover .sub-nav {
    display: block;
}

.carousel-caption {
    font-family: var(--font-poppins);
}

.carousel-item img.h-500 {
    height: 600px;
    object-fit: cover;
}

@media(min-width:1900px) {
    .carousel-item img.h-500 {
        height: 850px;
    }
}

.hr-line,
.hr-about {
    width: 100%;
    height: 5px;
    background: rgb(224, 129, 4);
}

.hr-about {
    height: 3px;
}

.about-ae {
    width: 100%;
    height: auto;
    /* margin-top: 1%; */
    margin-bottom: 5%;
    padding: 2%;
    font-family: var(--font-poppins);
    display: flex;
    flex-direction: column;
    gap: 1%;
    background:
        linear-gradient(rgba(255, 255, 255, 0.9),
            rgba(255, 255, 255, 0.9)),
        url("../images/spoon-pack-with-condiments-table.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-bottom: 3%;
}

.about-ae-main {
    margin-top: 1%;
}

.top-header {
    justify-content: center;
    text-align: center;
    align-items: center;
}

.top-header h1 {
    font-size: 1.7rem;
    font-weight: 600;
    font-family: var(--font-poppins);
    text-transform: uppercase;
    color: var(--button-bg);
}


.top-header h1 span {
    background-color: var(--button-bg);
    padding: 5px;
    color: #fff;
}

.l-r-about {
    display: flex;
    flex-direction: row;
    gap: 3%;
    height: auto;
    width: 80%;
    height: auto;
    margin-left: 10%;
    margin-right: 10%;
}

.left-about-ae {
    width: 40%;
    height: auto;
    display: flex;
    flex-direction: column;
    margin-top: 5%;
}

.left-about-ae img {
    border: 4px solid #999;
    border-top-left-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.border-top-left {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    border-top: 4px solid var(--button-bg);
    border-left: 4px solid var(--button-bg);
    margin-bottom: -4px;
    margin-left: -10px;
    position: absolute;
    margin-top: -10px;
}

.right-ae {
    width: 57%;
    height: auto;
    display: flex;
    flex-direction: column;
    text-align: justify;
    background-color: #ffff;
    margin-top: 3%;
    border-top: 4px solid var(--button-bg);
    box-shadow: 0px 0px 20px 0px;
    padding: 2%;
    border-radius: 5px;
    margin-left: 3%;
}

.dashed-border {
    width: 50px;
    height: 3px;
    background: var(--button-bg);
    border-radius: 10px;
}

.right-ae h2 {
    text-transform: uppercase;
    font-size: 1.6rem;
    font-family: var(--font-googlesans);
}

.right-ae p {
    font-family: var(--font-montserrat);
    margin-top: 2%;
}

.button-read-more {
    display: flex;
    flex-direction: column;
}

.button-read-more button {
    width: 180px;
    height: 45px;
    color: #ffff;
    background: var(--button-bg);
    font-family: var(--font-poppins);
    font-size: 1rem;
    border: none;
    margin-top: 3%;
    cursor: pointer;
    transition: 0.6s;
}

.button-read-more button:hover {
    background: var(--primary-color);
}

.our-exports-counts {
    width: 80%;
    height: auto;
    background: var(--button-bg);
    margin-top: 5%;
    margin-left: 10%;
    margin-right: 10%;
    padding: 2%;
}

.exports-count {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.count-box {
    width: auto;
    height: auto;
    padding: 1.3%;
    background: #fff;
    text-align: center;
    justify-content: center;
    border-radius: 10px;

}

.count-box h3 {
    font-family: var(--font-poppins);
    font-size: 1.2rem;
}

.count-box h5 {
    font-family: var(--font-googlesans);
    font-size: 1.6rem;
}

.category-info {
    width: 100%;
    height: auto;
    background:
        linear-gradient(rgba(255, 255, 255, 0.9),
            rgba(255, 255, 255, 0.9)),
        url("../images/spoon-pack-with-condiments-table.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-bottom: 3%;
}

.categories {
    width: 80%;
    height: auto;
    display: flex;
    flex-direction: column;
    margin-left: 10%;
    margin-right: 10%;
}

.header-cat {
    display: flex;
    flex-direction: column;
    margin-top: 2%;
}

.header-cat h2 {
    font-size: 2.5rem;
    font-family: var(--font-poppins);
    text-align: center;
    justify-content: center;
    margin-top: 2%;
    letter-spacing: 2rem;
    opacity: 0.3;
    position: relative;
}

.header-cat h3 {
    text-align: center;
    justify-content: center;
    font-family: var(--font-poppins);
    font-size: 1.8rem;
}

.ind-cat {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
}

.ind-cat img {
    width: 35%;
    height: auto;
    margin-top: 5%;
    border-radius: 10px;
}

.cat-info {
    width: 50%;
    height: auto;
    margin-top: 10%;
    font-family: var(--font-montserrat);
    font-size: 1rem;
    margin-left: 7.5%;
    margin-right: 7.5%;
    text-align: justify;
}

.left {
    display: flex;
    flex-direction: row-reverse;
}

.right {
    flex-direction: row;
}

.side-image {
    width: 15%;
    overflow: hidden;
    position: absolute;
}

.side-image img {
    width: 100%;
    height: auto;
    transform: translateX(-50%);
}

.overlay-image {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/aerial-view-container-cargo-ship-sea.jpg');
    width: 100%;
    /* height: auto; */
    margin-top: 3%;
    height: 450px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.enquiry-form {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    margin-top: 2%;
}

.enquiry-form h2 {
    text-align: center;
    justify-content: center;
    font-family: var(--font-poppins);
    font-size: 1.8rem;
}

.enquiry-form-main {
    width: 80%;
    height: auto;
    display: flex;
    flex-direction: row;
    margin-left: 10%;
    margin-right: 10%;
    gap: 20px;
}

.left-form-desc {
    width: 50%;
    height: auto;
    margin-top: 1%;
    /* background: #ffffff; */
    padding: 2%;
    border-radius: 5px;
    /* border-left:4px solid var(--button-bg); */
    /* box-shadow: 0px 0px 7px 0px ; */
}

.main-line-horizontal {
    width: 5px;
    height: auto;
    background: var(--button-bg);
    margin-top: 1%;
}

.contact-icons {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    gap: 5px;
}

.left-icons ul {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.left-icons ul li i {
    font-size: 1.5rem;
    color: var(--icons-color);
}

.left-icons ul li {
    line-height: 3rem;
    font-size: 1rem;
    font-family: var(--font-montserrat);

}

.right-contact-info {
    margin-left: 2%;
}

.right-contact-info ul {
    display: flex;
    flex-direction: column;
}

.right-contact-info ul li {
    list-style: none;
    line-height: 3rem;
    font-family: var(--font-montserrat);
}

.right-contact-info ul li a {
    color: var(--font-color);
    text-decoration: none;
}

.right-main-form {
    width: 50%;
    height: auto;
    margin-left: 3%;
    margin: 1%;
    background-color: #fff;
    border-right: 4px solid var(--button-bg);
    border-radius: 5px;
    box-shadow: 0px 0px 7px 0px;
    padding: 3%;
}

.right-main-form form {
    display: flex;
    flex-direction: column;
}

.input-box-div {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-family: var(--font-montserrat);
    margin-top: 5%;
}

.input-box-div label {
    font-size: 1rem;
    text-transform: capitalize;
    font-weight: 600;
    margin-top: 5px;
    display: none;
}

.input-box,
textarea {
    border: 0;
    border-bottom: 1.5px solid var(--font-color);
    padding-left: 5px;
    outline: none;
}

.right-main-form button {
    width: 100%;
    height: 40px;
    color: #fff;
    font-family: var(--font-poppins);
    margin-top: 5%;
    background: var(--button-bg);
    border: none;
    font-weight: 500;
    outline: none;
    cursor: pointer;
}

.our-products {
    width: 100%;
    height: auto;
    margin-top: 4%;
    background:
        linear-gradient(rgba(255, 255, 255, 0.9),
            rgba(255, 255, 255, 0.9)),
        url("../images/still-life-with-various-spices.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-bottom: 3%;
}

.our-products .prod-main-section {
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
    height: auto;
    padding-bottom: 2%;
}

.prod-main-section .header-prod {
    text-align: center;
    justify-content: center;
    padding-top: 2%;
}

.header-prod h3 {
    font-size: 2.2rem;
    letter-spacing: 2rem;
    font-family: var(--font-poppins);
    color: var(--font-color);
    opacity: 0.2;
    text-transform: capitalize;
}

.header-prod h2 {
    font-family: var(--font-poppins);
    font-size: 1.6rem;
    color: var(--font-color);
}

.product-div {
    display: flex;
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
}

.prod-ind {
    width: 300px;
    height: auto;
    padding: 1.8%;
    background-color: #ffff;
    border-radius: 10px;
    box-shadow: 0px 0px 7px 0px;
    display: flex;
    flex-direction: row;
    cursor: pointer;
    transition: 0.5s;
    margin-bottom: 10px;
    margin-top: 10px;
    margin: 10px;

}

.left-icon-prod i {
    font-size: 3rem;
    color: var(--icons-color);
}

.right-prod-info {
    margin-left: 5%;
}

.right-prod-info .info-prod p {
    font-family: var(--font-montserrat);
    text-align: justify;
    font-size: 1rem;
}

.right-prod-info a {
    color: var(--font-color);
    text-transform: capitalize;
    text-decoration: none;
    font-family: var(--font-montserrat);
    font-size: 1rem;
    transition: 0.6s;
    font-weight: 600;
}

.right-prod-info a:hover {
    text-decoration: none;
    color: var(--button-bg);
}

.prod-ind:hover {
    transform: translateY(-20px);
}

.footer-main {
    width: 100%;
    height: auto;
    background: var(--font-color);
    padding: 2%;
    margin-top: 3%;
    display: flex;
    flex-direction: column;
    padding-bottom: 0.5%;
}

.footer-sub-section {
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
    display: flex;
    flex-direction: row;
}

.footer-fst,
.footer-snd,
.footer-end {
    width: 30%;
    height: auto;
}

.footer-head {
    font-family: var(--font-poppins);
    color: #fff;
    text-transform: capitalize;
}

.footer-head h2 {
    border-left: 3px solid var(--button-bg);
    padding: 3px;
    font-size: 1.2rem;
}

.sitemap-links {
    margin-top: 1%;
}

.sitemap-links ul {
    display: flex;
    flex-direction: column;
    list-style-type: none;
    line-height: 2.5rem;
}

.sitemap-links ul li {
    font-family: var(--font-montserrat);
    font-size: 0.9rem;
    /* border-bottom: 1px solid #999; */
}

.sitemap-links ul li a {
    color: #fff;
    text-decoration: none;
}

.sitemap-links ul li a i {
    font-weight: 600;
}

.footer-credits {
    width: 100%;
    height: auto;
    margin-top: 1%;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
}

.footer-credits p {
    color: #fff;
    font-family: var(--font-montserrat);
    font-size: 0.9rem;
}

.hr-footer {
    width: 100%;
    height: 1.2px;
    background: #9999;
}

.footer-credits span {
    font-weight: 600;
}

@media(max-width:986px) {
    .carousel-item img.h-500 {
        height: auto;
        object-fit: cover;
    }

    .hr-line {
        width: 100%;
        height: 4px;
    }

    .about-ae {
        width: 100%;
        height: auto;
        /* margin-top: 1%; */
        margin-bottom: 5%;
        padding: 2%;
        font-family: var(--font-poppins);
        display: flex;
        flex-direction: column;
        gap: 1%;
        background:
            linear-gradient(rgba(255, 255, 255, 0.9),
                rgba(255, 255, 255, 0.9)),
            url("../images/spoon-pack-with-condiments-table.jpg");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding-bottom: 3%;
    }

    .about-ae-main {
        margin-top: 1%;
    }

    .top-header h1 {
        font-size: 1.2rem;
    }

    .l-r-about {
        flex-direction: column;
        width: 95%;
        margin-left: 2.5%;
        margin-right: 2.5%;
    }

    .left-about-ae {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        margin-top: 5%;
    }

    .left-about-ae img {
        border: 0;
        border-radius: 0;
    }

    .border-top-left {
        display: none;
    }

    .right-ae {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        text-align: justify;
        background-color: #ffff;
        margin-top: 5%;
        border-top: 4px solid var(--button-bg);
        padding: 3%;
        border-radius: 5px;
        box-shadow: none;
        margin-left: 0;
        padding-bottom: 5%;
    }

    .dashed-border {
        display: none;
    }

    .right-ae h2 {
        text-transform: uppercase;
        font-size: 1.2rem;
        font-family: var(--font-googlesans);
        text-align: center;
    }

    .right-ae p {
        font-family: var(--font-montserrat);
        margin-top: 2%;
        font-size: 0.9rem;
    }

    .button-read-more {
        display: flex;
        flex-direction: column;
    }

    .button-read-more button {
        width: 90%;
        height: 45px;
        margin-left: 5%;
    }

    .button-read-more button:hover {
        background: var(--primary-color);
    }

    .our-exports-counts {
        width: 95%;
        height: auto;
        background: var(--button-bg);
        margin-top: 5%;
        padding: 3%;
        margin-left: 2.5%;
        margin-right: 2.5%;
    }

    .exports-count {
        display: flex;
        flex-direction: column;
    }

    .count-box {
        width: auto;
        height: auto;
        padding: 1.3%;
        background: #fff;
        text-align: center;
        justify-content: center;
        border-radius: 10px;
        margin-top: 5%;

    }

    .count-box h3 {
        font-family: var(--font-poppins);
        font-size: 1rem;
    }

    .count-box h5 {
        font-family: var(--font-googlesans);
        font-size: 1.2rem;
    }

    .category-info {
        width: 100%;
        height: auto;
        background:
            linear-gradient(rgba(255, 255, 255, 0.9),
                rgba(255, 255, 255, 0.9)),
            url("../images/spoon-pack-with-condiments-table.jpg");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding-bottom: 3%;
    }

    .categories {
        width: 95%;
        height: auto;
        display: flex;
        flex-direction: column;
        margin-left: 2.5%;
        margin-right: 2.5%;
    }

    .header-cat {
        display: flex;
        flex-direction: column;
        margin-top: 2%;
    }

    .header-cat h2 {
        display: none;
    }

    .header-cat h3 {
        text-align: center;
        justify-content: center;
        font-family: var(--font-poppins);
        font-size: 1.2rem;
        margin: 3%;
    }

    .ind-cat {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .ind-cat img {
        width: 100%;
        height: auto;
        margin: 0;
        margin-top: 3%;
    }

    .cat-info {
        width: 100%;
        height: auto;
        margin-top: 10%;
        font-family: var(--font-montserrat);
        font-size: 0.9rem;
        margin-left: 1%;
        margin-right: 1%;
        text-align: justify;
    }

    .left {
        display: flex;
        flex-direction: column;
    }

    .right {
        flex-direction: column;
    }

    .side-image {
        display: none;
    }

    .side-image img {
        width: 100%;
        height: auto;
        transform: translateX(-50%);
    }

    .overlay-image {
        background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/aerial-view-container-cargo-ship-sea.jpg');
        width: 100%;
        /* height: auto; */
        margin-top: 3%;
        height: 350px;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .enquiry-form {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        margin-top: 2%;
    }

    .enquiry-form h2 {
        text-align: center;
        justify-content: center;
        font-family: var(--font-poppins);
        font-size: 1.2rem;
    }

    .enquiry-form-main {
        width: 95%;
        height: auto;
        display: flex;
        flex-direction: column;
        margin-left: 2.5%;
        margin-right: 2.5%;
        gap: 20px;
    }

    .left-form-desc {
        width: 100%;
        height: auto;
        margin-top: 1%;
        /* background: #ffffff; */
        padding: 2%;
        border-radius: 5px;
        /* border-left:4px solid var(--button-bg); */
        /* box-shadow: 0px 0px 7px 0px ; */
    }

    .main-line-horizontal {
        display: none;
    }

    .contact-icons {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: row;
        gap: 5px;
        display: none;
    }

    .left-icons ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        display: none;
    }

    .left-icons ul li i {
        font-size: 1.5rem;
        color: var(--icons-color);
    }

    .left-icons ul li {
        line-height: 3rem;
        font-size: 1rem;
        font-family: var(--font-montserrat);

    }

    .right-contact-info {
        margin-left: 2%;
    }

    .right-contact-info ul {
        display: flex;
        flex-direction: column;
    }

    .right-contact-info ul li {
        list-style: none;
        line-height: 3rem;
        font-family: var(--font-montserrat);
    }

    .right-contact-info ul li a {
        color: var(--font-color);
        text-decoration: none;
    }

    .right-main-form {
        width: 100%;
        height: auto;
        margin: 1%;
    }

    .right-main-form form {
        display: flex;
        flex-direction: column;
    }

    .input-box-div {
        margin-top: 8%;
    }

    .input-box-div label {
        font-size: 0.9rem;
        text-transform: capitalize;
        font-weight: 600;
        margin-top: 5px;
        display: none;
    }

    .input-box,
    textarea {
        border: 0;
        border-bottom: 1.5px solid var(--font-color);
        padding-left: 5px;
        outline: none;
        font-size: 0.9rem;
    }

    .right-main-form button {
        width: 100%;
        height: 35px;
        color: #fff;
        font-family: var(--font-poppins);
        margin-top: 5%;
        background: var(--button-bg);
        border: none;
        font-weight: 500;
        outline: none;
        cursor: pointer;
    }

    .our-products {
        width: 100%;
        height: auto;
        margin-top: 4%;
        background:
            linear-gradient(rgba(255, 255, 255, 0.9),
                rgba(255, 255, 255, 0.9)),
            url("../images/still-life-with-various-spices.jpg");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding-bottom: 3%;
    }

    .our-products .prod-main-section {
        width: 90%;
        margin-left: 5%;
        margin-right: 5%;
        height: auto;
        padding-bottom: 2%;
    }

    .prod-main-section .header-prod {
        text-align: center;
        justify-content: center;
        padding-top: 2%;
    }

    .header-prod h3 {
        display: none;
    }

    .header-prod h2 {
        font-family: var(--font-poppins);
        font-size: 1.2rem;
        color: var(--font-color);
    }

    .product-div {
        display: flex;
        flex-direction: row;
        gap: 10px;
        flex-wrap: wrap;
    }

    .prod-ind {
        width: 95%;
        height: auto;
        padding: 1.8%;
        background-color: #ffff;
        border-radius: 10px;
        box-shadow: 0px 0px 7px 0px;
        display: flex;
        flex-direction: row;
        cursor: pointer;
        transition: 0.5s;
        margin-bottom: 10px;
        margin-top: 10px;
        margin: 10px;

    }

    .left-icon-prod i {
        font-size: 3rem;
        color: var(--icons-color);
    }

    .right-prod-info {
        margin-left: 5%;
    }

    .right-prod-info .info-prod p {
        font-family: var(--font-montserrat);
        text-align: justify;
        font-size: 0.9rem;
    }

    .right-prod-info a {
        color: var(--font-color);
        text-transform: capitalize;
        text-decoration: none;
        font-family: var(--font-montserrat);
        font-size: 0.9rem;
        transition: 0.6s;
        font-weight: 600;
    }

    .right-prod-info a:hover {
        text-decoration: none;
        color: var(--button-bg);
    }

    .prod-ind:hover {
        transform: translateY(-20px);
    }

    .footer-main {
        width: 100%;
        height: auto;
        background: var(--font-color);
        padding: 2%;
        margin-top: 3%;
        display: flex;
        flex-direction: column;
        padding-bottom: 0.5%;
    }

    .footer-sub-section {
        width: 95%;
        margin-left: 2.5%;
        margin-right: 2.5%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-top: 5%;
    }

    .footer-fst,
    .footer-snd,
    .footer-end {
        width: 100%;
        height: auto;
    }

    .footer-head {
        font-family: var(--font-poppins);
        color: #fff;
        text-transform: capitalize;
    }

    .footer-head h2 {
        border-left: 3px solid var(--button-bg);
        padding: 3px;
        font-size: 1rem;
    }

    .sitemap-links {
        margin-top: 1%;
    }

    .sitemap-links ul {
        display: flex;
        flex-direction: column;
        list-style-type: none;
        line-height: 2.5rem;
    }

    .sitemap-links ul li {
        font-family: var(--font-montserrat);
        font-size: 0.9rem;
        /* border-bottom: 1px solid #999; */
    }

    .sitemap-links ul li a {
        color: #fff;
        text-decoration: none;
    }

    .sitemap-links ul li a i {
        font-weight: 600;
    }

    .footer-credits {
        width: 100%;
        height: auto;
        margin-top: 1%;
        display: flex;
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }

    .footer-credits p {
        color: #fff;
        font-family: var(--font-montserrat);
        font-size: 0.9rem;
    }

    .hr-footer {
        width: 100%;
        height: 1.2px;
        background: #9999;
    }

    .footer-credits span {
        font-weight: 600;
    }

}

/* About us */
.hamburger {
    width: 100%;
    height: auto;
    
}

.hamburger-track {
    width: 15%;
    height: auto;
    padding-top: 6%;
    margin-left: 5%;
}

.hamburger-track ul {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    text-align: justify;
    align-self: center;
    list-style-type: none;
}

.hamburger-track ul li a,
.hamburger-track ul li {
    color: #fff;
    font-family: var(--font-montserrat);
    text-decoration: none;
    font-weight: 600;
}

.hamburger-track ul li i {
    font-size: 1.1rem;
}

.hamburger-track ul li .active {
    color: orange;
}

main {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
}

.about-section-ae {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-section-main {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 3%;

}

.about-main-info {
    display: flex;
    flex-direction: row;
    width: 80%;
    height: auto;
    margin-left: 10%;
    margin-right: 10%;
    margin-top: 2%;
}

.about-left {
    width: 45%;
    height: auto;
    display: flex;
    flex-direction: column;
}

.about-left img {
    align-items: center;
    margin-top: 15%;
    border-radius: 10px;
    border: 2px solid #999;
}

.about-left img:hover {}

.about-right {
    width: 100%;
}

.about-header {
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-top: 1%;
}

.about-header h2 {
    font-family: var(--font-poppins);
    text-transform: capitalize;
    font-size: 1.6rem;
    color: var(--font-color);
    display: flex;
    flex-direction: column;
}

.about-header h2 span {
    color: var(--button-bg);
}

.about-ae-info {
    width: 45%;
    height: auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 7px 0px;
    margin-left: 7%;
    padding: 3%;
}

.about-ae-info p {
    text-align: justify;
    font-family: var(--font-montserrat);
    margin-top: 1%;
    font-size: 1rem;
}

.about-ae-info h2 {
    text-align: center;
    justify-content: center;
    align-items: center;
    font-family: var(--font-montserrat);
    font-size: 1.6rem;
}

.vision-mission {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    background: linear-gradient(rgba(247, 100, 3, 0.445),
            rgba(247, 100, 3, 0.445)),
        url("../images/spices2.jpg");
    margin-top: 3%;
    padding-top: 2%;
    padding-bottom: 2%;
}

.vm-main {
    width: 80%;
    height: auto;
    background: #fff;
    margin-left: 10%;
    margin-right: 10%;
    padding: 1%;
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-top: 2%;
    border-radius: 10px;
    justify-content: space-around;
}

.vm-box {
    background-color: rgb(247, 101, 3);
    padding: 2%;
    border-radius: 5px;
    text-align: center;
    justify-content: center;
    color: #fff;
}

.vm-box h4 {
    font-family: var(--font-poppins);
    font-size: 1.4rem;
    text-transform: capitalize;
}

.vm-box i {
    font-size: 2.5rem;
}

.vm-box p {
    font-size: 1rem;
    font-family: var(--font-montserrat);
    text-align: justify;
}

.vision-mission h3 {
    text-align: center;
    justify-content: center;
    font-size: 2.5rem;
    font-family: var(--font-poppins);
    color: rgba(247, 100, 3, 0.445);
    letter-spacing: 1.5rem;
}

.documents {
    width: 100%;
    height: auto;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-top: 1.5%;
    font-family: var(--font-poppins);
}

.document-contant {
    display: flex;
    flex-direction: column;
    margin-top: 2%;
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
    border: 1.2px solid rgb(247, 101, 3);
    padding: 2%;
}

.document-contant i {
    color: red;
    font-size: 5rem;
}

.document-contant h5 {
    font-family: var(--font-montserrat);
    font-size: 1.2rem;
    margin-top: 2%;
}

@media (max-width:768px) {
    .hamburger {
        height: 150px;
    }

    .hamburger-track {
        width: 90%;
        height: auto;
        align-items: center;
        text-align: center;
        justify-content: center;
        padding-left: 0;
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    .hamburger-track ul {
        justify-content: space-evenly;
    }


    .hamburger-track ul li a,
    .hamburger-track ul li {
        color: #fff;
        font-family: var(--font-montserrat);
        text-decoration: none;
        font-weight: 600;
        font-size: 0.9rem;
    }

    .hamburger-track ul li i {
        font-size: 0.9rem;
    }

    main {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .about-section-ae {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about-section-main {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 3%;

    }

    .about-main-info {
        display: flex;
        flex-direction: column;
        width: 95%;
        height: auto;
        margin-left: 2.5%;
        margin-right: 2.%;
        margin-top: 2%;
    }

    .about-left {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .about-left img {
        align-items: center;
        margin-top: 2%;
        border-radius: 10px;
        border: 2px solid #999;
        width: 100%;
    }

    .about-right {
        width: 100%;
    }

    .about-header {
        text-align: center;
        justify-content: center;
        align-items: center;
        margin-top: 1%;
    }

    .about-header h2 {
        font-family: var(--font-poppins);
        text-transform: capitalize;
        font-size: 1.2rem;
        color: var(--font-color);
        display: flex;
        flex-direction: column;
    }

    .about-header h2 span {
        color: var(--button-bg);
    }

    .about-ae-info {
        width: 100%;
        height: auto;
        background: #fff;
        border-radius: 10px;
        box-shadow: 0px 0px 7px 0px;
        margin-left: 0%;
        padding: 3%;
        margin-top: 5%;

    }

    .about-ae-info p {
        text-align: justify;
        font-family: var(--font-montserrat);
        margin-top: 1%;
        font-size: 0.9rem;
        width: 90%;
        margin-left: 5%;
    }

    .about-ae-info h2 {
        text-align: center;
        justify-content: center;
        align-items: center;
        font-family: var(--font-montserrat);
        font-size: 1.2rem;
    }

    .vision-mission {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        background: linear-gradient(rgba(247, 100, 3, 0.445),
                rgba(247, 100, 3, 0.445)),
            url("../images/spices2.jpg");
        margin-top: 3%;
        padding-top: 2%;
        padding-bottom: 2%;
    }

    .vm-main {
        width: 95%;
        height: auto;
        background: #fff;
        margin-left: 2.5%;
        margin-right: 2.5%;
        padding: 3%;
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 2%;
        border-radius: 10px;
        padding-bottom: 2%;
    }

    .vm-box {
        background-color: rgb(247, 101, 3);
        padding: 4%;
        border-radius: 5px;
        text-align: center;
        justify-content: center;
        color: #fff;
    }

    .vm-box h4 {
        font-family: var(--font-poppins);
        font-size: 1.2rem;
        text-transform: capitalize;
    }

    .vm-box i {
        font-size: 1.8rem;
    }

    .vm-box p {
        font-size: 0.8rem;
        font-family: var(--font-montserrat);
        text-align: justify;
    }

    .vision-mission h3 {
        text-align: center;
        justify-content: center;
        font-size: 1.2rem;
        font-family: var(--font-poppins);
        color: rgba(247, 100, 3, 0.445);
        letter-spacing: 0.5rem;
    }

    .documents {
        width: 100%;
        height: auto;
        text-align: center;
        justify-content: center;
        align-items: center;
        margin-top: 2.5%;
        font-family: var(--font-poppins);
    }

    .documents h3 {
        font-size: 1.1rem;
    }

    .document-contant {
        display: flex;
        flex-direction: column;
        margin-top: 2%;
        width: 80%;
        margin-left: 10%;
        margin-right: 10%;
        border: 1.2px solid rgb(247, 101, 3);
        padding: 2%;
    }

    .document-contant i {
        color: red;
        font-size: 5rem;
    }

    .document-contant h5 {
        font-family: var(--font-montserrat);
        font-size: 1rem;
        margin-top: 2%;
    }
}

/* /exports  */
.exports-main {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
}

.exports-sub-main-p-80 {
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
    margin-top: 2%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 2%;
}

.left-exports {
    width: 30%;
    height: auto;
    background-color: #000;
    padding: 2%;
    background: linear-gradient(rgba(0, 0, 0, 0.9),
            rgba(0, 0, 0, 0.9)),
        url("../images/Logo.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.left-exports h3 {
    text-align: center;
    justify-content: center;
    color: #fff;
    font-family: var(--font-poppins);
    text-transform: capitalize;
    font-size: 1.6rem;
}

.left-exports h4 {
    text-align: center;
    justify-content: center;
    font-family: var(--font-montserrat);
    font-size: 1.2rem;
    color: orange;
    margin-top: 5%;
}

.left-exports-sub {
    border: 1.5px dashed #fff;
    padding: 0.5%;
}

.mobile-num ul {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-top: 2%;
    margin-left: 3%;
}

.mobile-num ul li {
    display: flex;
    flex-direction: row;
    font-size: 0.9rem;
    font-family: var(--font-montserrat);
    color: #fff;
    line-height: 2rem;
}

.mobile-num ul li i {
    color: rgb(255, 123, 0);
    font-size: 1rem;
    margin-right: 5%;
    line-height: 2rem;
}

.mobile-num ul li a {
    color: #fff;
    text-decoration: none;
}

.right-exports {
    width: 70%;
    height: auto;

}

.right-exports-sub-80p {
    width: 70%;
    height: auto;
    justify-content: center;
    align-items: center;
}

.right-exports-sub-80p img {
    width: 350px;
    height: auto;
    /* margin-left: 40%; */
}

.right-exports {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.right-exports h2 {
    font-family: var(--font-poppins);
    font-size: 1.4rem;
    text-transform: capitalize;
}

.right-exports p {
    font-size: 0.9rem;
    color: var(--font-color);
    font-family: var(--font-montserrat);
    text-align: justify;
}

@media(max-width:968px) {

    .exports-sub-main-p-80 {
        width: 100%;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-top: 2%;
    }

    .left-exports {
        width: 98%;
        margin: 1%;
    }

    .left-exports h3 {
        font-size: 1.2rem;
    }

    .left-exports h4 {
        font-size: 1rem;
    }

    .mobile-num ul li i {
        color: rgb(255, 123, 0);
        font-size: 1rem;
        margin-right: 5%;
        line-height: 2rem;
    }

    .mobile-num ul li a {
        color: #fff;
        text-decoration: none;
    }

    .right-exports {
        width: 98%;
        height: auto;
        margin-left: 1%;
        margin-right: 1%;
    }

    .right-exports-sub-80p {
        width: 100%;
        height: auto;
        justify-content: center;
        align-items: center;
    }

    .right-exports-sub-80p img {
        width: 100%;
        height: auto;
        /* margin-left: 40%; */
    }

    .right-exports {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 95%;
        margin-left: 2.5%;
    }

    .right-exports h2 {
        font-family: var(--font-poppins);
        font-size: 1.2rem;
        text-transform: capitalize;
    }

    .right-exports p {
        font-size: 0.9rem;
        color: var(--font-color);
        font-family: var(--font-montserrat);
        text-align: justify;
    }

}

/* contact us */
.contact-us-main {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    background-color: #fff;
}

.contact-us-form-and-address {
    width: 80%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin-left: 10%;
    margin-right: 10%;
    margin-top: 5%;
    gap: 3%;
}

.contact-us-form-and-address .left-address {
    width: 50%;
    height: auto;
}

.right-form {
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    background-color: #fff;
    box-shadow: 0px 0px 7px 0px;
    border-radius: 10px;
    padding: 2%;
}

.right-form .header-contact-us h2 {
    font-family: var(--font-poppins);
    font-size: 1.6rem;
}

.right-form .form-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.right-form .form-contact form {
    display: flex;
    flex-direction: column;
}

.form-contact form .input-box {
    margin-top: 2.5%;
    margin-bottom: 2.5%;
    padding-left: 10px;
    font-family: var(--font-montserrat);
    font-size: 0.9rem;
}

.form-contact form button {
    width: 90%;
    height: 30px;
    margin-left: 5%;
    margin-top: 3%;
    font-family: var(--font-poppins);
    color: #fff;
    background: orange;
    outline: none;
    border: none;
    cursor: pointer;
}

.contact-details-wit-icons {
    width: 100%;
    height: auto;
    background-color: #f8f7f7b3;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    margin-top: 3%;
    padding: 2%;
}

.sub-contact-details {
    width: 80%;
    height: auto;
    margin-left: 10%;
    margin-right: 10%;
}

.sub-contact-details ul {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    flex-wrap: wrap;
}

.sub-contact-details ul li {
    background-color: #fff;
    padding: 1%;
    list-style: none;
    width: 100%;
}

.sub-contact-details ul li a {
    color: #000;
    font-family: var(--font-montserrat);
    font-size: 0.9rem;
    text-decoration: none;
}

.sub-contact-details ul li a i {
    color: #fff;
    background-color: orange;
    padding: 2%;
    font-size: 1.7rem;
    margin-right: 3%;
    transition: 0.6s;
    text-decoration: none;
}

.sub-contact-details ul li a i:hover {
    border-radius: 50%;

}

@media(max-width:986px) {
    .contact-us-main {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        background-color: #fff;
    }

    .contact-us-form-and-address {
        width: 95%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-left: 2.5%;
        margin-right: 2.5%;
        margin-top: 5%;
        gap: 3%;
    }

    .contact-us-form-and-address .left-address {
        width: 100%;
        height: auto;
    }

    .right-form {
        width: 95%;
        height: auto;
        display: flex;
        flex-direction: column;
        text-align: center;
        justify-content: center;
        background-color: #fff;
        box-shadow: 0px 0px 7px 0px;
        border-radius: 10px;
        padding: 2%;
        margin-left: 2.5%;
        margin-right: 2.5%;
        margin-top: 5%;
        padding-bottom: 5%;
    }

    .left-address iframe {
        width: 95%;
        height: auto;
        margin-left: 2.5%;
        margin-right: 2.5%;
    }

    .right-form .header-contact-us h2 {
        font-family: var(--font-poppins);
        font-size: 1.1rem;
    }

    .right-form .form-contact {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .right-form .form-contact form {
        display: flex;
        flex-direction: column;
    }

    .form-contact form .input-box {
        margin-top: 2.5%;
        margin-bottom: 2.5%;
        padding-left: 10px;
        font-family: var(--font-montserrat);
        font-size: 0.78rem;
        width: 95%;
        margin-right: 2.5%;
        margin-left: 2.5%;
    }

    .form-contact form button {
        width: 90%;
        height: 30px;
        margin-left: 5%;
        margin-top: 3%;
        font-family: var(--font-poppins);
        color: #fff;
        background: orange;
        outline: none;
        border: none;
        cursor: pointer;
        font-size: 0.8rem;
    }

    .contact-details-wit-icons {
        width: 100%;
        height: auto;
        background-color: #f8f7f7b3;
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        margin-top: 4%;
        padding: 2%;
    }

    .sub-contact-details {
        width: 95%;
        height: auto;
        margin-left: 2.5%;
        margin-right: 2.5%;
    }

    .sub-contact-details ul li {
        background-color: #fff;
        padding: 1%;
        list-style: none;
        width: 100%;
        font-size: 0.9rem
    }

    .sub-contact-details ul li a {
        color: #000;
        font-family: var(--font-montserrat);
        font-size: 0.9rem;
        text-decoration: none;
    }

    .sub-contact-details ul li a i {
        color: #fff;
        background-color: orange;
        padding: 2%;
        font-size: 1.4rem;
        margin-right: 3%;
        transition: 0.6s;
        text-decoration: none;
    }

    .sub-contact-details ul li a i:hover {
        border-radius: 50%;

    }

}

/* product section  */

.product-section {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
}

.product-sub-section {
    width: 80%;
    height: auto;
    margin-left: 10%;
    margin-right: 10;
    margin-top: 4%;
    display: flex;
    flex-direction: row;
    /* gap: 1rem; */
}

.product-left {
    width: 40%;
}

.product-right {
    width: 60%;
}

.product-list ul {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1rem;
}

.product-list ul li {
    background-color: #e1e1e1;
    font-family: var(--font-montserrat);
    font-size: 0.9rem;
    text-transform: capitalize;
    padding: 9px 18px;
    display: flex;
    flex-direction: row;
    width: 40%;
    font-weight: 600;
    /* height: 45px; */
    cursor: pointer;
}

.product-list ul .sub-list {
    display: flex;
    flex-direction: row;
}

.product-list ul .angle {
    display: flex;
    text-align: right;
    justify-content: right;
}

.download-brochure {
    /* width: 37.5%; */
    margin-top: 1rem;
}

.download-brochure ul {
    display: flex;
    flex-direction: row;
}

.download-brochure ul li {
    font-size: 0.9rem;
    font-family: var(--font-montserrat);
    text-transform: capitalize;
    list-style-type: none;
    background-color: #999;
    align-items: center;
    justify-content: center;
    width: 40%;
}

.download-brochure ul li i {
    background-color: #000;
    font-size: 2rem;
    color: #fff;
    padding: 15px;
}

.product-right img {
    width: 90%;
    box-shadow: 0px 0px 7px 0px;
}

.product-left .left-exports {
    width: 80%;
    box-shadow: 0px 0px 7px 0px;

}

.product-sec-header {
    margin-top: 1rem;
}

.product-sec-header h2 {
    font-family: var(--font-poppins);
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: capitalize;
}

.prod-info {
    width: 90%;
    height: auto;
}

.prod-info p {
    font-family: var(--font-montserrat);
    font-size: 0.9rem;
    text-align: justify;
}

.product-list .active {
    background-color: orangered;
    color: #fff;
}

.hr-line-prod {
    width: 90%;
    height: 2px;
    background-color: #d2cece;
}

.prod-info-left-right {
    margin-top: 2%;
    display: flex;
    flex-direction: column;
}
.prod-info-sub{
    display: flex;
    flex-direction: column;
    margin-top: 1%;
}
.prod-info-sub img {
    width: 45%;
}

.prod-info-sub p {
    font-family: var(--font-montserrat);
    font-size: 0.9rem;
    text-align: justify;
}
.prod-info-sub h3{
     font-family: var(--font-poppins);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: capitalize;
}
.prod-info-left-right .left-right {
    display: flex;
    flex-direction: row;
    width: 90%;
    gap: 1rem;
    margin-top: 2%;
    padding-bottom: 2%;
}

.prod-info-left-right .right-left {
    display: flex;
    flex-direction: row-reverse;
    width: 90%;
    gap: 1rem;
    margin-top: 2%;
    padding-bottom: 2%;
}
@media(max-width:986px){
.product-section {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column-reverse;
}

.product-sub-section {
    width: 95%;
    height: auto;
    margin-left: 2.5%;
    margin-right: 2.5;
    margin-top: 4%;
    display: flex;
    flex-direction: column;
    /* gap: 1rem; */
}

.product-left {
    width: 100%;
}

.product-right {
    width: 100%;
}

.product-list ul {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1rem;
}

.product-list ul li {
    background-color: #e1e1e1;
    font-family: var(--font-montserrat);
    font-size: 0.9rem;
    text-transform: capitalize;
    padding: 9px 18px;
    display: flex;
    flex-direction: row;
    width: 95%;
    font-weight: 600;
    /* height: 45px; */
    cursor: pointer;

}

.product-list ul .sub-list {
    display: flex;
    flex-direction: row;
}

.product-list ul .angle {
    display: flex;
    text-align: right;
    justify-content: right;
}

.download-brochure {
    /* width: 37.5%; */
    margin-top: 1rem;
}

.download-brochure ul {
    display: flex;
    flex-direction: row;
}

.download-brochure ul li {
    font-size: 0.9rem;
    font-family: var(--font-montserrat);
    text-transform: capitalize;
    list-style-type: none;
    background-color: #999;
    align-items: center;
    justify-content: center;
    width: 40%;
}

.download-brochure ul li i {
    background-color: #000;
    font-size: 2rem;
    color: #fff;
    padding: 15px;
}

.product-right img {
    width: 90%;
    height: auto;
    margin-left: 5%;
    margin-right: 5%;
}

.product-left .left-exports {
    width: 95%;
    margin-left: 2.5%;
}

.product-sec-header {
    margin-top: 1rem;
    margin-left: 5%;
}

.product-sec-header h2 {
    font-family: var(--font-poppins);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: capitalize;
}
.prod-info-sub h3{
     font-family: var(--font-poppins);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: capitalize;
    margin-left: 2.5%;
}

.prod-info {
    width: 90%;
    height: auto;
    margin-left: 5%;
    margin-right: 5%;
}

.prod-info p {
    font-family: var(--font-montserrat);
    font-size: 0.9rem;
    text-align: justify;
}

.product-list .active {
    background-color: orangered;
    color: #fff;
}

.hr-line-prod {
    width: 95%;
    height: 2px;
    background-color: #d2cece;
    margin-left: 2.5%;
}

.prod-info-left-right {
    margin-top: 2%;
    display: flex;
    flex-direction: column;
}


.prod-info-left-right .left-right {
    display: flex;
    flex-direction: column;
    width: 95%;
    gap: 1rem;
    margin-top: 2%;
    padding-bottom: 2%;
    margin-left: 2.5%;
}

.prod-info-left-right .right-left {
display: flex;
    flex-direction: column;
    width: 95%;
    gap: 1rem;
    margin-top: 2%;
    padding-bottom: 2%;
    margin-left: 2.5%;
}
.prod-info-sub p {
    font-family: var(--font-montserrat);
    font-size: 0.9rem;
    text-align: justify;
    width: 95%;
    margin-left: 2.5%;
}
.prod-info-sub img {
    width: 100%;
    height: auto;
    margin: 0;
}
}

/* Navigation */
.main-nav ul i{
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    display: none;
}
@media(max-width:986px){
.main-nav ul i{
    color: #000;
    font-size: 2rem;
    cursor: pointer;
    display: block;
}
}
.founders{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 3%;
}
.founder-heading h3{
    font-family: var(--font-poppins);
    font-size: 1.6rem;
    text-transform: capitalize;
    margin-bottom: 2%;
}
.founders-profiles{
    width: 80%;
    height: auto;
    display: flex;
    flex-direction: row;
    gap: 2%;
    justify-content: center;
    align-items: center;
    /* flex-wrap: wrap; */
}
.founder-profile{
    width:50%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0px 0px 7px 0px;
    padding: 1%;
    border-radius: 10px;
    transition: 0.5s;
    cursor: pointer;
    margin-top: 2%;
}
.founder-name h3{
    font-family: var(--font-poppins);
    font-size: 1.2rem;
    text-transform: capitalize;
    margin-top: 1%;
}
.founder-profile img{
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}
.founder-profile:hover{
    transform: translateY(-15px);
}
.founder-quote p{
    font-family: var(--font-montserrat);
    font-size: 0.9rem;
    margin-top: 1%;
    text-align: justify;
    margin-top: 1%;
}
.founder-profile .founder-social-media ul{
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-top: 1%;
    justify-content: center;
}
.founder-profile .founder-social-media ul li{
    list-style: none;
}
.founder-profile .founder-social-media ul li a{
    text-decoration: none;
}

.founder-profile .founder-social-media ul li a i{
    font-size: 1.2rem;
    color: orange;
    transition: 0.5s;
}
.founder-profile .founder-social-media ul li a i:hover{
    transform: scale(1.2);
}

@media(max-width:768px){
.founders-profiles{
    width: 95%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 2%;
    justify-content: center;
    align-items: center;
    /* flex-wrap: wrap; */
}
.founder-profile{
    width: 90%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0px 0px 7px 0px;
    padding: 1%;
    border-radius: 10px;
    transition: 0.5s;
    cursor: pointer;
}
}

.right-prod-info .product-heading h3{
    font-family: var(--font-poppins);
    font-size: 1.4rem;
    text-transform: capitalize;
    margin-left: 10%;
    margin-top: 3%;
}