/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ED3237;
    --secondary-color: #0ABC0A;
    --text-color: #000000;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --container-width: 1440px;
    --nav-hover-color: #00AD00;

    --border-radius: 10px;
}

body {
    font-family: "Raleway", sans-serif;
    color: var(--text-color);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: var(--white);
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 1000;
}
.footer-top .categories li a:hover {
    color: #d13235 !important;
}
.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0;
    position: relative;
    gap: 20px;
}
.nav-right a {
  background: linear-gradient(45deg, red, green) !important;
  color: #000000;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  animation: blinkGradient 1s infinite;
  border-radius: 5px;
  cursor: pointer;
}

/* Blinking effect */
@keyframes blinkGradient {
  0% {
    opacity: 1;
    filter: brightness(1);
  }
  50% {
    opacity: 0.8;
    filter: brightness(1.5);
  }
  100% {
    opacity: 1;
    filter: brightness(1);
  }
}
.main-nav .logo img {
    max-width: 282px;
    width: 100%;
    object-fit: contain;
    height: 50px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.625rem;
    margin: 0 auto;
}
.certificate-item {
    border: 2px dotted #f48120;
    height: 100%;
}
.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 400;
    transition: color 0.3s ease;
    font-family: "Rubik", sans-serif;
    font-size: 18px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--nav-hover-color);
}

.nav-right {
    display: flex;
    align-items: center;
}

.inquiry-btn i {
    display: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--text-color);
    transition: 0.3s;
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.hero-banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 180px 0 220px;
    position: relative;
    color: #fff;
    text-align: left;
    overflow: hidden;
    position: relative;
}

.hero-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: url("../images/hero-layer.png");
    background-size: cover;
    background-position: bottom;
    z-index: 1;
}

.hero-banner::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 60px;
    background: url("../images/hero-layer.png");
    background-size: cover;
    background-position: bottom;
    z-index: 1;
    transform: rotate(180deg);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.3;
    font-family: "Rubik", sans-serif;
    max-width: 715px;
}

.hero-subtitle {
    font-size: 18px;
    margin: 15px 0 0;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
}

.btn-green {
    background-color: #0cb20c !important;
    color: #fff !important;
    padding: 12px 20px !important;
    border: none;
    border-bottom-right-radius: 20px !important;
    border-top-left-radius: 20px !important;
    font-weight: 600;
    display: inline-block;
    text-decoration: none;
    margin: 30px 0 0;
    font-family: "Rubik", sans-serif;
    transition: all 0.3s ease;
}

.btn-green:hover {
    background-color: var(--primary-color) !important;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    border-bottom-right-radius: 20px !important;
    border-top-left-radius: 20px !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: "Rubik", sans-serif;
    font-weight: bold;
    font-size: 18px;
    border: none;
    cursor: pointer;
    gap: 10px;
}

.btn-red {
    background: var(--primary-color) !important;
    color: var(--white) !important;
    padding: 12px 20px;
}

.btn-red:hover {
    background: var(--secondary-color) !important;
}

.btn-icon {
    display: none;
    font-size: 20px;
}

/* Section Styles */
section {
    padding: 100px 0;
}

/* About section */
.about-section {
    padding: 120px 0 120px;
    background-repeat: no-repeat;
    background-position: bottom right 60px;
    background-size: 460px auto;
}

.about-section .inner-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    max-width: 1350px;
}

.about-section .about-images,
.about-section .about-content {
    flex: 1 1 48%;
    position: relative;
}

.about-section .about-images {
    position: relative;
}
.about-content p {
    font-size: 16px;
    line-height: 30px;
}
.about-section .trusted-badge {
    position: absolute;
    top: -60px;
    left: 0%;
    background: #14a800;
    color: #fff;
    border-radius: 50%;
    width: 160px;
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: "Rubik", sans-serif;
}

.about-section .trusted-badge::after {
    content: "";
    position: absolute;
    bottom: 8px;
    right: 24px;
    width: 20px;
    height: 20px;
    background: #14a800;
}

.about-section .trusted-badge span {
    font-size: 18px;
}

.about-section .trusted-badge strong {
    font-size: 40px;
    line-height: 1;
}

.about-section .about-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.about-section .main-image {
    margin-left: 25%;
}

.about-section .sub-image {
    margin-top: -22%;
    max-width: 332px;
    width: 100%;
}

.about-section .welcome-text {
    color: var(--primary-color);
    font-family: "Raleway", sans-serif;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 700;
}

.about-section .title {
    font-family: "Rubik", sans-serif;
    font-size: 45px;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 35px;
}

.about-section .description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
	text-align: justify;
}

.about-section .description strong,
.about-section .description b {
    font-weight: 900;
    text-transform: uppercase;
    color: var(--primary-color);
}

.about-section .features {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 20px;
    padding: 15px 0;
    border-top: 1px solid #D9D9D9;
    border-bottom: 1px solid #D9D9D9;
}

.about-section .feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: 600;
    color: #14a800;
    font-size: 14px;
}

.about-section .feature-item img {
    max-width: 73px;
    width: 100%;
    height: auto;
    object-fit: contain;
    ;
}

.about-section .feature-item span {
    font-size: 22px;
    font-weight: 700;
    font-family: "Rubik", sans-serif;
    line-height: 32px;
}
.about-section .btn {
    margin-top: 30px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;   
}

/* Product section */
.product-section {
    background-color: #BDCD8E;
    overflow: hidden;
    position: relative;
}

.product-section .title {
    text-align: center;
    border-bottom: 4px solid #315527;
    padding-bottom: 15px;
    font-size: 45px;
    font-weight: 900;
    width: fit-content;
    margin: 0 auto;
}

.slick-track {
    display: flex;
    gap: 25px;
}

.product-section .slider-wrapper {
    margin-top: 60px;
    padding-bottom: 75px;
    position: relative;
}
.product-slick .slick-track {
        display: flex !important;
}
/* .product-section .slider-wrapper .slick-list {
    margin: 0 -20%;
} */

.product-section .slider-wrapper .slider-item {
    position: relative;
    padding: 30px;
    border-bottom-right-radius: 150px;
    overflow: hidden;
    height: 465px;
    display: flex;
    align-items: flex-end;
    border-top-left-radius: 200px;
}

