@import url('flaticon.css');
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Poppins', sans-serif;
  color: #444444;
  counter-reset: tech-counter;
}

a {
  color: #5a7a36;
  text-decoration: none;
}

a:hover {
  color: #e6573f;
  text-decoration: none;
}
.br-4{
  border-radius: 4px;
}
.text-primary, .swiper-button-next, .swiper-button-prev{
  color: #5a7a36 !important;
}
.swiper-pagination-bullet-active{
  background-color: #5a7a36 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
}


.flaticon{
  font-family: "Flaticon";
}

.text-justify{
  text-align: justify;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #5a7a36;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #405626;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #25282c;
  padding: 10px 0;
  font-size: 14px;
}

#topbar .contact-info i {
  font-style: normal;
  color: #5a7a36;
}

#topbar .contact-info i a,
#topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}

#topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

#topbar .contact-info i a:hover {
  color: #5a7a36;
}

#topbar .social-links a {
  color: #bababa;
  line-height: 0;
  transition: 0.3s;
  margin-left: 10px;
}

#topbar .social-links a:hover {
  color: white;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  /* height: 70px; */
  height: 90px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

#header .logo h1 {
  font-size: 26px;
  padding: 0 0 0 8px;
  margin: 11px 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  border-left: 8px solid #5a7a36;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #25282c;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 80px;
}

.logo{
  background: #fff;
    padding: 22px 5px 22px 5px;
    height: 180px;
    border-radius: 0px 0px 24px 24px;
    box-shadow: 0px 3px 1px 0px #00000021;
  
}#header .logo img {
  max-height: 105px !important;
    margin-top: 35px !important;
}
.scrolled-offset {
  margin-top: 90px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #25282c;
  white-space: nowrap;
  transition: 0.3s;
  font-weight: 600;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #5a7a36;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #5a7a36;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}
.enquireBtn, .enquireBtn:focus {
  background: #5a7a36;
  padding: 8px 25px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
}
.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #ec7f6d;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 24px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #25282c;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #5a7a36;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/*======================================
//--//-->   BOX COLAPSE
======================================*/
.box-collapse {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  z-index: 1040;
  background-color: #ffffff;
  transform: translateX(100%);
  transition: all 0.6s ease;
}

@media (min-width: 768px) {
  .box-collapse {
    width: 50%;
  }
}

.box-collapse .title-box-d {
  top: 30px;
  left: 60px;
  opacity: 0;
  transition: all 1s ease;
  transition-delay: 0.3s;
}

@media (max-width: 575px) {
  .box-collapse .title-box-d {
    left: 35px;
  }
}

@media (max-width: 575px) {
  .box-collapse .title-box-d .title-d {
    font-size: 1.3rem;
  }
}

.box-collapse-wrap {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 6.5rem;
  bottom: 5rem;
  padding-left: 10%;
  padding-right: 10%;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0;
  transform: translateY(3rem);
  transition: transform 0.5s 0.5s ease, opacity 0.5s 0.5s ease;
}

.box-collapse-open .click-closed {
  visibility: visible;
}

.box-collapse-open .box-collapse {
  transform: translateX(0);
  box-shadow: 0 0 65px rgba(0, 0, 0, 0.07);
  opacity: 1;
}

.box-collapse-open .box-collapse .title-box-d {
  transform: translate(0);
  opacity: 1;
}

.box-collapse-open .box-collapse-wrap {
  transform: translate(0);
  opacity: 1;
}

.box-collapse-closed .box-collapse {
  opacity: 0.7;
  transition-delay: 0s;
}

.box-collapse-closed .box-collapse .title-box-d {
  opacity: 0;
  transition-delay: 0s;
}

.box-collapse-closed .box-collapse .form-a {
  opacity: 0;
  transition-delay: 0s;
}

.click-closed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  z-index: 1035;
  background-color: #000000;
  opacity: 0.4;
}

.close-box-collapse {
  position: absolute;
  z-index: 1050;
  top: 2rem;
  font-size: 3.5rem;
  line-height: 1;
  color: #000000;
  cursor: pointer;
  transition: all 0.3s ease;
}

