/********** Template CSS **********/
:root {
    --primary: #99B329;
    --secondary: #999999;
    --light: #99B32982;
    --dark: #111111;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 60px;
    z-index: 99;
}

h4,
h5,
h6,
.h4,
.h5,
.h6 {
    font-weight: 500 !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #37392f;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand {
    height: 75px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark);
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

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


/*** Header ***/
.hero-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--secondary);
}


/*** Service ***/
.service-item {
    position: relative;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.service-item::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: -80px;
    right: -80px;
    border: 80px solid;
    transform: rotate(45deg);
    opacity: 1;
    transition: .5s;
}

/* .solutions:before {
        content: "";
        background: url(../img/serviceback.png);
        position: absolute;
        height: 100%;
        right: 0;
        left: 0;
        background-size: cover;
        z-index: 100;
        background-repeat: no-repeat;
        opacity: 0.2;

} */
.service-item.bg-white::after {
    border-color: transparent transparent var(--light) transparent;
}

.service-item.bg-light::after {
    border-color: transparent transparent #FFFFFF transparent;
}

.service-item:hover::after {
    opacity: 0;
}
.service-item a:hover i{
    color: #99B329;
    padding-left: 5px;
    transition: .3s all;
}
.service-item a:hover {
    color: #99B329;
    transition: .3s all;
}
/*** Roadmap ***/
.roadmap-carousel {
    position: relative;
}

.roadmap-carousel::before {
    position: absolute;
    content: "";
    height: 0;
    width: 100%;
    top: 20px;
    left: 0;
    border-top: 2px dashed var(--secondary);
}

.roadmap-carousel .roadmap-item .roadmap-point {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 6px;
    left: 50%;
    margin-left: -15px;
    background: #FFFFFF;
    border: 2px solid var(--primary);
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
}
.roadmap-item img{
    filter: drop-shadow(3px 3px 3px   rgba(0, 0, 0, 0.6));
}
.roadmap-carousel .roadmap-item .roadmap-point span {
    display: block;
    width: 18px;
    height: 18px;
    background: var(--primary);
}

.roadmap-carousel .roadmap-item {
    position: relative;
    padding-top: 125px;
    text-align: center;
}

.roadmap-carousel .roadmap-item::before {
    position: absolute;
    content: "";
    width: 0;
    height: 115px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-right: 2px dashed var(--secondary);
}

.roadmap-carousel .roadmap-item::after {
    position: absolute;
    content: "";
    width: 14px;
    height: 14px;
    top: 111px;
    left: 50%;
    margin-left: -7px;
    transform: rotate(45deg);
    background: var(--primary);
}

.roadmap-carousel .owl-nav {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.roadmap-carousel .owl-nav .owl-prev,
.roadmap-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 22px;
    color: var(--dark);
    background: var(--primary);
    transition: .5s;
}

.roadmap-carousel .owl-nav .owl-prev:hover,
.roadmap-carousel .owl-nav .owl-next:hover {
    color: var(--primary);
    background: var(--dark);
}


/*** FAQs ***/
.accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
}

.accordion .accordion-button {
    background: var(--light);
    border-radius: 2px;
}

.accordion .accordion-button:not(.collapsed) {
    color: #FFFFFF;
    background: var(--primary);
    box-shadow: none;
}

.accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion .accordion-body {
    padding: 15px 0 0 0;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--secondary);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--secondary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-square {
    color: var(--primary);
    border: 1px solid var(--primary);
}

.footer .btn.btn-square:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid rgba(17, 17, 17, .1);
}

.footer .copyright a {
    color: var(--primary);
}

.footer .copyright a:hover {
    color: var(--dark);
}
.text-left{
    text-align: left !important;
}
.text-white{
    color: #ffff;
}

/* """""""""" my css""""""""""" */
/* **** slider*** */
.fontset{
    color: #99B329 !important;
}
.slideimg{
    width: 100%;
    height: 70vh;
    object-fit: cover;
    filter: brightness(90%);
}
.owl-prev,
.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem; /* Adjust size as needed */
    color: #000; /* Adjust color as needed */
    z-index: 999;
}

.owl-prev {
    left: 10px; /* Adjust position as needed */
}