.product-section .slider-wrapper .slider-item img {
    position: absolute;
    left: 0px;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-section .slider-wrapper .slider-item h3 {
    font-family: "Rubik", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    z-index: 1;
    background-color: #000000b8;
    padding: 15px 20px;
    border-radius: 10%;
}
.product-section .slider-wrapper .slider-item h3 a{
    color: #fff !important;
}
.product-section .slick-arrow {
    background-color: #EBEBEB;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    top: unset;
    bottom: -11px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-section .slick-arrow::before {
    display: none;
}

.product-section .slick-arrow i {
    font-size: 16px;
    color: var(--text-color);
}

.product-section .slick-prev {
    left: calc(50% - 55px);
}

.product-section .slick-next {
    right: calc(50% - 55px);
}

.product-section .slick-arrow:hover {
    background-color: var(--primary-color);
}

.product-section .slick-arrow:hover i {
    color: var(--white);
}

.product-section .carrot-art {
    position: absolute;
    bottom: -80px;
    width: 100%;
    object-fit: cover;
    height: 25%;
    z-index: 1;
    pointer-events: none;
}

/* Certificate Section  */

.certificates-section .title {
    text-align: center;
    border-bottom: 4px solid #315527;
    padding-bottom: 15px;
    font-size: 35px;
    font-weight: 700;
    width: fit-content;
    margin: 0 auto;
}

.certificates-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 60px;
    align-items: center;
}

.certificates-wrapper .certificate-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.flex-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.flex-group>* {
    width: 100%;
}

/* Client Review Section */
.client-review-section {
    background-color: #BDCD8E;
}

.client-review-section .title {
    text-align: center;
    border-bottom: 4px solid #00CF2D;
    padding-bottom: 15px;
    font-size: 35px;
    font-weight: 700;
    width: fit-content;
    margin: 0 auto;
}

.client-review-section .slider-wrapper {
    margin-top: 60px;
    overflow: hidden;
    padding-bottom: 75px;
    position: relative;
}

.client-review-section .slick-arrow {
    background-color: #EBEBEB;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    top: unset;
    bottom: -11px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-review-section .slick-arrow::before {
    display: none;
}

.client-review-section .slick-arrow i {
    font-size: 16px;
    color: var(--text-color);
}


.client-review-section .slick-prev {
    left: calc(50% - 55px);
}

.client-review-section .slick-next {
    right: calc(50% - 55px);
}

.client-review-section .slick-arrow:hover {
    background-color: var(--primary-color);
}

.client-review-section .slick-arrow:hover i {
    color: var(--white);
}

.client-review-section .slick-track {
    display: flex;
    gap: 25px;
}
.client-review-section .slider-wrapper .slider-item {
    background-color: var(--white);
    padding: 30px 25px;
    border-bottom-right-radius: 50px;
    border-top-left-radius: 50px;
}

.client-review-section .slider-wrapper .slider-item .client-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    gap: 15px;
}

.client-review-section .slider-wrapper .slider-item .client-info .inner-group {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 300px;
}

.client-review-section .slider-wrapper .slider-item .client-info .inner-group .client-img {
    width: 67px;
    height: 67px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.client-review-section .slider-wrapper .slider-item .client-info .inner-group .client-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-review-section .slider-wrapper .slider-item .client-info .inner-group h3 {
    font-family: "Rubik", sans-serif;
    color: var(--text-color);
    margin-bottom: 10px;
}

.client-review-section .slider-wrapper .slider-item .client-info .inner-group p {
    color: #696969;
    font-family: "Rubik", sans-serif;
    margin: 0;
}

.client-review-section .client-rating i {
    color: #FFC421;
}

.client-review-section .content p {
    color: #696969;
    font-family: "Rubik", sans-serif;
    font-size: 16px;
}


/* Contact Form */
.contact-section {
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 460px auto;
}

.contact-section .inner-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 150px;
}

.contact-section .inner-wrapper .title {
    text-transform: uppercase;
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 30px;
}

.contact-section .inner-wrapper .title::after {
    content: "";
    display: block;
    width: 150px;
    height: 3px;
    background: #00CF2D;
    border-radius: 2px;
    margin-top: 15px;
}

.contact-section .inner-wrapper ul {
    list-style: none;
    padding-left: 0px;
}

.contact-section .inner-wrapper ul li {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 30px;
}

.contact-section .inner-wrapper ul li i {
    margin-top: 2px;
}

.contact-section .inner-wrapper ul li span a,
.contact-section .inner-wrapper ul li span {
    font-size: 18px;
    font-family: "Rubik", sans-serif;
    font-weight: 600;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-section .inner-wrapper ul li span a:hover {
    color: var(--primary-color);
}

.contact-section .inner-wrapper ul li .info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #D9D9D9;
    border-radius: 5px;
    font-family: "Rubik", sans-serif;
    font-size: 16px;
    color: #929191;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    font-family: "Raleway", sans-serif;
    color: #222;
    background-position: top;
    padding-top: 150px;
    background-size: cover;
    position: relative;
}

.footer-top {
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px 0px 0 0px;
    gap: 70px;
    position: relative;
    z-index: 2;
}

/* .footer-top .footer-col {
    flex: 1 1 220px;
    min-width: 220px;
    margin-bottom: 20px;
} */

.footer-top .company {
    max-width: 520px;
}

.footer-top .company img {
    max-width: 342px;
    width: 100%;
    height: 56px;
    object-fit: contain;
    margin-bottom: 15px;
}

.footer-top .footer-top .company h3 {
    font-family: "Rubik", sans-serif;
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.footer-top .company p {
    color: var(--text-color);
    line-height: 1.7;
    font-family: "Rubik", sans-serif;
	font-weight: 600;
}

.footer-top .categories h4,
.footer-top .address h4 {
    font-family: "Raleway", sans-serif;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-color);
}

.footer-top .address ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-top .categories {
    width: 400px;
}

.footer-top .categories ul {
    padding-left: 05px;
}

.footer-top .categories li {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 500;
    color: var(--text-color);
    line-height: 1.5;
}

.footer-top .categories li:last-child {
    margin-bottom: 0;
}

.footer-top .categories li a {
    color: inherit;
    text-decoration: none;
	font-weight: 600;
}

.footer-top .address li {
    color: var(--text-color);
    margin-bottom: 28px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-weight: 600;
}

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

.footer-top .address li a {
    color: inherit;
    text-decoration: none;
}

.footer-top .address i {
    color: var(--text-color);
    min-width: 18px;
    margin-top: 2px;
    font-size: 18px;
}

.footer-social {
    margin-top: 10px;
    display: flex;
    align-items: center;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: var(--text-color);
    font-size: 18px;
    width: 34px;
    height: 34px;
    padding: 15px;
    border: 1px solid var(--text-color);
    border-radius: 50%;
    transition:
        color 0.2s,
        border-color 0.2s,
        background 0.2s;
    text-decoration: none;
}

.footer-social a i {
    min-width: fit-content !important;
    color: inherit;
}

.footer-social a:hover i {
    color: var(--white);
}

.footer-social a:last-child {
    margin-right: 0;
}

.footer-social a:hover {
    color: #fff;
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.footer-tree {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    max-width: 318px;
}

.footer-tree img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-micronutrients {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-micronutrients img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    display: block;
}

.footer-mix-title {
    text-align: center;
    margin-bottom: 0;
    margin-top: 10px;
}

.mix-title-main {
    display: block;
    font-family: "Rubik", sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--text-color);
    letter-spacing: 2px;
    line-height: 1;
}

.mix-title-sub {
    display: block;
    font-family: "Rubik", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: 1px;
    line-height: 1;
}

.footer-micronutrients-label {
    position: absolute;
    background: #fff;
    color: #6b8a4c;
    font-family: "Rubik", sans-serif;
    font-weight: 700;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: 2px solid #c8db9b;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.footer-micronutrients-label.zn {
    left: 10px;
    top: 40px;
}

.footer-micronutrients-label.fe {
    left: 40px;
    bottom: 20px;
}

.footer-micronutrients-label.b {
    left: 80px;
    top: 10px;
}

.footer-micronutrients-label.mn {
    right: 10px;
    top: 40px;
}

.footer-micronutrients-label.cu {
    right: 40px;
    bottom: 20px;
}

.footer-micronutrients-label.mo {
    right: 80px;
    top: 10px;
}

.footer-branches {
    background: var(--primary-color);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    padding: 15px;
    margin: 30px 0 0 0;
    border-radius: 10px;
    letter-spacing: 0.5px;
    font-family: "Rubik", sans-serif;
    position: relative;
    z-index: 2;
}

.footer-bottom {
    background: #315527;
    color: #fff;
    text-align: center;
    font-size: 14px;
    padding: 20px 0;
    margin-top: 25px;
}

/********* New ***********/

.custom-container {
    margin: 0 150px;
    /* 130px space on the left and right */
    padding: 0 10px;
}

@media (max-width: 1600px) {
    .custom-container {
        margin: 0 80px;
        padding: 0 10px;
    }
}

@media (max-width: 1199px) {
    .custom-container {
        margin: 0 70px;
        /* Reduce margin on tablets and medium devices */
    }
}

@media (max-width: 1024px) {
    .custom-container {
        margin: 0 50px;
        /* Reduce margin on tablets and medium devices */
    }
}

@media (max-width: 768px) {
    .custom-container {
        margin: 0 15px;
        /* Reduce margin further on small devices */
    }
}

@media (max-width: 480px) {
    .custom-container {
        margin: 0 15px;
        /* Minimal margin on very small devices */
    }
}

img {
    max-width: 100%;
}

a:focus {
    text-decoration: none;
    outline: 0;
}

a {
    color: var(--primary-clr);
    text-decoration: none;
    /* transition: 0.5s cubic-bezier(0.4, 0, 1, 1); */
}

a:hover {
    color: var(--primary-color);
    text-decoration: none;
    outline: 0;
}

h1 {
    margin: 0;
    color: var(--primary-clr);
}

h2 {
    margin: 0;
    font-size: 45px;
    font-weight: 600;
    color: var(--primary-clr);
    text-transform: uppercase;
}

h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-clr);
}