.right-boxed {
  right: 4.2857rem;
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #25282c;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  #header .logo img {
      max-height: 70px !important;
      margin-top: 0px !important;
    }
        .logo{
          background: transparent;
            padding: 0px;
            height: auto;
            border-radius: 0px 0px 24px 24px;
            box-shadow: 0px 3px 1px 0px #00000000;
          }
                    #hero h2{
                          font-size: 40px !important;
                            font-weight: 600;
                    }
                    #workProcess .title{
                      margin-bottom: 3.5rem;
                    }
        .float{
              bottom: 10px;
                right: 10px;
        }
    #solutions .swiper-button-next#js-next1{
      right: 40% !important;
    }
        #solutions .swiper-button-prev#js-prev1 {
          left: 40% !important;}
          .swiper-pagination{
            bottom: 0 !important
          }
    .footer-newsletter,.footer-newsletter .justify-content-end{
      text-align: center;justify-content: center !important;
    }
    #footer .d-flex{
      flex-direction: column;
    }
    #footer .copyright{
      padding-bottom: 0 !important;
    }
    #footer .copyright:last-child{
      padding-bottom: 10px !important;
    }
    #certificates .card{
      margin-bottom: 15px !important;
    }
    .lettersBar{
      gap: 5px !important
    }
    ul.prodinfo{
      padding-left: 0;
    }
    #products .accordion-body{
      padding-right: 0 !important;
      padding-left: 0 !important;
    }
    #products .sidebar{
      margin: 10px 10px 60px 20px;
    }
    #products{
      padding: 0;
    }
    #products .accordion-item:last-child {
      margin-bottom: 20px;
    }
    .productListDropdown{
      margin-bottom: 1rem!important;
    }
    a.productLetter {
      font-size: 15px;
  }
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(59, 59, 59, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #25282c;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #5a7a36;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #5a7a36;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 80vh;
  background-color: rgba(59, 59, 59, 0.8);
  overflow: hidden;
  padding: 0;
  /* margin-bottom: -120px; */
  position: relative;
  z-index: 1;
}

#hero .carousel-item {
  width: 100%;
  height: 80vh;
  background-size: contain;
  background-position: center;
  background-repeat: repeat;
  background-position: center center;
}

#hero .carousel-item::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  padding-bottom: 120px;
}

#hero .carousel-content {
  text-align: center;
}

#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
  text-shadow: 0px 2px 2px #000;
}

#hero h2 span {
  color: #698d40;
}

#hero p {
  width: 80%;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
  font-size: 20px;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
      background-repeat: no-repeat;
        background-size: cover;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-prev,
#hero .carousel-control-next {
  width: 10%;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: rgba(255, 255, 255, 0.3);
  font-size: 41px;
  line-height: 1;
  width: auto;
  height: auto;
  color: #fff;
  padding: 6px;
  opacity: 1;
}

#hero .carousel-indicators li {
  cursor: pointer;
  background: #5a7a36;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  margin-bottom: 180px;
  opacity: 0.2;
}

#hero .carousel-indicators li.active {
  opacity: 1;
}

#hero .btn-get-started {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 15px 38px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  animation-delay: 0.8s;
  border: 2px solid #5a7a36;
  background: #5a7a36;
}

#hero .btn-get-started:hover {
  background: transparent;
  color: #5a7a36;
  text-decoration: none;
}

@media (max-height: 768px),
(max-width: 1200px) {
  #hero {
    /* margin-bottom: 60px; */
  }

  #hero .carousel-container {
    padding-bottom: 0;
  }

  #hero .carousel-indicators li {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  #hero {
    height: 90vh;
  }

  #hero .carousel-item {
    height: 90vh;
  }
}

@media (min-width: 1024px) {
  #hero p {
    width: 50%;
  }

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 0 0 80px 0;
}

.section-bg {
  background-color: white;
}

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

.section-title h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #5a7a36;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0 20px 0;
  background: #f7f7f7;
  border-bottom: 1px solid #ededed;
  /* margin-bottom: 40px; */
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  color: #25282c;
}

.breadcrumbs ol {
  display: flex;
  opacity: 0;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 5px 0;
  margin: 0;
  font-size: 14px;
}

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

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6e6e6e;
  content: "/";
}

/*--------------------------------------------------------------
# Featured
--------------------------------------------------------------*/
.featured {
  position: relative;
  z-index: 2;
}

.featured .icon-box {
  padding: 40px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  background: #fff;
  transition: all ease-in-out 0.3s;
  height: 100%;
}

.featured .icon-box i {
  color: #5a7a36;
  font-size: 42px;
  margin-bottom: 15px;
  display: block;
  line-height: 0;
}

.featured .icon-box h3 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.featured .icon-box h3 a {
  color: #25282c;
  transition: 0.3s;
}

.featured .icon-box p {
  color: #25282c;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.featured .icon-box:hover {
  background: #5a7a36;
}

