/********** Template CSS **********/
:root {
    --dark1: #00B98E;
    --light: #F3F6F8;
    --dark: #226e03;
}


/*** 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;
}

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

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}


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

.btn.btn-dark,
.btn.btn-outline-dark:hover {
    color: #FFFFFF;
}

.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;
    border-radius: 50px;
}


/*** Navbar ***/
.navbar .navbar-nav .nav-link {
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    color: #FFFFFF;
    font-weight: 500;
    outline: none;
    transition: .5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #FFFFFF;
}

.sticky-top.navbar .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}

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

.navbar .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar .navbar-brand img {
    max-height: 75px;
    transition: .5s;
}

.sticky-top.navbar .navbar-brand img {
    max-height: 75px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar {
        position: relative;
        background: #FFFFFF;
    }

    .navbar .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar .navbar-nav .nav-link,
    .sticky-top.navbar .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark);
    }

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

    .navbar .navbar-brand h1 {
        color: var(--dark);
    }

    .navbar .navbar-brand img {
        max-height: 80px;
    }
}

@media (min-width: 992px) {
    .navbar {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .2);
        z-index: 999;
    }
    
    .sticky-top.navbar {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 2px;
        bottom: 10px;
        left: 0;
        background: #FFFFFF;
        opacity: 0;
        transition: .5s;
    }

    .sticky-top.navbar .navbar-nav .nav-link::before {
        background: var(--dark);
    }

    .navbar .navbar-nav .nav-link:hover::before,
    .navbar .navbar-nav .nav-link.active::before {
        bottom: -1px;
        left: 0;
        opacity: 1;
    }

    .navbar .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar .navbar-brand h1 {
        color: var(--dark);
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Hero Header ***/
.hero-header {
    margin-bottom: 6rem;
    padding: 12rem 0 9rem 0;
    background: url(../img/shape-bottom.png) center bottom no-repeat;
    background-size: contain;
}
.index-head h1{
    text-align: left !important;
}

.hero-header .hero-img{
    border-radius: 2%;
}
.page-header {
    margin-bottom: 6rem;
    padding: 12rem 0 6rem 0;
}

@media (max-width: 991.98px) {
    .hero-header {
        padding: 6rem 0 9rem 0;
    }

    .page-header {
        padding: 6rem 0;
    }
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(256, 256, 256, .5);
}


/* About */

.about-img{
    width: 75%;
    border-radius: 5%;
    margin-left: 5%;
}

.about-content .row{
    padding: 20px;
}

.about-content-left p,li{
    width: 90%;
}

.about-content-right{
    align-items: center;
    text-align: center;
    margin: auto;
}
.about-content-right img{
    position: relative;
    border-radius: 33%;
    align-items: center;
    text-align: center;
    margin: auto;
}
.about-page .service-item .service-title{
    position: relative;
    text-align: center;
    width: 100%;
}

.about-page .service-item .service-title:hover{
    cursor: pointer;
}
/* .about-content-2{
    text-align: center;
    width: 75%;
    margin: auto;
} */

/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    border: 1px solid transparent;
    transition: .5s;
}

.service-item:hover {
    box-shadow: none;
    border-color: var(--dark);
}

.service-item .service-icon,
.service-item .service-btn {
    margin: -1px 0 0 -1px;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--dark);
    border-radius: 5px 0;
    transition: .5s;
}

.service-item .service-block .service-icon{
    align-items: left;
    width: 25%;
}

.services-rm-btn{
    margin-top: 50px;
    text-align: center;
}

.service-item .service-title{
    position: relative;
    text-align: center;
    width: 75%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* padding: 5px 5px; */
}

.service-item .service-title h5{
    margin: auto;
}

.service-item .service-btn {
    margin: -1px -1px 0 0;
    border-radius: 0 5px;
    opacity: 0;
}

.service-item:hover .service-btn {
    opacity: 1;
}

.services-detail{
    text-align: center;
}