h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-clr);
}

h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    color: var(--granite-gray-clr);
}

p {
    margin: 0;
    font-size: 15px;
    font-weight: 400;
    color: var(--primary-clr);
}

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

a:hover {
    color: var(--primary-color);
}

ul {
    list-style: none;
    margin-bottom: 0;
}

.bg-img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.primary-btn {
    /* padding: 19px 40px; */
    padding: 15px 30px;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: var(--white) !important;
    font-size: 15px;
    font-weight: 400;
    text-transform: capitalize;
    display: inline-block;
    transition: 0.5s cubic-bezier(0.4, 0, 1, 1);
}

.primary-btn:hover {
    /* background: var(--white);
    color: var(--primary-color); */
}

.green-btn {
    /* padding: 19px 40px; */
    padding: 15px 30px;
    background-color: var(--secondary-clr) !important;
    border: 1px solid var(--secondary-clr) !important;
    color: var(--white);
    border: 1px solid var(--secondary-clr);
    font-size: 15px;
    font-weight: 400;
    text-transform: capitalize;
    display: inline-block;
    transition: 0.5s cubic-bezier(0.4, 0, 1, 1);
    letter-spacing: 0.18px;
}

.green-btn:hover {
    background-color: var(--white) !important;
    color: var(--secondary-clr) !important;
}

.py-100 {
    padding: 100px 0;
}