.featured .icon-box:hover i,
.featured .icon-box:hover h3 a,
.featured .icon-box:hover p {
  color: #fff;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about-section{
  /* margin-top: 160px; */
  padding-top: 60px;
  background-image: url(../img/about-bg.jpg);
    background-position: right top;
    background-size: 70%;
    background-repeat: no-repeat;
}
.about-section .inner-column {
  position: relative;
  z-index: 10;
  padding-left: 30px;
  padding-right: 60px;
}
.about-section .image {
  position: relative;
  margin-top: 10px;
}
.about-section .image img {
  position: relative;
  width: 100%;
  display: block;
  overflow: hidden;
  border-radius: 25px;
}
.about-section .image .circle-layer {
  position: absolute;
  left: -30px;
  top: -20px;
  width: 194px;
  height: 194px;
  z-index: 1;
  border-radius: 50%;
  box-shadow: 0px 5px 15px rgba(0,0,0,0.10);
  animation-name: rotateme;
    animation-duration: 15s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: rotateme;
    -webkit-animation-duration: 15s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: rotateme;
    -moz-animation-duration: 15s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: rotateme;
    -ms-animation-duration: 15s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: rotateme;
    -o-animation-duration: 15s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

@keyframes rotateme {
  from {
      transform: rotate(0deg);
  }
  to { 
      transform: rotate(360deg);
  }
}
@-webkit-keyframes rotateme {
  from {
      -webkit-transform: rotate(0deg);
  }
  to { 
      -webkit-transform: rotate(360deg);
  }
}
@-moz-keyframes rotateme {
  from {
      -moz-transform: rotate(0deg);
  }
  to { 
      -moz-transform: rotate(360deg);
  }
}
@-o-keyframes rotateme {
  from {
      -o-transform: rotate(0deg);
  }
  to { 
      -o-transform: rotate(360deg);
  }
}


@-webkit-keyframes rotateme-two{
  0% {
      -webkit-transform: rotate(0deg);
      opacity: 1;
    }

  50% {
      -webkit-transform: rotate(-180deg);
    }
  100% {
      -webkit-transform: rotate(-360deg);
      opacity: 1;
    }
}

.about-section p {
  font-size: 15px;
  line-height: 1.5;
  color:#777777;
  margin-top: 0;
  margin-bottom: 1rem;
}

.about-section .image .bi {
  position: absolute;
  left: -70px;
  top: -70px;
  line-height: 1em;
  font-size: 280px;
  color: #fff;
  font-family: "Flaticon";
  animation-name: rotateme-two;
    animation-duration: 15s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: rotateme-two;
    -webkit-animation-duration: 15s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
}

.sub-title {
  display: inline-flex;
    align-items: center;
    position: relative;
    padding-left: 55px;
    color: #5a7a36;
    font-weight: 700;
}
.sub-title:before {
  content: "";
    display: inline-block;
    height: 3px;
    background: #5a7a36;
    position: absolute;
  width: 12px;
  left: 0;
}
.sub-title:after {
  content: "";
  display: inline-block;
  height: 3px;
  background: #5a7a36;
  position: absolute;
  width: 27px;
    left: 16px;
}

.title{
  font-size: 3rem;
    line-height: 1.1;
    font-weight: 700;
    color: #051136;
}

.aboutUsSection{
  background-image: url(../img/about/bg.png);
    background-position: bottom right;
    background-repeat: no-repeat;
    padding: 60px 0 70px 0;
    background-size: 70%;
}
.our-story>span {
  color: #5a7a36;
  display: block;
  font-size: 22px;
  margin-bottom: 10px;
}
.our-story h2.title {
  font-size: 50px;
  font-weight: 400;
  line-height: 70px;
  margin-bottom: 20px;
}
.our-story h2.title span {
  font-family: Playfair Display,serif;
  font-style: italic;
}
.our-story h4.title {
  color: #999;
  font-size: 26px;
  font-weight: 500;
  line-height: 40px;
}
.our-story p {
  color: #000;
  font-size: 16px;
  line-height: 32px;
}

.feature-block {
  position: relative;
  margin-top: 30px;
  margin-bottom: 30px;
}
.feature-block .inner-box {
  position: relative;
  padding-left: 75px;
}
.feature-block .inner-box h5 {
  text-transform: uppercase;
  color: #000;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
}
.feature-block .inner-box .icon {
  position: absolute;
  left: 0px;
  top: -4px;
  line-height: 1em;
  display: inline-block;
  color: #5a7a36;
  font-size: 56px;
  font-family: "Flaticon";
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}
.feature-block .inner-box:hover .icon{
  -webkit-transform: scale(-1) rotate(180deg);
    -moz-transform: scale(-1) rotate(180deg);
    -ms-transform: scale(-1) rotate(180deg);
    -o-transform: scale(-1) rotate(180deg);
    transform: scale(-1) rotate(180deg);
}
.about-section .button-box {
  position: relative;
  float: left;
}
.btn-style-one {
  position: relative;
  line-height: 30px;
  font-weight: 700;
  overflow: hidden;
  text-align: center;
  border-radius: 4px;
  display: inline-grid;
  padding: 15px 38px;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  background-color: #5a7a36;
  font-family: var(--font-family-BeVietnam);
}
.btn-style-one.transparent{
  background-color: #fff;
  color: #343a40;
  font-weight: 500;
  box-shadow: 0 16px 32px 0 rgba(0,0,0,.06);
  text-transform: capitalize;
}
.btn-style-one .txt {
  position: relative;
  z-index: 1;
}
.btn-style-one:before {
  -webkit-transition-duration: 800ms;
  transition-duration: 800ms;
  position: absolute;
  width: 200%;
  height: 200%;
  content: "";
  top: 110%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: 1;
  background: #000;
}
.mt-30 {
  margin-top: 30px;
}

.btn-style-one:hover:before {
  top: -40%;
}
.btn-style-one:hover .txt{
  color:#fff
}
.btn-style-one i {
  position: relative;
  top: 2px;
  font-size: 16px;
  margin-left: 5px;
}
/* .about .content h3 {
  font-weight: 600;
  font-size: 26px;
  color: #25282c;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #5a7a36;
}

.about .content p:last-child {
  margin-bottom: 0;
} */

/*-------------------------------------------------------------
Work Process
--------------------------------------------------------------*/
#workProcess{
  position: relative;
  padding-top: 120px;
    padding-bottom: 90px;
}
#workProcess:before {
  content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  background: #1e1d23;
  opacity: 0.7;
}
#workProcess .container{
  position: relative;
  z-index: 1;
  max-width:1199px
}
.icon-bx-wraper .icon-content {
  z-index: 4;
  position: relative;
  padding-left: 0px;
}
#workProcess .icon-content  {
  margin-left: 15px;
  padding-left: 15px;
}
.icon-bx-wraper .icon-lg {
  z-index: 4;
  position: relative;
}
.icon-cell {
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  color: #82ad50;
}
#workProcess .icon-bx-wraper:hover .icon-cell {
  color: #fff !important;
}
.icon-lg i {
  vertical-align: middle;
  font-size: 62px;
  font-style: normal;
}
.flaticon-oil-pump:before {
  content: "\f1d8";
}
.flaticon-crane:before {
  content: "\f104";
}
.flaticon-employee:before {
  content: "\f101";
}
.icon-bx-wraper {
  position: relative;
  display: inline-block;
  padding: 20px 56px 20px 30px;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  align-items: center;
  display: flex;
  border-radius: 4px;
}
#workProcess .icon-bx-wraper:hover:before {
  background: #5a7a36;
}
#workProcess .icon-bx-wraper:hover img{
  filter: brightness(0) invert(1);
}
#workProcess .icon-bx-wraper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  backdrop-filter: blur(5px);
  background: rgba(255, 255, 255, 0.1);
  width: 100%;
  height: 100%;
  border-radius: 4px;
  z-index: 1;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}
