@import url('https://fonts.googleapis.com/css2?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');
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&display=swap');

:root {
    --primary: #89c554;
    --secondary: #a3d27a;
    --light: #f2f9ec;
    --dark: #0c1306;
}
::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
	background-color: #F5F5F5;
}

::-webkit-scrollbar
{
	width: 5px;
	background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb
{
    border-radius: 3px;
	background-color: var(--secondary);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
}

.flex {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.col {
    padding: 0px 10px;
}

.col-1 {
    width: 100%;
}

.col-2 {
    width: 50%;
}

.col-3 {
    width: 33%;
}

.col-4 {
    width: 25%;
}

.top-bar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 100px;
}

.top-bar ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

.top-bar ul li {
    margin-right: 15px;
}

.top-bar ul li a {
    display: flex;
    text-decoration: none;
    align-items: center;
}

.top-bar ul li a ion-icon {
    font-size: 18px;
    margin-right: 10px;
    text-decoration: none;
    color: var(--primary);
}

.top-bar ul li a span {
    font-size: 14px;
    text-decoration: none;
    color: #000;
}

.top-bar ul li a:hover {
    color: var(--primary);
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 90px;
}

.header .menu ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .menu ul li a {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    padding: 5px 15px;
    font-weight: 500;
}

.header .menu ul li a:hover {
    color: var(--primary);

}

.header .logo img{
    height: 40px;
}

.about {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    background: var(--light);
}

.company-logo {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.company-logo img {
    width: 60px;
}

.about-content {
    width: 60%;
    padding: 50px;
    padding-left: 100px;
}

.about-content span {
    text-transform: uppercase;
    font-weight: 500;
    color: #999;
}

.about-content span b {
    color: var(--primary);
}

.about-content h1 {
    font-size: 52px;
    font-family: "DM Serif Text", serif;
}

.about-content p {
    color: #555;
    text-align: justify;
    font-size: 14px;
    margin-bottom: 20px;
}

.about-btn-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.about-btn-row a {
    margin-right: 15px;
}

.btn {
    cursor: pointer;
    border: 2px solid var(--primary);
    color: #fff;
    text-align: center;
    padding: 8px 25px;
    display: inline-block;
    margin: 10px 0px;
    background: var(--primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.btn.outline {
    background: transparent;
    color: var(--primary);
}

.about-image {
    width: 40%;
    background: url('../img/about/about.jpeg');
    background-size: cover;
    display: block;
}

.about-image.home {
    background: url('../img/about.jpg');
    background-position: center center;
}


.vision-image{
    width: 40%;
    background: url('../img/Vision.jpg');
    background-size: cover;
    display: block;
    background-position: center center;
}

.values-image{
    width: 40%;
    background: url('../img/Values.jpg');
    background-size: cover;
    background-position: center center;
    display: block;
}

.about-image-2{
    width: 40%;
    background: url('../img/about/about-2.jpeg');
    background-size: cover;
    display: block;
}

.about-image.fixed{
    background-attachment: fixed;
}

.about-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}


.why-container {
    width: 100%;
    padding: 80px 200px;
    background: var(--dark);
}

.why-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.why-title span {
    font-style: oblique;
    color: #777;
    font-size: 14px;
}

.why-title h1 {
    font-size: 42px;
    color: #fff;
    font-weight: 500;
    font-family: "DM Serif Text", serif;
}

.why-title p {
    color: #fff;
    font-size: 15px;
    font-weight: 300;
}


.why-box {
    background: var(--light);
    padding: 20px;
    height: 300px;
    margin: 10px auto;
}


.why-box img {
    width: 50px;
    margin-bottom: 20px;
}

.why-box h3 {
    font-weight: 500;
    font-size: 18px;
}

.why-box p {
    font-size: 13px;
    color: #888;
    text-align: justify;
    margin-top: 15px;
}

.why-box a {
    display: block;
    width: 100%;
    background: #d6d6d6;
    padding: 5px 10px;
    color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    font-size: 13px;
    margin-top: 10px;
}

.product-container {
    width: 100%;
    padding: 40px 200px;
}


.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.section-title span {
    color: #888;
    text-transform: uppercase;
}

.section-title span b {
    color: var(--primary);
}

.section-title h1 {
    text-transform: uppercase;
    font-family: "DM Serif Text", serif;

}

.section-title p{
    font-size: 14px;
    color: #666;
}

.product-card {
    width: 100%;
    background: var(--light);
    padding: 10px;
    margin-top: 20px;
}

.product-card img {
    width: 100%;
    border-radius: 5px;
}

.product-card h3 {
    text-align: center;
    display: block;
    border-radius: 5px;
    background: var(--dark);
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    padding: 5px 30px;
    margin: 10px auto;
}

.product-card h3 a{
    color: #fff;
    text-decoration: none;
}

.about-image.form-section {
    background: var(--primary);
    padding: 40px;
}

.about-content h2 {
    font-size: 28px;
    margin-top: 15px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: "DM Serif Text", serif;
}


.about-image.form-section h1 {
    text-align: center;
    font-weight: 500;
    display: inline-block;
    color: #fff;
    font-size: 24px;
}

.about-image.form-section form input,
.about-image.form-section form textarea {
    width: 100%;
    resize: none;
    display: block;
    padding: 5px 20px;
    font-size: 16px;
    background: #fff;
    border: 0;
    outline: 0;
    margin-top: 15px;
}

.about-image.form-section form button {
    width: 100%;
    display: block;
    padding: 5px 20px;
    font-size: 16px;
    background: #000;
    color: #fff;
    border: 0;
    outline: 0;
    margin-top: 15px;
}

.contact-infos {
    padding: 30px 200px;
    text-align: center;
}

.contact-infos ion-icon {
    color: var(--primary);
    font-size: 33px;
}

.contact-infos h3 {
    font-weight: 500;
    font-size: 15px;
    margin: 15px auto;
}

.contact-infos p {
    color: #555;
    font-size: 13px;
}


.footer {
    padding: 30px 180px;
    display: grid;
    gap: 40px;
    grid-template-columns: 2fr 1fr 1fr;
}


.footer p {
    font-size: 13px;
    color: #777;
    text-align: justify;
}

.footer-info a{
    font-size: 12px;
    padding: 5px 20px;
    margin-top: 10px;
    text-decoration: none;
    background: #89c554;
    color: #fff;
    display: inline-block;
}

.footer h4 {
    font-weight: 600;
    font-size: 17px;
    margin-bottom: 10px;
}

.footer ul li {
    list-style-type: none;
}

.footer ul li a {
    text-decoration: none;
    color: #555;
    font-size: 14px;
}

.footer ul li a:hover {
    color: var(--primary);
}

.copyright {
    width: 100%;
    padding: 10px;
    background: #f8f8f8;
    text-align: center;
    font-size: 13px;
}

.copyright a {
    color: var(--primary);
    text-decoration: none;
}

.menuicon {
    width: 40px;
    height: 40px;
    background: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    cursor: pointer;
    display: none;
}

.closemenu {
    display: none;
}

.section{
    padding: 40px 200px;
}

.page-header{
    width: 100%;
    background: #3e5f20;
    padding: 40px 200px;
}

.page-header ul{
    display: flex;
    list-style: none;
    align-items: center;
}

.page-header ul li{
    padding: 3px 10px;
    position: relative;
}

.page-header ul li a{
    text-decoration: none;
    color: #fff;
    font-size: 13px;
    font-weight: 300;
}

.page-header ul li::after{
    content: '-';
    display: block;
    position: absolute;
    top: 50%;
    right: -5px;
    color: #fff;
    transform: translateY(-50%);
}

.page-header ul li:last-child::after{
    display: none;
}

.page-header h1{
    font-weight: 500;
    font-size: 62px;
    color: #fff;
    font-family: "DM Serif Text", serif;
}


.about-page .site-logo img{
    margin: 10px auto;
    display: block;
}



.about-page h3{
    font-size: 16px;
    color: #636363;
    text-align: center;
    font-weight: 500;
    margin-bottom: 15px;
}

.about-page p{
    font-size: 14px;
    text-align: center;
    color: #999;
}

.feature-list{
    list-style: none;
}

.feature-list li{
    display: inline-flex;
    align-items: center;
    width: 100%;
    color: #444444;
}

.feature-list li ion-icon{
    color: var(--primary);
    margin-right: 15px;
    font-size: 22px;
}

.contact{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.contact-details{
    width: 35%;
    margin-right: 80px;
    text-align: left;
}

.contact-details .section-title{
    text-align: left;
}

.contact-details ul{
    list-style: none;
    margin-top: 30px;
}

.contact-details ul li{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 20px 0px;
}

.contact-details ul li .icon{
    max-width: 50px;
    width: 50px;
    height: 50px;
    background: var(--light);
    color: var(--primary);
    font-size: 28px;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center; 
    border-radius: 50%;  
    margin-right: 20px;
}

.contact-details ul li p{
    font-size: 13px;
}

.contact-details ul li h3 a{
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
}

.contact-details ul li h3 a:hover{
    color: var(--primary);
}

.contact-form{
    width: 60%;
    padding: 20px;  
    border-radius: 3px;
    background: var(--light);
}

.contact-form input,
.contact-form textarea,
.career form input,
.career form select,
.career form textarea{
    width: 100%;
    resize: none;
    background: #fff;
    padding: 15px 25px;
    font-size: 15px;
    margin-bottom: 10px;
    border: 0;
    outline: 0;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.04);
}

.contact-form button,
.career form button{
    width: 100%;
    display: block;
    padding: 15px;
    font-size: 15px;
    background: var(--dark);
    border: 0;
    outline: 0;
    color: #fff;
    border-radius: 3px;
    cursor: pointer;
}

.career{
    background: var(--secondary);
}

.career form{
    width: 800px;
    margin: 0px auto;
}



.career form label{
    font-size: 14px;
    color: #222;
    margin-bottom: 5px;
    display: block;
}

.mission-box{
    width: 100%;
    padding: 35px;
    background: var(--primary);
    text-align: center;
    color: #fff;
    min-height: 200px;
    border-radius: 80px;
    margin-bottom: 20px;
}

.mission-box h2{
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
}

.mission-box p{
    font-size: 12px;
}

.splide__arrow{
    width: 4em;
    height: 4em;
    background: var(--primary);
}

.splide__slide img{
    width: 100%;
}

.quality{
    width: 100%;
    text-align: center;
    padding: 40px 250px;
    padding-top: 0;
}

.quality h2{
    color: var(--primary);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 30px;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.04);
}

.quality p{
    text-align: center;
    color: #999;
    font-size: 14px;
    margin-top: 20px;
}

.quality ion-icon{
    text-align: center;
    font-size: 52px;
    margin-bottom: 15px;
    color: var(--primary);
}

.mission{
    width: 100%;
    padding: 20px;
    background: var(--light);
    margin: 20px auto;
    text-align: left;
    border-radius: 5px;
    min-height: 300px;
}

.mission img{
    width: 80px;
    height: 80px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--secondary);
    border-radius: 5px;
    margin-bottom: 15px;
}

.mission h2{
    font-size: 16px;
}

.mission p{
    font-size: 13px;
    text-align: left;
}

.infra-box{
    width: 100%;
}

.infra-box .infra-img img{
    width: 80%;
    display: block;
    margin: 0px auto;
    border-radius: 15px;
    border: 4px solid #fff;
    box-shadow: 10px 10px 0px var(--primary);
}

.infra-content h3{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary);
}