.pt-100 {
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.py-60 {
    padding: 60px 0;
}

.pt-60 {
    padding-top: 60px;
}

.pb-60 {
    padding-bottom: 60px;
}

.px-60 {
    padding: 0 60px;
}

.pl-50 {
    padding-left: 50px;
}

.pr-50 {
    padding-right: 50px;
}

.common-heading {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.common-heading p {
    color: var(--granite-gray-clr);
}

.transperent-title {
    font-size: 163px;
    font-weight: 800;
    color: #f1f1f1;
    line-height: 150px;
    top: 50px;
    position: relative;
    z-index: -1;
}

.sub-title {
    font-size: 25px;
    font-weight: normal;
    color: #666666;
}

@media only screen and (max-width: 991px) {
    .py-100 {
        padding: 80px 0;
    }

    .pt-100 {
        padding-top: 80px;
    }

    .pb-100 {
        padding-bottom: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .py-100 {
        padding: 70px 0;
    }
.product-section, .client-review-section {
    border-left: 10px solid #fff;
    border-right: 10px solid #fff;
}
    .pt-100 {
        padding-top: 70px;
    }

    .pb-100 {
        padding-bottom: 70px;
    }

    .py-60 {
        padding: 50px 0;
    }

    .pt-60 {
        padding-top: 50px;
    }

    .pb-60 {
        padding-bottom: 50px;
    }

    .px-60 {
        padding: 0 50px;
    }
}

@media only screen and (max-width: 575px) {
    .py-100 {
        padding: 50px 0;
    }

    .pt-100 {
        padding-top: 50px;
    }

    .pb-100 {
        padding-bottom: 50px;
    }

    .py-60 {
        padding: 30px 0;
    }

    .pt-60 {
        padding-top: 30px;
    }

    .pb-60 {
        padding-bottom: 30px;
    }

    .px-60 {
        padding: 0 30px;
    }
}

.row-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 100px;
    align-items: center;
}

.lb-data .lb-close {
    background: url(../image/close.png) top right no-repeat !important;
}

.lb-nav a.lb-prev {
    background: url(../image/prev.png) left 48% no-repeat !important;
}

.lb-nav a.lb-next {
    background: url(../image/next.png) right 48% no-repeat !important;
}

.lb-cancel {
    background: url(../image/loading.gif) no-repeat !important;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.main-header {
    padding: 25px 0px;
    z-index: 99;
}

.main-header .logo {
    padding: 0;
    margin: 0;
}

.main-header .logo {
    max-width: 213px;
    height: auto;
    object-fit: cover;
}

.main-header .nav-menu {
    align-items: center;
    gap: 20px;
}

.nav-menu .nav-item .nav-link {
    font-size: 18px;
    font-weight: 400;
    padding: 60px 0;
    color: var(--white);
    transition: 0.5s all;
    text-transform: capitalize;
}

.nav-menu .nav-item .nav-link:hover {
    color: var(--primary-color);
}

.nav-menu .nav-item .nav-link.active {
    color: var(--primary-color);
}

.navbar-toggler:focus {
    box-shadow: unset;
}

.nav-menu .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    top: 90px;
}

.nav-menu .nav-item.dropdown:hover .dropdown-menu {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    background-color: var(--white);
    border: 0;
    border-radius: 3px;
}

.nav-menu .nav-item.dropdown:hover .dropdown-menu li {
    margin-bottom: 5px;
}

.nav-menu .nav-item.dropdown:hover .dropdown-menu .dropdown-item:hover {
    color: var(--primary-color);
}

.main-header .navbar-toggler {
    background-color: unset;
    border: 0;
    padding: 0;
}

.main-header .navbar-toggler .bars i {
    font-size: 30px;
    color: var(--primary-color);
}

.main-header .btn-close {
    display: none;
}

.main-header .btn-close:focus {
    box-shadow: unset;
}

/*--------------------------------------------------------------
Home Page start
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Hero Banner
--------------------------------------------------------------*/
.hero-banner {
    width: 100%;
}

.banner {
    min-height: 100vh;
    display: flex !important;
    align-items: center;
    position: relative;
}

.banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000075;
}

.banner-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.banner-content::before {
    content: '';
    position: absolute;
    bottom: 250px;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(https://www.thetop10.in/asian-flooring/assets/image/bg-img.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
}

.banner-content .bg-top-title {
    font-size: 76px;
    font-weight: 800;
    color: var(--white);
}

.banner-content .bg-title {
    font-size: 64px;
    font-weight: 800;
    color: var(--white);
}

.banner-content .bg-bold {
    font-size: 118px;
    font-weight: 800;
    color: #FF9C2A;
    line-height: 90px;
}

.banner-content p {
    font-size: 23px;
    font-weight: 400;
    color: var(--white);
}

.banner-content .green-btn {
    margin-top: 40px;
    font-size: 18px;
}

.banner-slide.owl-carousel .owl-dots {
    position: absolute;
    bottom: 50px;
    left: 48%;
    margin-top: 0 !important;
}

.banner-slide.owl-theme .owl-dots .owl-dot span {
    width: 13px;
    height: 13px;
    margin: 5px 7px;
    background: var(--white);
    border-radius: 3px;
}

.banner-slide.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--primary-color);
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.image-grid {
    display: grid;
    row-gap: 20px;
}

.image-grid .image-row {
    display: flex;
}

.image-grid .image-row {
    gap: 20px;
}

.image-grid .image-row .image {
    height: 280px;
}

.image-grid .image-row .image {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    border-radius: 5px;
}

.image-grid .image-row .image-01 {
    background-image: url('https://www.thetop10.in/asian-flooring/assets/image/about-img-1.png');
    flex: 3;
}

.image-grid .image-row .image-02 {
    background-image: url('https://www.thetop10.in/asian-flooring/assets/image/about-img-2.png');
    flex: 2;
}

.image-grid .image-row .image-03 {
    background-image: url('https://www.thetop10.in/asian-flooring/assets/image/about-img-3.png');
    flex: 2;
}

.image-grid .image-row .image-04 {
    background-image: url('https://www.thetop10.in/asian-flooring/assets/image/about-img-4.png');
    flex: 3;
}

@media screen and (max-width: 400px) {
    .image-grid .image-row {
        flex-direction: column;
    }

    .image-grid .image-row .image {
        flex-basis: auto;
    }
}

.about-images {
    flex: 2;
    display: block;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.about-images img {
    max-width: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.about-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content .title {
    font-size: 14px;
    font-weight: normal;
    color: var(--granite-gray-clr);
    margin-bottom: 5px;
}

.about-content h1 {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 15px;
}

.about-content .primary-btn {
    width: max-content;
    margin-top: 20px;
}

.counter-bx {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 80%;
}

.counter-bx .stat {
    background-color: #1f9f5f;
    color: #fff;
    padding: 22px;
    border-radius: 5px;
    flex: 1;
    width: 100%;
    box-shadow: 0px 3px 6px #00000029;
}

.counter-bx .stat .counter {
    font-size: 40px;
    font-weight: 600;
    margin: 0;
    color: var(--white);
    line-height: 36px;
}

.counter-bx .stat span {
    font-size: 40px;
    font-weight: 600;
    margin: 0;
    color: var(--white);
}

.counter-bx .stat p {
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
}

@media (max-width: 1600px) {
    .counter-bx {
        width: 100%;
    }
}

/*--------------------------------------------------------------
# Certificate
--------------------------------------------------------------*/
.certificate-bx-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.certificate-img {
    text-align: center;
    /* max-width: 150px; */
    max-width: 100px;
    margin: auto;
}

.certificate-img img {
    width: 100%;
    object-fit: contain;
    margin: auto;
    /* -webkit-filter: grayscale(1);
    filter: grayscale(1); */
}

.certificate-img img:hover {
    -webkit-filter: grayscale(0);
    filter: none;
}

/*--------------------------------------------------------------
# Select a Sport
--------------------------------------------------------------*/
.select-sport-bx {
    position: relative;
}

.select-sport-bx::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent linear-gradient(180deg, #00000000 0%, #00000099 100%) 0% 0% no-repeat padding-box;
}

.sport-slide {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.select-sport-bx .select-sport-title {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.select-sport-bx .select-sport-title h4 a {
    color: var(--white);
    text-align: center;
    text-wrap: nowrap;
}

/*--------------------------------------------------------------
# Our Products
--------------------------------------------------------------*/
.our-products-slide-bx {
    box-shadow: 0px 8px 12px #00000029;
    height: 100%;
    background: var(--white);
    overflow: hidden;
        border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
}
.vision-bx i {
    font-size: 60px;
    padding-bottom: 20px;
    color: #8f9b6e;
}
.vision-bx h3 {
    font-weight: 700;
}
.our-products-slide-bx .our-products-slide-img img {
    object-fit: contain;
    height: 300px;
    width: 100%;
    transition: 0.4s ease;
}
.product-category-block {
    margin-bottom: 40px;
}
.our-products-slide-bx:hover .our-products-slide-img img {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
}

.our-products-slide-bx .our-products-slide-content {
    padding: 20px 20px;
}

.our-products-slide-bx .our-products-slide-content a {
    font-size: 18px;
}

.our-products-slide-bx .our-products-slide-content p {
    font-size: 15px;
    font-weight: 500;
    color: var(--granite-gray-clr);
    margin-top: 3px;
}

.our-products-slide.owl-carousel .owl-stage-outer {
    height: 450px;
}

.our-client-slide.our-products-slide.owl-carousel .owl-stage-outer {
    height: 390px;
}

.our-products-slide.owl-carousel .owl-nav button {
    width: 46px;
    height: 46px;
    color: var(--primary-clr) !important;
    border-radius: 50%;
    background: var(--secondary-clr);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.our-products-slide.owl-carousel .owl-nav button.owl-prev,
.our-products-slide.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: -70px;
    left: 93%;
}

.our-products-slide.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: -70px;
    right: 0;
}

.our-products-slide.owl-carousel .owl-nav button i {
    font-size: 17px;
    color: var(--white);
}

.our-products-slide.owl-theme .owl-nav [class*='owl-']:hover {
    background: var(--light-green-clr);
}

.our-products-slide.owl-carousel .owl-nav button:hover i {
    color: #fff;
}

.our-products-btn {
    text-align: center;
    margin-top: 50px;
}

.our-products-btn .primary-btn {
    text-align: center;
}

/*--------------------------------------------------------------
# Featured Projects
--------------------------------------------------------------*/
.featured-projects {
    position: relative;
    height: 100%;
    /* padding: 50px; */
}

.featured-projects::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00a551a3
}

.featured-projects .common-heading .transperent-title {
    color: #1BA866;
}

.featured-projects .common-heading h2 {
    position: relative;
    z-index: 1;
    color: var(--white);
}

.featured-projects-bx .feature-img {
    position: relative;
    z-index: 1;
}

.featured-projects-bx .feature-img img {
    width: 100%;
    min-height: 550px;
    object-fit: cover;
}

.feature-img .featured-projects-content {
    position: absolute;
    bottom: 50px;
    left: 50px;
}

.feature-img .featured-projects-content .title {
    font-size: 30px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 5px;
}

.feature-img .featured-projects-content p {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
}

.featured-btn {
    text-align: center;
}

.featured-btn .primary-btn {
    position: relative;
    z-index: 1;
    margin-top: 40px;
}

/*--------------------------------------------------------------
# Our Client
--------------------------------------------------------------*/
.client-bx-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
}

.client-bx-grid .certificate-img img {
    filter: unset;
}

/*--------------------------------------------------------------
# Contact Us
--------------------------------------------------------------*/
.contact-us {
    position: relative;
    min-height: 717px;
    display: flex;
    align-items: center;
}

.contact-us::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000066;
}

.contact-bx {
    z-index: 1;
}

.con-info-bx {
    display: flex;
    align-items: center;
    position: relative;
    gap: 40px;
    margin-bottom: 35px;
}

.con-info-bx .contect-info-box {
    margin: 0;
}

.contect-info-box {
    position: relative;
    margin-bottom: 27px;
    padding-left: 40px;
}

.contect-info-box .icon-box {
    position: absolute;
    top: 15px;
    left: 0;
}

.contect-info-box .icon-box i {
    color: var(--white);
    font-size: 22px;
}

.contect-info-box span {
    font-size: 13px;
    font-weight: 300;
    color: var(--white);
}

.contect-info-box p {
    color: var(--white);
}

.contact-bx h3 {
    font-size: 25px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.contact-detail-form {
    position: relative;
    z-index: 1;
}

.contact-detail-form h2 {
    /* color: #fff; */
    padding-bottom: 30px;
}

.contact-form {
    position: relative;
    z-index: 1;
    background: var(--white) 0% 0% no-repeat padding-box;
    box-shadow: 0px 5px 14px #00000029;
    padding: 30px;
}

.contact-form h3 {
    font-size: 25px;
    margin-bottom: 20px;
}

.form-control {
    padding: 12px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 400;
    color: #676767;
}

.form-control input::placeholder {
    font-size: 14px;
    font-weight: 400;
    color: #676767;
}

.form-control:focus {
    box-shadow: unset;
    outline: unset;
    border-color: #dcdcdc;
}

/************************************/
/***    	14. Footer css		  ***/
/************************************/
.main-footer {
    background: var(--primary-color);
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-contact-box .footer-info-box {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
}

.footer-contact-box .footer-info-box:last-child {
    margin-bottom: 0;
}

.footer-info-box .icon-box {
    position: absolute;
    top: 2px;
    left: 0;
}

.footer-links h3 {
    text-transform: capitalize;
    margin-bottom: 20px;
}

.footer-info-box .icon-box i {
    color: var(--primary-clr);
    font-size: 17px;
}

.footer-info-box p {
    color: var(--primary-clr);
    margin: 0;
}

.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li:last-child {
    margin-bottom: 0;
}

.footer-links ul li a {
    font-size: 15px;
    color: var(--primary-clr);
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

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

.footer-copyright {
    margin-top: 30px;
    padding: 10px 0;
    border-top: 1px solid var(--white)26;
}

.footer-copyright-text p {
    color: var(--white);
    margin: 0;
}

.footer-social-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 20px;
}

.footer-social-links ul li {
    display: inline-block;
    margin-right: 10px;
}

.footer-social-links ul li:last-child {
    margin-right: 0;
}

.footer-social-links ul li a {
    background-color: var(--secondary-clr);
    color: var(--white);
    height: 36px;
    width: 36px;
    border-radius: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.footer-social-links ul li a i {
    font-size: 18px;
}

.footer-social-links ul li a:hover {
    background: var(--light-green-clr);
    color: var(--white);
}

.footer-copyright {
    background-color: #00ADEE;
}

.copyright-bx {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/*--------------------------------------------------------------
2 About Us Start
--------------------------------------------------------------*/
header.main-header.inner-header {
    position: unset;
    background: #000000;
}

/*--------------------------------------------------------------
2 Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 180px 0 100px;
    background: var(--primary-color);
    min-height: 40px;
    text-align: center;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.breadcrumbs:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000b8;
}

.breadcrumb-content {
    position: relative;
    z-index: 1;
}

.breadcrumbs h1 {
    font-size: 2.6666666666667rem;
    font-weight: 500;
    color: var(--white);
    text-transform: capitalize;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 10px 0 10px 0;
    margin: 0;
    font-size: 15px;
    justify-content: center;
}

.breadcrumbs ol li {
    color: var(--primary-color);
}

.breadcrumbs ol li a {
    color: var(--white) !important;
}

.breadcrumbs ol li a:hover {
    color: var(--white) !important;
}

.breadcrumbs ol li+li {
    padding-left: 10px;
}

.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 8px;
    color: var(--white);
    content: "\00bb";
}

/*--------------------------------------------------------------
2 About Section
--------------------------------------------------------------*/
.about-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
}

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

.about-list ul {
    list-style: disc;
    padding-left: 20px;
}

.about-list ul li {
    font-size: 15px;
    font-weight: 500;
    padding-top: 6px;
}

/*--------------------------------------------------------------
3 our vision Section
--------------------------------------------------------------*/
.our-vision {
    position: relative;
    background-attachment: fixed;
}

.our-vision::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000094;
}

.our-vision-card {
    height: 100%;
    background: var(--white) 0% 0% no-repeat padding-box;
    box-shadow: 0px 5px 14px #00000029;
    padding: 30px;
    position: relative;
    z-index: 1;
    transition: transform 1s ease 0s;
}

.our-vision-card:hover {
    background-color: var(--primary-color);
}

.our-vision-card:hover .our-vision-details h4,
.our-vision-card:hover .our-vision-details p {
    color: var(--white);
}

.our-vision-img {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fbfbf8;
    border-radius: 50%;
    height: 100px;
    width: 100px;
    margin: 0px auto 20px;
}

.our-vision-img img {
    object-fit: contain;
    width: 50px;
    height: 50px;
}

.our-vision-details {
    text-align: center;
}

.our-vision-details h4 {
    margin-bottom: 5px;
    font-size: 24px;
    padding-bottom: 15px;
}

/*--------------------------------------------------------------
4 Counter Section
--------------------------------------------------------------*/
.counter-section .counter-bx {
    width: 100%;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 0;
}

.counter-section .counter-bx .counter-box {
    text-align: center;
}

/*--------------------------------------------------------------
4 Our Team
--------------------------------------------------------------*/
.vision-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.team-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    align-items: center;
}

.team-area {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.team-area .common-heading {
    position: relative;
    z-index: 1;
}

.team-area .team-img {
    position: relative;
    z-index: 1;
}

.team-area .about-content.team-detail {
    position: relative;
    z-index: 1;
}

.team-img img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.team-detail.about-content h1 {
    color: var(--white);
}

.about-content.team-detail p {
    color: var(--white);
    margin-bottom: 10px;
}

.person-detail {
    margin-top: 25px;
}

.person-post {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.person-post p {
    color: var(--white);
}

.person-post p a {
    color: var(--white);
}

.person-post:last-child {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
Product Listing Page
--------------------------------------------------------------*/
.product-listing .our-products-slide-content {
    text-align: center;
}

/*--------------------------------------------------------------
cta
--------------------------------------------------------------*/
.cta-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cta-title {
    width: 75%;
}

.cta-title h2 {
    color: var(--white);
    margin-bottom: 10px;
}

.cta-title p {
    color: var(--white);
}

.cta-btn {
    position: relative;
    z-index: 1;
}

/*--------------------------------------------------------------
Product Details page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
product detail section
--------------------------------------------------------------*/
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--primary-color);
}

.owl-theme .owl-dots .owl-dot span {
    width: 13px;
    height: 13px;
    border-radius: 3px;
}

.price-title {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-box .view-brochure span i {
    color: var(--primary-clr);
    font-size: 18px;
    transition: 0.5s cubic-bezier(0.4, 0, 1, 1);
}

a.view-brochure:hover span i {
    color: var(--primary-color);
}

.btn-box {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 30px;
}

.latest-price {
    font-size: 14px;
    border: 1px solid var(--primary-color);
    padding: 5px 10px;
    border-radius: 23px;
    font-weight: bold;
}

.get-best-quote {
    text-align: center;
    margin-top: 25px;
}

.product-details-img img {
    width: 100%;
    object-fit: contain;
    height: 400px;
    padding: 10px;
}
.product-details-img {
    border: 1px solid #ed32372b;
}
.product-details h5 {
    color: var(--primary-clr);
}

ul li::marker {
    color: var(--primary-color);
}

table {
    border-collapse: separate;
    border-spacing: 0;
    border-width: 1px 0 0 1px;
    margin: 0 0 1.5em;
    width: 100%;
}

table,
td,
th {
    border: 1px solid var(--primary-color);
}

table tr:first-child {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 700;
}

td,
th {
    padding: 8px;
    border-width: 0 1px 1px 0;
    border-bottom: 0;
}

td:last-child {
    border-right: 0;
}

table tr:nth-child(even) {
    background: #ededed;
}

.product-detail-counter.counter-section .counter-bx {
    position: relative;
    z-index: 1;
}

.product-detail-counter .counter-bx .stat {
    background-color: unset;
    box-shadow: unset;
    padding: 0;
}

.our-products-slide-bx.our-client-main {
    border: 1px solid var(--light-green-clr);
    padding: 20px;
    height: 100%;
    transition: 0.5s all;
}

.our-products-slide-bx.our-client-main:hover {
    border-color: var(--primary-color);
}

/*--------------------------------------------------------------
our client section
--------------------------------------------------------------*/
.our-client-slide.owl-carousel .owl-nav button.owl-prev,
.our-client-slide.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: -70px;
    left: 93%;
}

.our-client-slide.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: -70px;
    right: 0;
}

.our-client-slide.owl-carousel .owl-nav button i {
    font-size: 17px;
    color: var(--white);
}

.our-client-slide.owl-theme .owl-nav [class*='owl-']:hover {
    background: var(--light-green-clr);
}

.our-client-slide.owl-carousel .owl-nav button:hover i {
    color: #fff;
}

.our-client-main .client-bx {
    display: flex;
    align-items: center;
    gap: 15px;
}

.our-client-main .client-bx .client-img img {
    max-width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
}

.our-client-main .client-bx {
    margin-bottom: 15px;
}

.our-client-inner .client-description p {
    margin-bottom: 10px;
}

.client-nm p span {
    margin-right: 10px;
}

/*--------------------------------------------------------------
faq
--------------------------------------------------------------*/
.about-in {
    position: relative;
    z-index: 1;
}

/* .about-in h2 {
    color: var(--white);
} */

.about-in .accordion-list {
    padding: 30px 0 0;
}

.about-in .accordion-list ul {
    padding: 0;
    list-style: none;
    margin-bottom: 0;
}

.about-in .accordion-list li+li {
    margin-top: 15px;
}

.about-in .accordion-list li {
    background: var(--white);
    border: 1px solid #ccc;
    border-radius: 4px;
    text-align: start;
}

.about-in .accordion-list a {
    display: block;
    position: relative;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding-right: 30px;
    outline: none;
    background: var(--white);
    padding: 15px;
    color: var(--primary-clr);
    cursor: pointer;
    border-radius: 4px;
}

.about-in.accordion-list span {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 18px;
    padding-right: 10px;
}

.about-in .accordion-list i {
    font-size: 20px;
    position: absolute;
    right: 8px;
    top: 15px;
}

.about-in .accordion-list p {
    margin-bottom: 0;
    padding: 10px;
}

.about-in .accordion-list .icon-show {
    display: none;
}

.about-in .accordion-list a.collapsed {
    color: var(--primary-clr);
}

.about-in .accordion-list a.collapsed .icon-show {
    display: inline-block;
}

.about-in .accordion-list a.collapsed .icon-close {
    display: none;
}

/*--------------------------------------------------------------
Project Listing Page
--------------------------------------------------------------*/
.project-listing-slide .owl-stage-outer {
    height: 450px;
}

/*--------------------------------------------------------------
Project Details Page
--------------------------------------------------------------*/
.gallery-bx {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.lightbox_img_wrap img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 6px;
}
.lightbox-bx {
    position: relative;
    cursor: pointer;
    z-index: 1;
    transition: all 260ms linear 0ms;
    border: 2px dotted #f48120;
}
.lightbox-bx:hover .lightbox_img_wrap img {
    border: 5px dotted var(--primary-color);
}

.lightbox-bx:hover .lightbox_img_wrap {
    opacity: 0.2;
}

.lightboxpreview {
    transition: all .3s linear;
    padding-top: 60%;
    cursor: pointer;
    background-size: cover;
}

.lightbox-content {
    max-height: 75vh;
    height: 75vh;
    width: 100%;
    max-width: 1000px;
}

.lightbox-close {
    cursor: pointer;
    margin-left: auto;
    position: absolute;
    right: -30px;
    top: -30px;
    color: white;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.modal_inner_image {
    min-height: 400px;
    z-index: 1000;
}

.modal-content {
    width: 100%;
}

.modalscale {
    transform: scale(0);
    opacity: 0;
}

.lightbox-container,
.lightbox-btn,
.lightbox-image-wrapper,
.lightbox-enabled {
    transition: all .4s ease-in-out;
}

.lightbox_img_wrap {
    position: relative;
    overflow: hidden;
}

.lightbox-bx {
    position: relative;
    cursor: pointer;
    z-index: 1;
    transition: all 260ms linear 0ms;
}

.lightbox-bx:hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00a551a3;
    z-index: -1;
}

.lightbox-bx:hover .lightbox-enabled {
    opacity: 0.2;
}

.lightbox-bx:hover .icon-box {
    display: flex;
}

.lightbox-bx .icon-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    display: none;
    transition: all .4s ease-in-out;
    z-index: 0;
}

.lightbox-bx .icon-box i {
    color: #fff;
    font-size: 35px;
}

.lightbox-enabled:hover {
    transform: scale(1.1)
}

.lightbox-enabled {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    object-fit: cover;
    cursor: pointer;
}

.lightbox-container {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, .6);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
}