.owl-next {
    right: 10px; /* Adjust position as needed */
}

/* Styles for dots */
.owl-dots {
    text-align: center;
    z-index: 100;
    position: relative;
    bottom: 40px;
}

.owl-dot {
    display: inline-block;
    width: 15px; /* Adjust size as needed */
    height: 15px; /* Adjust size as needed */
    border-radius: 50%;
    background-color: #a2be26a8; /* Adjust color as needed */
    margin: 0 5px; /* Adjust spacing as needed */
    cursor: pointer;

}

.owl-dot.active {
    background-color: #7a9116; /* Adjust active color as needed */
    border: 2px solid #ffff; /* Adjust active border color as needed */
}
/* .slideimg{
    width: 100%;
    height: 90vh;
    object-fit: cover;
    -webkit-animation: zoom 10s;
    animation: zoom 10s;
    z-index: 0;
    filter: brightness(40%);
}
@-webkit-keyframes zoom {
    from {
      -webkit-transform: scale( 1);
    }
    to {
      -webkit-transform: scale(1.2);
    }
  }
  
  @keyframes zoom {
    from {
      transform: scale( 1);
    }
    to {
      transform: scale(1.2);
    }
  }
  .switchbtn{
    -webkit-transform: rotate(-90deg);
  }
  .carousel-control-prev, .carousel-control-next {
    width: 5%;
    opacity: 1;
}

.carousel-caption {
    bottom: 150px !important;

    text-align: center !important;
    color: #fff;
} */
.conuterbox img{
    background-color: white;
    width: 70px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    padding: 10px;
}
.solutions{
    background-color: #99B329;
}


