@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

:root {
    --greenColor: #8ab44e;
    --orangeColor: #b34747;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
}

h1,
h2 {
    font-weight: 600;
}

a {
    color: var(--greenColor);
    text-decoration: none;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    outline: none;
}

a:hover,
a:focus {
    color: #111;
    text-decoration: none;
    outline: none;
}

p {
    color: #666;
}

ul li {
    color: #666;
}

ul li svg {
    color: var(--greenColor);
}

.divider {
    margin: 20px 0px;
}

.text-teal {
    color: var(--greenColor);
}

.text-orange {
    color: var(--orangeColor);
}

.btn-success {
    background: var(--greenColor);
    padding: 0.375rem 1.75rem
}

.btn-success:hover {
    background: var(--greenColor);
    opacity: 0.8;
}

.inner-header-section {
    background: var(--greenColor);
    padding-top: 80px;
    padding-bottom: 15px;
}

.inner-header-section h1 {
    color: #fff;
    text-transform: uppercase;
}

/* Header */
header {
    width: 100%;
    background-color: #fff;
    z-index: 99999;
    position: relative;
}

header.sticky {
    -webkit-box-shadow: 0px 2px 10px -2px rgba(0, 0, 0, 0.41);
    -moz-box-shadow: 0px 2px 10px -2px rgba(0, 0, 0, 0.41);
    box-shadow: 0px 2px 10px -2px rgba(0, 0, 0, 0.41);
    background-color: #fff;
    padding-bottom: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
}

header>.container {
    padding: 20px 0px;
}

.sticky nav {
    margin-top: 10px
}

#tag_line {
    font-size: 13px;
    color: #666;
}

ul.top_links {
    list-style: none;
    margin: 0;
    padding: 0;
    float: right;
    font-weight: 600;
}

ul.top_links li {
    display: inline-block;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    margin-right: 5px;
    padding-left: 8px;
}

ul.top_links li:first-child {
    border: 0px;
}

#top_line {
    font-size: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -webkit-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    visibility: visible;
    opacity: 1;
    background: #f1f1f1;
    padding: 10px 0px;
    font-size: 12px;
}


header .logo img {
    width: 180px;
    position: absolute;
    top: -18px;
}

header nav>ul {
    display: flex;
    gap: 25px;
    justify-content: end;
    align-items: center;
    height: 100%;
}

header nav>ul>li {
    list-style: none;
    position: relative;
}

header nav>ul>li>a {
    color: #666;
    padding: 45px 0px;
    text-transform: uppercase;
    font-weight: 600;
}

header nav>ul>li.active>a {
    color: var(--greenColor);
}

header nav>ul>li>a:hover {
    color: var(--greenColor);
}

header nav>ul>li>ul {
    position: absolute;
    top: 210%;
    left: 0;
    display: flex;
    flex-direction: column;
    background: #fff;
    margin: 0px;
    padding: 0px;
    width: 200px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.30s;
}

header nav>ul>li:hover ul {
    visibility: visible;
    opacity: 1;
}

header nav>ul>li>ul>li {
    list-style-type: none;
    font-size: .85rem;
}

header nav>ul>li>ul>li>a {
    padding: 12px 20px;
    display: block;
    color: #000;
}

header nav>ul>li>ul>li>a:hover {
    background: var(--greenColor);
    color: #fff;
}


.welcome-section {
    padding: 50px;
}

.products-section {
    padding: 50px;
    background: #f3f7ed;
}

.products-section .product-box {
    display: block;
    color: #000;
    text-align: center;
}

.products-section-page .product-box {
    margin-bottom: 40px;
}

.products-section .product-box .img-box {
    overflow: hidden;
}

.products-section .product-box .text-box {
    background: #fff;
    padding: 15px 20px;
    width: 84%;
    margin: auto;
    margin-top: -20%;
    z-index: 1000;
    position: relative;
}