.service-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }

  
  .service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    text-align: center;
  }
  
  .service-list li {
    width: calc(50% - 20px);
    margin: 10px;
    padding: 10px;
    background-color: #46ba10;
    color: #ffffff;
    border-radius: 5px;
    box-shadow: 0 0 45px rgba(168, 167, 167, 0.07);
    border: 1px solid transparent;
    font-size: 20px;
    transition: background-color 0.3s ease;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .service-list li:hover {
    cursor: pointer;
    background-color: #f0f0f0;
    color: #0E2E50;
    /* background-color: #0E2E50;
    color: #ffffff; */
  }
  
/* Products */

.products-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  
  .products-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    text-align: center;
  }
  
  .products-list li {
    width: calc(25% - 20px);
    margin: 10px;
    padding: 10px;
    background-color: #46ba10;
    color: #ffffff;
    border-radius: 5px;
    box-shadow: 0 0 45px rgba(168, 167, 167, 0.07);
    border: 1px solid transparent;
    font-size: 20px;
    transition: background-color 0.3s ease;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .products-list li:hover {
    cursor: pointer;
    background-color: #f0f0f0;
    color: #0E2E50;
    /* background-color: #0E2E50;
    color: #ffffff; */
  }

  .about-page h3{
    text-align: center;
  }


  @media (max-width: 991.98px) {
    .products-container{
        max-width: 800px;
      }

      .products-list li{
        width: calc(50% - 20px);
      }
    
      .about-page{
        display: flex;
        flex-direction: column;
        width: 100%;
      }

      .about-page .col-6{
        width: 100%;
        margin: auto;
        text-align: center;
      }

      .service-row .col-6{
        display: flex;
        flex-direction: column;
        width: 100%;
      }

      /* .service-container {
        max-width: 800px;
      } */

      .service-list li{
        width: calc(50% - 20px);
      }

      .about-content .col-6{
        width: 100%;
        text-align: center;
      }

      .careers-content p{
        width: 100% !important;
    }
    
}

.m-0{
    color: #003804;
    
}



/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    border: 1px solid transparent;
    transform: scale(.85);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    box-shadow: none;
    border-color: var(--dark);
    transform: scale(1);
}

.testimonial-carousel .owl-item .testimonial-item img {
    width: 50px;
    height: 50px;
}

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

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    border: 1px solid var(--dark);
    border-radius: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--dark);
}

/* Companies */
.img-circle{
    max-height: 150px;
    max-width: 150px;
    background-color: white;
    border-radius: 50%;
}

/*** Team ***/
/*** Team ***/
.team-item {
    position: relative;
    padding-top: 20px;
    padding-left: 10px;
    text-align: center;
    transition: .5s;
    z-index: 1;
    width: 320px;
    height: 200px;
}


.team-item::before,
.team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 40%;
    top: 0;
    left: 0;
    border-radius: 5px;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    transition: .5s;
    z-index: -1;
    padding-top: 5cm;
}
.team-item a{
    color: #222323be;
}
.team-item::after {
    top: auto;
    bottom: 0;
}

.team-item:hover::before,
.team-item:hover::after {
    background: var(--dark);
}

.team-item h5,
.team-item p,
.team-item a {
    transition: .5s;
}

.team-item:hover h5,
.team-item:hover p, 
.team-item:hover a{
    color: #FFFFFF;
}

/* .team-item img {
    padding: 15px;
    border: 1px solid var(--dark);
} */

.team-section{
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding-top: 1cm;
    /* max-width: 400px;
    max-height: 700px; */
}

/* Career */

.container-career {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}
h1 {
    text-align: center;
}
.job-description {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}
.job-description p {
    margin: 10px 0;
}
.contact-info {
    margin-top: 20px;
    text-align: center;
}

/* .careers-content p{
    width: 75%;
} */




/* Contact */

.container-contact {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}
h1 {
    text-align: center;
}
.contact-info {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}
.contact-info p {
    margin: 10px 0;
}
.contact-info h3 {
    margin-bottom: 10px;
}


/* Policy */

.container-policy {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}
h1 {
    text-align: center;
}
.privacy-policy {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}
.privacy-policy p {
    margin: 10px 0;
}

/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--dark);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    transition: .3s;
}

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

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

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

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

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}