.data-text {
  position: absolute;
  top: -60px;
  left: -20px;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: white;
  -webkit-text-stroke-width: 1px;
  font-family: 'inter';
  font-size: 100px;
  z-index: 0;
}
.icon-content {
  z-index: 4;
  position: relative;
  padding-left: 15px;
  overflow: hidden;
}
.m-b40 {
  margin-bottom: 40px;
}
.feature-box img{
  margin-bottom: 10px;
}
.icon-bx-wraper .icon-content .wp-title, .feature-box .wp-title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: normal;
}
#workProcess .icon-content .wp-title {

  color: #fff;
}
#workProcess .icon-content .wp-title.home-work-process {
  color: #fff;
  margin: 0;
  font-size: 23px;
}
#workProcess .icon-bx-wraper .icon-content p {
  font-weight: 400;
  font-size: 14px;
  text-align: justify;
  color: #FFFFFF;
  margin: 0;
}
/*-------------------------------------------------------------
Work Process
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Our Services
--------------------------------------------------------------*/
#services{
  background:#efefef
}
#services.content-inner-2{
  padding-top: 100px;
  padding-bottom: 80px;
}
.services .icon-box {
  text-align: center;
  border: 1px solid #ededed;
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
}
.content strong{
  min-width: 100px;
}
.content p{
  text-align: justify;
}
.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #5a7a36;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform-style: preserve-3d;
}

.services .icon-box .icon i {
  color: #fff;
  font-size: 28px;
}

.services .icon-box .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: #fbe2dd;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #25282c;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  background: #5a7a36;
  border-color: #5a7a36;
}

.services .icon-box:hover .icon {
  background: #fff;
}

.services .icon-box:hover .icon i {
  color: #5a7a36;
}

.services .icon-box:hover .icon::before {
  background: #ef9383;
}

.services .icon-box:hover h4 a,
.services .icon-box:hover p {
  color: #fff;
}

/*--------------------------------------------------------------
# Our Clients
--------------------------------------------------------------*/
#solutions{
  padding: 60px 0;
  background-image: url(../img/bg2.jpg);
}
#clients{
  padding: 60px 0;
}
.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #5a7a36;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #5a7a36;
}