.lightbox-container.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-image-wrapper {
    display: flex;
    transform: scale(0);
    align-items: center;
    justify-content: center;
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
}

.lightbox-container.active .lightbox-image-wrapper {
    transform: scale(1);
}

.lightbox-btn,
#close {
    color: white;
    z-index: 9999999;
    cursor: pointer;
    position: absolute;
    font-size: 50px;
}

.lightbox-btn:focus {
    outline: none;
}

.left {
    left: 50px;
}

.right {
    right: 50px;
}

#close {
    top: 50px;
    right: 50px;
}

.lightbox-image {
    width: 100%;
    -webkit-box-shadow: 5px 5px 20px 2px rgba(0, 0, 0, 0.19);
    box-shadow: 5px 5px 20px 2px rgba(0, 0, 0, 0.19);
    max-height: 95vh;
    object-fit: cover;
}

@keyframes slideleft {
    33% {
        transform: translateX(-300px);
        opacity: 0;
    }

    66% {
        transform: translateX(300px);
        opacity: 0;
    }
}

.slideleft {
    animation-name: slideleft;
    animation-duration: .5s;
    animation-timing-function: ease;
}

@keyframes slideright {
    33% {
        transform: translateX(300px);
        opacity: 0;
    }

    66% {
        transform: translateX(-300px);
        opacity: 0;
    }
}