.infra-content p{
    font-size: 13px;
    color: #777;
    text-align: justify;
    margin-bottom: 20px;
}

.infra-section.dark{
    background: var(--dark);
}

.infra-section.dark .section-title h1{
    color: #f8f8f8;
}

.infra-section h3{
    font-size: 22px;
    color: var(--primary);
    font-size: 18px;
}

.infra-section p{
    font-size: 13px;
    color: #888;
    margin: 15px 0px;
}

.infra-section.dark p{
    color: #fff;
}


.infra-section .feature-list li{
    font-size: 13px;
    color: #888;
}


.infra-section img{
    width: 90%;
    margin: 10px auto;
    display: block;
    border-radius: 3px;
    border: 8px solid var(--secondary);
}

.whatsapp{
    color: #fff;
    text-decoration: none;
    position: fixed;
    display: flex;
    align-items: center;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    padding: 5px 15px;
    border-radius: 3px;
    background: #00A982;
    font-size: 15px;
}

.whatsapp ion-icon{
    margin-right: 15px;
    font-size: 22px;
}

.footer-info img{
    width: 300px;
}

@media (max-width: 768px) {

    .about-image,
    .vision-image,
    .values-image{
        height: 250px;
    }

    .about-content h1,
    .why-title h1{
        font-size: 32px;
    }

    .page-header h1{
        font-size: 29px;
    }

    .closemenu {
        display: block;
    }

    .menuicon {
        display: flex;
    }

    .splide__arrow{
        width: 2em;
        height: 2em;
    }

    .quality h2{
        font-size: 18px;
    }

    .col-1,
    .col-2,
    .col-3,
    .col-4,
    .about-content,
    .about-image,
    .contact-details,
    .contact-form,
    .career form{
        width: 100%;
    }

    .contact-details{
        margin-right: 0;
    }

    .about,
    .contact,
    .top-bar,
    .why-title{
        flex-direction: column;
    }

    .top-bar,
    .header,
    .about-content,
    .why-container,
    .product-container,
    .contact-infos,
    .footer,
    .section,
    .page-header,
    .quality{
        padding: 15px;
    }

    .footer {
        grid-template-columns: 1fr;
    }

    .menu {
        width: 300px;
        height: 100vh;
        position: fixed;
        top: 0;
        left: -300px;
        z-index: 999;
        background: #000;
        transition: .3s ease-in-out;
    }

    .menu.active {
        left: 0;
    }

    .menu ul {
        flex-direction: column;
        margin-top: 100px;
    }

    .menu ion-icon {
        color: red;
        font-size: 32px;
        position: absolute;
        top: 15px;
        right: 15px;
        cursor: pointer;
    }

    .header .menu ul li a {
        color: #fff;
        display: block;
        padding: 10px;
    }

}