.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}.sectors-slider .swiper-slide.swiper-slide-active .feature-box {
  background: #fff !important;
  border: 1px solid rgba(0, 0, 0, .1);
  box-shadow: none;
}.sectors-slider .swiper-slide.swiper-slide-active .feature-box:after {
  display: none;
}
.sectors-slider .swiper-slide.swiper-slide-active .feature-box .title {
  color: #000;
}
.sectors-slider .swiper-slide.swiper-slide-active .feature-box i{
  color: #5a7a36;
}
/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
#counts{
  background-image: url(../img/about/bg2.jpg);
  background-size: cover;
  padding-bottom: 50px;
  padding-top: 50px;
  position: relative;
}
#counts .container{
  position: relative;
  z-index: 1;
}
#counts:after {
  content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    
    opacity: .8;
  background: #000;
}
.counts .count-box {
  box-shadow: -10px -5px 40px 0 rgba(0, 0, 0, 0.1);
  padding: 30px;
  width: 100%;border: 1px solid hsla(0,0%,100%,.2);
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  padding: 50px 20px;
  position: relative;
  transition: all .8s;
  -moz-transition: all .8s;
  -webkit-transition: all .8s;
  -ms-transition: all .8s;
  -o-transition: all .8s;
  z-index: 1;
}
.count-box:after {
  background-color: #5a7a36;
  content: "";
  height: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform-origin: top;
  -moz-transform-origin: top;
  -ms-transform-origin: top;
  -webkit-transform-origin: top;
  -o-transform-origin: top;
  transition: all .8s;
  -moz-transition: all .8s;
  -webkit-transition: all .8s;
  -ms-transition: all .8s;
  -o-transition: all .8s;
  width: 100%;
  z-index: -1;
}
.count-box:hover:after {
  bottom: 0;
  height: 100%;
  top: auto;
  transform-origin: bottom;
  -moz-transform-origin: bottom;
  -ms-transform-origin: bottom;
  -webkit-transform-origin: bottom;
  -o-transform-origin: bottom;
}

.counts .count-box i {
  display: block;
  font-size: 30px;
  color: #5a7a36;
  float: left;
  line-height: 0;
}

.counts .count-box span {
  font-size: 42px;
  line-height: 24px;
  display: block;
  font-weight: 700;
  color: #fff;
}

.counts .count-box p {
  padding: 30px 0 0 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}

.counts .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #fff;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.counts .count-box a:hover {
  color: #a1a1a1;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 40px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid #fff;
  float: left;
  margin: 0 10px 0 0;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: white;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  background: white;
  border-radius: 50px;
  padding: 2px 15px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 12px 20px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  margin: 0 4px 8px 4px;
  transition: all ease-in-out 0.3s;
  border-radius: 50px;
  background: #f2f2f2;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  background: #5a7a36;
  color: #fff;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(84, 84, 84, 0.6);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(84, 84, 84, 0.6);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.portfolio .portfolio-wrap .portfolio-info::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  left: 35px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #5a7a36;
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info::before {
  top: 15px;
  left: 15px;
}

.portfolio .portfolio-wrap:hover .portfolio-info::after {
  bottom: 15px;
  right: 15px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
#contact{
  background: url(../img/contact.png) center center / cover no-repeat;
  padding-top: 60px;
}
.contact .info-box {
  color: #444444;
  text-align: center;
  background-color: #fff;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
}

.contact .info-box i {
  font-size: 32px;
  color: #5a7a36;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #fef5f4;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  background-color: #fff;
  padding: 30px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #5a7a36;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: #5a7a36;
  border: 0;
  border-radius: 50px;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
}

.contact .php-email-form button[type=submit]:hover {
  background: #e6573f;
}