.slideright {
    animation-name: slideright;
    animation-duration: .5s;
    animation-timing-function: ease;
}

/* fallback */
.material-icons {
    font-family: var(--font-poppins);
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

/*--------------------------------------------------------------
Our Client
--------------------------------------------------------------*/
.client-main-bx {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.client-logo-box img {
    max-width: 100px;
    height: auto;
    object-fit: contain;
}

.client-box .client-logo-box {
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 150px;
    background: #fff;
    border-radius: 5px;
    font-size: 20px;
    font-weight: lighter;
    letter-spacing: 2px;
    -webkit-transition: 1s -webkit-box-shadow;
    transition: 1s -webkit-box-shadow;
    transition: 1s box-shadow;
    transition: 1s box-shadow, 1s -webkit-box-shadow;
    cursor: pointer;
}

.client-box .client-logo-box:hover {
    -webkit-box-shadow: 0 5px 35px 0 rgba(0, 0, 0, .1);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.client-box .client-logo-box:hover:after,
.client-box .client-logo-box:hover:before {
    display: block;
    content: '';
    position: absolute;
    width: 320px;
    height: 150px;
    background: var(--primary-color);
    border-radius: 5px;
    z-index: -1;
    -webkit-animation: 1s infinite clockwise;
    animation: 1s infinite clockwise;
}

.client-box .client-logo-box:hover:after {
    background: var(--light-green-clr);
    -webkit-animation: 2s infinite counterclockwise;
    animation: 2s infinite counterclockwise;
}

.client-box .client-logo-box img {
    max-width: 100px;
    height: auto;
    object-fit: contain;
}

@-webkit-keyframes clockwise {

    0%,
    100% {
        top: -5px;
        left: 0;
    }

    12% {
        top: -2px;
        left: 2px;
    }

    25% {
        top: 0;
        left: 5px;
    }

    37% {
        top: 2px;
        left: 2px;
    }

    50% {
        top: 5px;
        left: 0;
    }

    62% {
        top: 2px;
        left: -2px;
    }

    75% {
        top: 0;
        left: -5px;
    }

    87% {
        top: -2px;
        left: -2px;
    }
}

@keyframes clockwise {

    0%,
    100% {
        top: -5px;
        left: 0;
    }

    12% {
        top: -2px;
        left: 2px;
    }

    25% {
        top: 0;
        left: 5px;
    }

    37% {
        top: 2px;
        left: 2px;
    }

    50% {
        top: 5px;
        left: 0;
    }

    62% {
        top: 2px;
        left: -2px;
    }

    75% {
        top: 0;
        left: -5px;
    }

    87% {
        top: -2px;
        left: -2px;
    }
}

@-webkit-keyframes counterclockwise {

    0%,
    100% {
        top: -5px;
        right: 0;
    }

    12% {
        top: -2px;
        right: 2px;
    }

    25% {
        top: 0;
        right: 5px;
    }

    37% {
        top: 2px;
        right: 2px;
    }

    50% {
        top: 5px;
        right: 0;
    }

    62% {
        top: 2px;
        right: -2px;
    }

    75% {
        top: 0;
        right: -5px;
    }

    87% {
        top: -2px;
        right: -2px;
    }
}

@keyframes counterclockwise {

    0%,
    100% {
        top: -5px;
        right: 0;
    }

    12% {
        top: -2px;
        right: 2px;
    }

    25% {
        top: 0;
        right: 5px;
    }

    37% {
        top: 2px;
        right: 2px;
    }

    50% {
        top: 5px;
        right: 0;
    }

    62% {
        top: 2px;
        right: -2px;
    }

    75% {
        top: 0;
        right: -5px;
    }

    87% {
        top: -2px;
        right: -2px;
    }
}

/************************************/
/***   Contact us Page css    ***/
/************************************/
.contact-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
}

.contact-form {
    background: var(--white);
    border-radius: 5px;
    padding: 40px;
    border-bottom-right-radius: 50px;
    border-top-left-radius: 50px;
}

.contact-img {
    padding: 15px;
    border: 1px dashed var(--primary-color);
    border-radius: 10px;
}

.contact-img img {
    height: 100%;
    object-fit: cover;
    width: 100%;
    border-radius: 10px;
}

.section-title h2 {
    margin-bottom: 30px;
}

.contact-form-content p {
    margin-bottom: 20px;
}

.form-control {
    padding: 15px 20px;
    background-color: var(--white);
    border: 1px solid var(--granite-gray-clr) !important;
    box-shadow: none;
    border: none;
    border-radius: 5px;
}

.form-group p {
    margin-bottom: 0;
}

.form-control::placeholder {
    color: var(--granite-gray-clr);
    text-transform: capitalize;
}

.contact-form button.btn-default {
    width: 100%;
}

.conatct-info-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.contact-address-box {
    box-shadow: 0px 5px 14px #00000029;
    border-bottom-right-radius: 50px;
    border-top-left-radius: 50px;
    padding: 20px;
    height: 100%;
    transition: 0.2s all;
    background: var(--white);
    text-align: center;
}

.contact-address-box:hover {
    border-color: var(--light-green-clr);
}

.contact-address-box .icon {
    width: 50px;
    height: 50px;
    padding: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 12px;
    background: #0000000d;
}
.vision-bx P {
    font-size: 16px;
    line-height: 28px;
}
.contact-address-box .icon i {
    font-size: 25px;
    color: var(--primary-clr);
}

.contact-address-box .inner-bx {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.address_blk .padd {
    padding: 25px;
    border-radius: 5px;
    height: 100%;
    background: var(--white);
    box-shadow: 0px 5px 14px #00000029;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.address_blk h3 {
    margin: 0px;
    color: var(--white);
}

.address_blk p {
    line-height: 24px;
}

.address_blk .padd img {
    max-width: 40px;
    height: auto;
    color: var(--primary-color);
    display: block;
}

.address_blk h3 {
    color: var(--primary-color);
}

.address_blk i.fa.fa-home {
    color: var(--primary-color);
}


/****** About CSS *******/
.vision-bx {
    padding: 40px;
    border-bottom-right-radius: 50px;
    border-top-left-radius: 50px;
    background-color: var(--white);
    box-shadow: 0px 5px 14px #00000029;
}
a {
    text-decoration: none !important    ;
    color: var(--text-color) !important;
}
.form-control {
    padding: 15px 20px;
    background-color: var(--white);
    border: 1px solid #000 !important;
    box-shadow: none;
    border: none;
    border-radius: 5px;
}

h2.product-category-title {
    background-color: #BDCD8E;
    padding: 10px 0px;
    margin-bottom: 40px;
    border-top-left-radius: 100px;
    border-bottom-right-radius: 100px;
    color: #000;
    font-size: 28px;
}

li.menu-item-has-children ul.sub-menu{
  position: absolute;
  top: 100%;
  min-width: 270px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  transform-origin: top center;
  transform: scaleY(0) translateZ(100px);
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  z-index: 99;
  background-color: #fff;
  box-shadow: 0px 10px 60px 0px RGBA(var(--floens-white-rgb, 255, 255, 255), 0.07);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  padding: 10px 10px;
}
li.menu-item-has-children ul.sub-menu li a{
    /* color: #fff !important; */
}
li.menu-item-has-children:hover>ul {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1) translateZ(0px);
}
/* li.menu-item-has-children ul.sub-menu {
    display: none;
    position: absolute;
    top: 40px;
    z-index: 100;
    background-color: #fff;
    width: 225px;
}

li.menu-item-has-children:hover ul.sub-menu {
    display: block;
}

li.menu-item-has-children {
    position: relative;
} */
 

.hero-slider .slick-dots li button:before{
    font-size: 18px;
    width: 40px;
    height: 40px;
    color: #007400;
}
.hero-slider .slick-dots li.slick-active button:before {
    color: #ed3237;
}
.hero-slider .slick-dots li {
    margin: 0 10px;
}
.hero-slider .slick-slide {
    height: 700px;
}