/* ******About us  ***** */
.breadcrum-area {
    padding-top: 100px;
    padding-bottom: 100px;
}
.breadcrum-area{
    width: 100%;
    background-image: url(../img/about/aboutback.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.innerheadbg {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.innerheadbg {
    background-position: center center !important;
}
.innerheadbg::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #101302e8;
    left: 0;
    top: 0;
    opacity: .9;
    z-index: 0;
}


.index-up {
    position: relative;
    z-index: 5;
}
.pagescount{
    padding: 5px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.pagescount a{
  color: #99B329;
}
.default-padding {
    padding-top: 80px;
    padding-bottom: 80px;
}
.default-padding, .default-padding-top, .default-padding-bottom, .default-padding-mx {
    position: relative;
}
.about-style-one .thumb {
    position: relative;
    margin-bottom: 50px;
}
.shape-right-top {
    position: absolute;
    right: 0;
    top: 50px;
    z-index: -1;
    max-width: 22%;
}
.about-style-one .thumb > img {
    border-radius: 50%;
    max-width: 110%;
    margin-left: -10%;
}
.about-style-one .thumb .sub-item img {
    border-radius: 50%;
}
.about-style-one .thumb .sub-item {
    height: 250px;
    width: 250px;
    border-radius: 50%;
    position: absolute;
    left: -80px;
    bottom: -50px;
    padding: 17px;
}
.about-style-one .thumb .sub-item::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 100%;
    background: url(../img/about/15.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.v-center{
    align-items: center;
    align-self: center;
}
.top-product-item {
    background: var(--primary);
    padding: 30px;
    margin-top: 30px;
    color: #fff;
}
.top-product-item h5 {
    color: #fff;
}
.visioncard{
    width: 100%;
/* background: #ffff; */
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.281);
background-color: rgba(141, 141, 141, 0.322);
-webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(10px);
color: #ffff;
/* box-shadow: rgb(50 50 93 / 25%) 0px 2px 5px -1px, rgb(0 0 0 / 30%) 0px 1px 3px -1px; */
}
.innerheadbg2 {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.innerheadbg2 {
    background-position: center center !important;
}
.innerheadbg2::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #101302e0;
    left: 0;
    top: 0;
    opacity: .8;
    z-index: 0;
}


.rounded-circle {
    border-radius: 50% !important;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
}

.sub-info{
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    color: #004975;
}

.display-30 {
    font-size: 0.9rem;
}
.textset, .textset p{
    text-align: right !important;
}

/* *************Product page **************** */

.productbox >img{
    width: 100% !important;
    height: 200px !important;
    object-fit: contain !important;
}


.productbox { 
    /* margin: 15px; */
    position: relative; 
    padding: 20px;
    border: 1px solid #cccccc9c;
    text-align: center; 
    margin: 15px 0px;
    overflow: auto;
} 



.productbox::before { 
    content: ""; 
    position: absolute; 
    top: -0px; 
    left: -0px; 
    width: 0; 
    height: 0; 
    background: transparent; 
    border: 2px solid transparent; 
} 

.productbox:hover::before { 
    animation: animate .6s linear forwards; 
} 

@keyframes animate { 
    0% { 
        width: 0; 
        height: 0; 
        border-top-color: #99B329; 
        border-right-color: transparent; 
        border-bottom-color: transparent; 
        border-left-color: transparent; 
    } 

    50% { 
        width: 100%; 
        height: 0; 
        border-top-color: #99B329; 
        border-right-color: #99B329; 
        border-bottom-color: transparent; 
        border-left-color: transparent; 
    } 

    100% { 
        width: 100%; 
        height: 100%; 
        border-top-color: #99B329; 
        border-right-color: #99B329; 
        border-bottom-color: transparent; 
        border-left-color: transparent; 
    } 
} 

.productbox::after { 
    content: ""; 
    position: absolute; 
    top: -0px; 
    left: -0px; 
    width: 0; 
    height: 0; 
    background: transparent; 
    border: 2px solid transparent; 
} 

.productbox:hover::after { 
    animation: animates .6s linear forwards; 
    background-color: #9ab3296c;
} 
@keyframes animates { 
    0% { 
        width: 0; 
        height: 0; 
        border-top-color: transparent; 
        border-right-color: transparent; 
        border-bottom-color: transparent; 
        border-left-color: #99B329; 
    } 

    50% { 
        width: 0; 
        height: 100%; 
        border-top-color: transparent; 
        border-right-color: transparent; 
        border-bottom-color: #99B329; 
        border-left-color: #99B329; 
    } 

    100% { 
        width: 100%; 
        height: 100%; 
        border-top-color: transparent; 
        border-right-color: transparent; 
        border-bottom-color: #99B329; 
        border-left-color: #99B329; 
    } 
} 
.productbox h4{
    font-weight: 600 !important;
    margin-top: 10px;
    margin-bottom: 5px !important;
    font-size: 22px !important;
    color: #99B329;
    text-transform: uppercase;
}
.productbox small{
    text-transform: uppercase;
}
/* *****************Product-details Page********************* */
.Showproduct-container > img{
width: 90% !important;
height: 400px;
object-fit: contain;
}
.Showproduct-container{
    display: flex;
    justify-content: center;
    /* padding: 30px 0px; */
    z-index: 0;
    position: sticky;
    top: 120px;
}
.discription{
    padding: 0px 20px;
}
.discription > ul{
    list-style: disc;
    padding-left: 1.2rem !important;
}
.discription > ul li{
    margin-bottom: 8px;
}
.discription > ul li span{
    font-size: 18px;
}
.discription > ul li::marker{
   color: #99B329;
   font-size: larger;
}
table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
  }
  
  td, th {
    border: 1px solid #000;
    text-align: left;
    padding:  5px;
    color: #000;
    /* text-align: justify; */
  }
.quickmove{
    width: 49%;
   font-size: 13px;
    padding: 10px;
    margin: 8px 0px !important;
}
.quicklinkscontain{
text-align: center;
    margin: 25px 0px;
}
@media only screen and (max-width: 767px){
    .about-style-one .thumb > img {
        max-width: 100%;
        margin: auto;
        border-radius: inherit;
    }
    .about-style-one .thumb .sub-item {
        left: 50%;
        transform: translateX(-50%);
        display: none;
    }
    .textset, .textset p {
        text-align: left !important;
    }
 .makeresposive{
    width: 100%;
    /* background-color: red; */
    overflow: scroll;
 }
 .discription{
    padding: 0px ;
}
.quickmove {
    width: 48%;
    font-size: 13px;
    margin: 8px 0px !important;
    padding: 10px;
}
}