.contactBoxIcon i {
  height: 100px;
  width: 100px;
  font-style: normal;
  line-height: 100px;
  font-size: 35px;
  text-align: center;
  background-color: #fff;
  border-radius: 50%;
  color:#5a7a36;
  box-shadow: 0 20px 40px 0 rgba(0,0,0,.08);
  display: inline-block;
  transition: .3s;
}
.contactBoxSocial i{
  font-style: normal;
}
.contactBox:hover .contactBoxIcon i {
  background:#5a7a36;
  color: #fff;
  transform: rotateY(1turn);
}
.contactBoxTitle {
  font-size: 24px;
  color: #343a40;
}
.mb-25 {
  margin-bottom: 25px;
}
.contactBoxText p {
  margin-bottom: 0;
  font-size: 16px;
}
.contactBoxText p a{
  color:#777
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-35 {
  margin-bottom: 35px;
}
.contactBoxSocial a {
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  color: #343a40;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 20px 40px 0 rgba(0,0,0,.08);
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
  font-size: 15px;
  transition: .3s;
}
.contactBoxSocial a:hover {
  background: #5a7a36;
  color: #fff;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog {
  padding: 40px 0 20px 0;
}

.blog .entry {
  padding: 30px;
  margin-bottom: 60px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .entry .entry-img {
  max-height: 440px;
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog .entry .entry-title {
  font-size: 28px;
  font-weight: bold;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog .entry .entry-title a {
  color: #25282c;
  transition: 0.3s;
}

.blog .entry .entry-title a:hover {
  color: #5a7a36;
}

.blog .entry .entry-meta {
  margin-bottom: 15px;
  color: #bababa;
}

.blog .entry .entry-meta ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .entry .entry-meta ul li+li {
  padding-left: 20px;
}

.blog .entry .entry-meta i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
}

.blog .entry .entry-meta a {
  color: #777777;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .entry .entry-content p {
  line-height: 24px;
}

.blog .entry .entry-content .read-more {
  -moz-text-align-last: right;
  text-align-last: right;
}

.blog .entry .entry-content .read-more a {
  display: inline-block;
  background: #5a7a36;
  color: #fff;
  padding: 6px 20px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.blog .entry .entry-content .read-more a:hover {
  background: #ec7f6d;
}

.blog .entry .entry-content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .entry .entry-content blockquote {
  overflow: hidden;
  background-color: #fafafa;
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .entry .entry-content blockquote p {
  color: #444444;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .entry .entry-content blockquote::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #25282c;
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .entry .entry-footer {
  padding-top: 10px;
  border-top: 1px solid #e6e6e6;
}

.blog .entry .entry-footer i {
  color: #a1a1a1;
  display: inline;
}

.blog .entry .entry-footer a {
  color: #616161;
  transition: 0.3s;
}

.blog .entry .entry-footer a:hover {
  color: #5a7a36;
}

.blog .entry .entry-footer .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .entry .entry-footer .cats li {
  display: inline-block;
}

.blog .entry .entry-footer .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .entry .entry-footer .tags li {
  display: inline-block;
}

.blog .entry .entry-footer .tags li+li::before {
  padding-right: 6px;
  color: #6c757d;
  content: ",";
}

.blog .entry .entry-footer .share {
  font-size: 16px;
}

.blog .entry .entry-footer .share i {
  padding-left: 5px;
}

.blog .entry-single {
  margin-bottom: 30px;
}

.blog .blog-author {
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-author img {
  width: 120px;
  margin-right: 20px;
}

.blog .blog-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: #25282c;
}

.blog .blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .blog-author .social-links a {
  color: rgba(84, 84, 84, 0.5);
  margin-right: 5px;
}

.blog .blog-author p {
  font-style: italic;
  color: #b7b7b7;
}

.blog .blog-comments {
  margin-bottom: 30px;
}

.blog .blog-comments .comments-count {
  font-weight: bold;
}

.blog .blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog .blog-comments .comment .comment-img img {
  width: 60px;
}

.blog .blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .blog-comments .comment h5 a {
  font-weight: bold;
  color: #444444;
  transition: 0.3s;
}


.blog .blog-comments .comment h5 a:hover {
  color: #5a7a36;
}

.blog .blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: #25282c;
}

.blog .blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog .blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: #6e6e6e;
  margin-bottom: 5px;
}

.blog .blog-comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .blog-comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .blog-comments .reply-form p {
  font-size: 14px;
}

.blog .blog-comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .blog-comments .reply-form input:focus {
  box-shadow: none;
  border-color: #f5bab0;
}

.blog .blog-comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .blog-comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: #f5bab0;
}

.blog .blog-comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .blog-comments .reply-form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: #25282c;
}

.blog .blog-comments .reply-form .btn-primary:hover {
  background-color: #616161;
}

.blog .blog-pagination {
  color: #878787;
}

.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog .blog-pagination li a {
  color: #25282c;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
  background: #5a7a36;
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
  color: #fff;
}

#products .sidebar {
  padding: 30px;
  margin: 0 0 60px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
#products ul.info {
  list-style: none;
  margin: 0;overflow: auto;
  padding: 0;
}
ul.prodinfo ul.info li {
  float: left;margin-bottom: 7px;
  font-size: 14px;
  font-weight: 400;
}
ul.info li.description {
  width: 60%;
  color: #8a8a8a;
}
ul.info li.title {
  width: 40%;
  color: #111;
}

#products .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0 0 0 0;
  margin: 0 0 15px 0;
  color: #25282c;
  position: relative;
}

#products .sidebar .sidebar-item {
  margin-bottom: 30px;
}

.search-form form {
  background: #fff;
  border: 1px solid #ddd;
  padding: 3px 10px;
  position: relative;
}

.search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}

.search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: #5a7a36;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.search-form form button i {
  line-height: 0;
}

.search-form form button:hover {
  background: #eb7b68;
}

#products .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

#products .sidebar .categories ul li+li {
  padding-top: 10px;
}

#products .sidebar .categories ul a {
  color: #25282c;
  transition: 0.3s;
}

#products .sidebar .categories ul a:hover {
  color: #5a7a36;
}

#products .sidebar .categories ul a span {
  padding-left: 5px;
  color: #aaaaaa;
  font-size: 14px;
}

#products #productList .product-item+.product-item {
  margin-top: 15px;
}

#products #productList .product-item img {
  width: 150px;
  margin-right:20px;
  float: left;
}

#products #productList h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
}

#products #productList h4 a {
  color: #25282c;
  transition: 0.3s;
}

#products #productList h4 a:hover {
  color: #5a7a36;
}

#products #productList time {
  display: block;
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  color: #aaaaaa;
}

#products .sidebar .tags {
  margin-bottom: -10px;
}