.products-section .product-box .img-box img {
    width: 100%;
    transition: all 0.45s;
    transform: scale(1);
}

.products-section .product-box:hover .img-box img {
    transform: scale(1.2);
}

.products-section .product-box h5 {
    font-weight: 600;
    color: var(--greenColor);
}

.count-section {
    padding: 50px;
    background: url(../images/count-bg.jpg);
}

.count-section .count-box {
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    text-align: center;
    padding: 40px 0px;
    border-radius: 10px;
}

.count-section .count-box h2 {
    font-weight: bold;
}

footer {
    background: #252c30;
    color: #fff;
    padding: 30px 0 10px 0;
    font-size: .85rem;
}

footer h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--greenColor);
}

footer p {
    color: #999;
}

footer ul {
    margin: 0px;
    padding: 0px;
    margin-left: 20px;
}

footer ul li {
    list-style: square;
    padding: 5px;
}

footer ul li a {
    color: #999;
    transition: all 0.45s;
}

footer ul li a:hover {
    color: var(--greenColor);
}

.copy-section {
    background-color: #252525;
    padding: 10px 0;
    text-align: center;
    color: #fff;
    font-size: .80rem;
}

.contact-form-section {
    padding: 50px 0px;
}

.contact-info-section ul {
    margin: 0px;
    padding: 0px;
}

.contact-info-section ul li {
    list-style: none;
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
    color: #999;
}

.contact-form-section .contact-form .form-control {
    margin-bottom: 20px;
}

.map-section iframe {
    width: 100%;
    height: 400px;
}

.products-page-section {
    padding: 50px 0px;
}

.products-page-section .products-menu {
    position: sticky;
    top: 0;
    bottom: 0;
}

.products-page-section .products-menu ul {
    display: flex;
    flex-direction: column;
    border: 1px solid #ccc;
    margin: 0px;
    padding: 0px;
    border-radius: 10px;
    overflow: hidden;
}

.products-page-section .products-menu ul li {
    list-style: none;
}

.products-page-section .products-menu ul li a {
    display: block;
    padding: 8px 15px;
    color: #000;
}

.products-page-section .products-menu ul li a:hover {
    background: var(--greenColor);
    color: #fff;
}

.products-page-section .product-inner-box {
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.products-page-section .product-inner-box h2 {
    font-size: 1.5rem;
    font-weight: 600;
}

.products-page-section .product-inner-box img {
    width: 100%;
    margin: 10px 0px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: none;
}

.products-section .owl-prev svg,
.products-section .owl-next svg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--greenColor);
    color: #fff;
    border-radius: 50%;
    font-size: 50px;
    padding: 15px;
}

.quality-policy-section {
    padding: 50px;
    background: #ffffff;
}

.testimonials-policy-section {
    padding: 50px;
    background: #99ba5e;
}

.testimonials-policy-section .testimonials-slider {
    background: var(--greenColor);
    padding: 40px;
}

.testimonials-policy-section em {
    color: #fff;
}

.testimonials-policy-section .owl-prev .cilce-icon,
.testimonials-policy-section .owl-next .cilce-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #333;
    color: #fff;
    border-radius: 50%;
}

.testimonials-policy-section .testimonial-box {
    display: block;
    background: #fff;
    color: #666;
    padding: 32px;
    height: 265px;
}

.testimonials-policy-section .testimonial-box .name-wrapper {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.testimonials-policy-section .testimonial-box .name-wrapper h5 {
    font-weight: bold;
}

.testimonials-policy-section .testimonial-box .name-wrapper p {
    margin-bottom: 0px;
}

.testimonials-policy-section .testimonial-box .name-wrapper img {
    width: 100px;
    height: 100px;
}

.certificate-wrapper {
    display: block;
    margin-bottom: 30px;
}

.gallery-wrapper {
    display: block;
    margin-bottom: 30px;
}
.gallery-wrapper img{
    width: 100%;
    height: 300px;
}