#products .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

#products .sidebar .tags ul li {
  display: inline-block;
}

#products .sidebar .tags ul a {
  color: #949494;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid white;
  display: inline-block;
  transition: 0.3s;
}

#products .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid #5a7a36;
  background: #5a7a36;
}

#products .sidebar .tags ul a span {
  padding-left: 5px;
  color: #ededed;
  font-size: 14px;
}

#products .accordion-item{
  border-left:0;
  border-right:0;
  border-radius: 0;
  border-bottom-width: 1px;
}
#products .accordion-item:first-of-type .accordion-button{
  border-radius: 0;
}
#products .accordion-button{
  font-size: 18px;
  line-height: 1.4;
  color: #343a40;
  font-weight: bold;
  position: relative;
  padding: 25px 0;
}
#products .accordion-button:focus{
  outline: 0;
}
#products .accordion-button:hover{
  color: #5a7a36;
}
.btn-danger{
  background: #5a7a36;
  border-color: #5a7a36;
}
.accordion-button:not(.collapsed){
  background-color: transparent;
  color: #5a7a36 !important;
}


/*********presence*************/
.presence{
  padding: 60px 0;
}
/*********presence*************/
.lettersBar{
  width: 100%;
  background-color: #fff;
  z-index: 9;
  height: 30px;
}
/* .lettersBar{
top: 100px !important;
} */
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #25282c;
  padding: 0 0 0px 0;
  color: #fff;
  font-size: 14px;
  /* background-image: url(../img/footer-bg.png), url(../img/footer-bg2.png);
  background-repeat: no-repeat;
  background-position: center left, center right; */
}

.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  line-height: 60px;
}

.footer-newsletter {
  padding: 50px 0;
  background-color: #404040;
  background-image: url(../img/pt5.png);
}

.footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
}

.footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
}

.footer-newsletter form input[type=email] {
  border: 0;
  padding: 8px;
  width: calc(100% - 140px);
}

.footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 30px;
  margin: 3px;
  background: #5a7a36;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
}

.footer-newsletter form input[type=submit]:hover {
  background: #e6573f;
}

#footer .footer-top {
  /* background: #25282c; */
  border-top: 1px solid #474747;
  border-bottom: 1px solid #474747;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 18px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #25282c;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #5a7a36;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

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

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #749f44;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #5a7a36;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .copyright {
  text-align: center;
  padding: 20px 0;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}












/*****************TECHNOLOGIES***************************/
.tech-box-area {
  position: relative;
}
.content-inner-2 {
  padding-top: 120px;
  padding-bottom: 0;
}
.bg-white {
  background-color: #fff !important;
}
.tech-box {
  background: #fff;
  z-index: 99;
  position: relative;
  padding: 50px 40px;
  border: 1px solid #ededed;border-radius: 20px;
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.05);
  overflow: hidden;
    box-shadow: 5px 5px 20px 0 rgba(0,0,0,.05);
    margin-bottom: 30px;
    padding: 50px 30px;
}
.tech-box .wp-title{
  color: #000;
}
.tech-box p{
  color:#6f6f6f
}
.tech-box:hover .icon-cell, .tech-box:hover .wp-title, .tech-box:hover p{
  color: #fff;
}
.tech-box::before {
  counter-increment: tech-counter;
  content: counter(tech-counter) ;
  font-size: 100px;
    font-weight: 700;
    line-height: 80px;
    opacity: .08;
    position: absolute;
    right: 30px;
    top: 30px;
    color: #000;
} 
.tech-box:hover:before {
  opacity: 1;
  color: #ffffff3b;
}
.tech-box:after {
  background-color: #5a7a36;
  bottom: 0;
  content: "";
  height: 100%;
  position: absolute;
  right: 0;
  transform-origin: left;
  -moz-transform-origin: left;
  -ms-transform-origin: left;
  -webkit-transform-origin: left;
  -o-transform-origin: left;
  transition: all .8s;
  -moz-transition: all .8s;
  -webkit-transition: all .8s;
  -ms-transition: all .8s;
  -o-transition: all .8s;
  width: 0;
  z-index: -1;
}
.tech-box:hover:after {
  left: 0;
  right: auto;
  transform-origin: right;
  -moz-transform-origin: right;
  -ms-transform-origin: right;
  -webkit-transform-origin: right;
  -o-transform-origin: right;
  width: 100%;
}

/* .tech-box-area:after {
  content: "";
  background-color: #fff;
  height: 40%;
  bottom: 0;
  width: 100%;
  left: 0;
  position: absolute;
  z-index: 1;
} */
.p-lr0 {
  padding-left: 0;
  padding-right: 0;
}
.tech-box.icon-bx-wraper .icon-content{
  width:100%;
}
.text-white, .text-white .title{
  color: #fff;
}.tabContent {
  display: none;
}.tabContent#infrastructure {
  display: flex;
}
/**********************TECHNOLOGIES**************************/
/*********************Testimonial**************************/
#testimonial{
  padding: 100px 0;
  background-image:url(../img/bg2.jpg);
  /* background-image: url(../img/pt-bg2.jpg), url(../img/bg2.jpg); */
  background-repeat: repeat-x;
  background-position: left top;
  /* background-position: left bottom, left top; */
  position: relative;
  background-size: cover;
  z-index: 99;
}
.testimonial-11.testimonial-box {
  background-color: #fff;
  box-shadow: 5px 5px 30px 0 rgba(0,0,0,.1);
  /* margin: 30px 100px; */
  padding: 40px;
  min-height: 320px !important;
  border-radius: 6px;
    min-height: 260px;
}
.testimonials-carousel-pagination{
  text-align: center;
}
.testimonial-11 {
  align-items: center;
  display: flex;
  padding: 0 100px 30px;
}
.testimonial-11 .testimonial-pic {
  border: 0;
  border-radius: 10px;
  height: auto;
  margin-right: 30px;
  min-width: 250px;
  overflow: hidden;
  width: 250px;
}
.testimonial-11 .testimonial-pic img {
  border-style: none;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}
.testimonial-11.testimonial-box .testimonial-text p {
  font-size: 16px;
  line-height: 28px;
  font-style: italic;
}
.quote-left:before {
  font-family: "Flaticon";
  position: absolute;
  top: 15px;
  color: rgba(0,0,0,.1);
    font-size: 90px;
    content: "\"";
    left: 20px;
    top: -30px;
  z-index: 10;
}
div#tstmnl-prev1{
  position: absolute;
  bottom: 0;left: 45%;
}
div#tstmnl-next1 {
  position: absolute;
  bottom: 0;
  right: 45%;
}
/*******************Testimonial***************************/

/******************8feature-box**************************/
.feature-box{
  background: #fff;
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 8px;
    margin: 20px 0;
    padding: 20px 20px 15px;
    position: relative;
    text-align: center;
    cursor: pointer;
    transition: all .8s;
    -moz-transition: all .8s;
    -webkit-transition: all .8s;
    -ms-transition: all .8s;
    -o-transition: all .8s;
    height: 170px;
    width: 200px;
}
.swiper-slide.swiper-slide-active .feature-box:after {
  background: #5a7a36;
  bottom: -18px;
  content: "";
  height: 20px;
  left: 50%;
  position: absolute;
  -webkit-transform: rotate(45deg) translate(-50%);
  transform: rotate(45deg) translate(-50%);
  transition: all .8s;
  -moz-transition: all .8s;
  -webkit-transition: all .8s;
  -ms-transition: all .8s;
  -o-transition: all .8s;
  width: 20px;
}
.feature-box .title {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  margin: 0;
}
.feature-box i {
  color: #5a7a36;
  display: inline-block;
  font-size: 50px;
  line-height: 50px;
  font-style: normal;
  margin-bottom: 10px;
}
.swiper-slide.swiper-slide-active .feature-box, .feature-box:hover {
  background: #5a7a36;
  box-shadow: 0 0 40px -20px #5a7a36;
}

.swiper-slide.swiper-slide-active .feature-box .title, .feature-box:hover .title, .swiper-slide.swiper-slide-active .feature-box i,  .feature-box:hover i {
  color: #fff;
}
/******************8feature-box**************************/

.card-shadow:before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 27%, rgba(0, 0, 0, 0.65) 90%);
}
.card-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.card-header-b {
  padding: 1rem 2rem;
  color: #ffffff;
  position: absolute;
  bottom: 10px;
  z-index: 2;
}
.card-header-b .title-2 a {
  color: #ffffff;font-size: 20px;
  text-decoration: none;
}
.products-carousel-pagination.carousel-pagination {
  margin-top: 10px;
  text-align: center;
}
.products-carousel-pagination.carousel-pagination .swiper-pagination-bullet {
  width: 18px;
  height: 10px;
  background-color: #c4c4c4;
  margin: 0 4px;
  border-radius: 0;
  opacity: 1;
  transition: 0.3s;
}
.products-carousel-pagination.carousel-pagination .swiper-pagination-bullet-active {
  background-color: #2eca6a;
  width: 36px;
}
#solutions .swiper{
  height: 240px;
}
#solutions .swiper-button-prev#js-prev1 {
left: 47%;
  right: auto;
  top: 94%;
  width: auto;
  height: auto;background: #5a7a36;
  padding: 6px 10px;
  border: 1px solid #dedede;
  border-radius: 50%;
}#solutions .swiper-button-next#js-next1 {
  right: 47%;
width: auto;
  height: auto;
  background: #5a7a36;
  padding: 6px 10px;
  border: 1px solid #dedede;
  border-radius: 50%;
  left: auto;
  top: 94%;
}
.swiper-button-next:after,
.swiper-button-prev:after{
  font-size: 20px;color: #fff;
}
.spacer{
  height:50px
}