:root {
    --theme:#76ae0d;
    --theme-hover:#5a8600;
    --theme-light:#fbfff3;
    --container:1370px;
    --white: #ffffff;
    --black: #000000;
    --grey-300: #CCCCCC;
    --grey-200: #e4e4e4;
    --grey-100: #F5F5F5;
    --font-regular: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
}
button {
  border: none;
  outline: none;
}
.hero-slider {
  position: relative;
}
.hero-slider .slide {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: start;
  color: #fff;
}
.hero-slider .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}
.hero-slider .content {
    position: relative;
    z-index: 2;
    max-width: 718px;
}
.hero-slider .tag {
    display: inline-block;
    color: var(--theme);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    border: 1px solid var(--theme);
}
.hero-slider h1 small {
  font-weight: 500;
  font-size: 18px;
}
.hero-slider strong {
    font-size: 54px;
    font-weight: 600;
    line-height: 1.2em;
    color: #fff;
    margin-bottom: 20px;
    display: block;
}
.hero-slider strong span {
  color: var(--theme);
}
.hero-slider p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #fff;
    font-family: 'inter';
    font-weight: 400;
}
.hero-slider .btn:hover {
  background: var(--theme-hover);
}
.hero-slider .btn .arrow {
  display: inline-block;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  padding: 3px;
  margin-left: 10px;
  transform: rotate(-45deg);
  transition: 0.3s;
}
.hero-slider .btn:hover .arrow {
  transform: rotate(-45deg) translate(3px, -3px);
}
.slide-inner {
    width: var(--container);
    padding: 0 15px;
    margin: 0 auto;
    max-width: 100%;
}
/* Owl Dots */
.owl-theme .owl-dots {
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 3;
}
.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  background: #fff;
  opacity: 0.4;
  transition: 0.3s;
}
.owl-theme .owl-dots .owl-dot.active span {
  background: var(--theme);
  opacity: 1;
}
/******************************************************/
.services {
    padding: 40px 0;
}
.services-inner {
    max-width: var(--container);
    padding: 0 15px;
    margin: 0 auto;
}
.services ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.services ul li {
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 15px;
    transition: .5s;
    border: 1px solid #ececec;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .07);
    border-radius: 12px;
    display: block;
}
.services ul li p {
  color: #000;
}
.services ul li .service-title-area strong {
  font-size: 22px;
  font-weight: 600;
  color: #000;
}
.services ul li .service-title-area i {
    height: 100px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: #000;
}
.service-title-area {
    display: grid;
    grid-template-columns: 100px auto;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
}
/******************************************************/
.overview {
  padding: 40px 0;
}
.overview-inner {
  max-width: var(--container);
  padding: 0 15px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}
.overview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.stat-box {
  background: #fff;
  border-radius: 12px;
  padding: 20px 30px;
  box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  -webkit-transition: transform 0.3s;
  -moz-transition: transform 0.3s;
  -ms-transition: transform 0.3s;
  -o-transition: transform 0.3s;
  color: #000;
}
.stat-box:hover {
  background-color: #1D1D1D;
  color: #fff;
}
.stat-box:hover .icon{
  color: var(--theme);
}
.stat-box .icon {
  font-size: 70px;
}
.stat-box h2 {
  font-size: 45px;
  margin-top: 10px;
  color: inherit;
}
.stat-box p {
  font-size: 20px;
  font-weight: 400;
  color: #555555;
}
.stat-box:hover p {
  color: #fff;
}
/* Right side content */
.overview-content .badge {
  display: inline-block;
  background: #e8f5e9;
  color: #000;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.overview-content .bold {
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 18px;
  color: #333333;
}
/******************************************************/
.why-us {
  background-color: #F2F2F2;
  padding: 40px 0;
}
.why-us-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 15px;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  align-items: center;
  gap: 40px;
}
.why-image img {
  width: 100%;
  border-radius: 20px;
  display: block;
  object-fit: cover;
}
.why-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.why-item {
  display: grid;
  grid-template-columns: 80px auto;
  gap: 30px;
}
.why-us .icon-box {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1), 0 0 0 1px #CCCCCC inset;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  color: #000;
}
.why-us .text-box h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1em;
}
.why-us hr {
  border: none;
  border-top: 1px solid #ccc;
}
/******************************************************/
.benifit {
  padding: 40px 0;
}
.benifit-inner {
  max-width: var(--container);
  padding: 0 15px;
  margin: 0 auto;
}
.benifit-cnt {
  display: flex;
}
.benifit-cnt ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.benifit-cnt ul li {
  list-style-type: none;
  border: 1px solid var(--grey-300);
  border-radius: 15px;
  padding: 30px;
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  align-items: flex-start;
}
.benifit-cnt ul li .benifit-icon {
  font-size: 50px;
  color: var(--theme);
}
.benifit-cnt ul li:hover {
  border-color: var(--theme);
}
.benifit-cnt ul li strong {
  font-size: 26px;
  font-weight: var(--font-semibold);
  color: #000;
}
.benifit-cnt ul li p:last-child {
  margin-bottom: 0;
}
.benifit-cnt ul li p {
  min-height: 78px;
  margin-bottom: 10px;
}
/******************************************************/
.footer-contact {
  padding: 40px 0;
}
.footer-contact-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 15px;
}
.readytobuild-cnt {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 1fr;
}
.readytobuild-r {
  background: var(--white);
  border: 1px solid var(--theme);
  border-radius: 15px;
  padding: 30px;
}
.social-contact ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-top: 0;
}
.social-contact ul li {
  list-style-type: none;
  font-size: 18px;
  display: flex;
  align-items: center;
}
.social-contact ul li img {
  width: 28px;
  height: 28px;
  display: block;
}
.social-contact ul li a {
  color: var(--black);
  text-decoration: none;
}
.social-contact ul li a:hover {
  color: var(--theme);
}
.social-contact ul li span,
.social-contact ul li strong {
  margin-right: 15px;
}
.formarea-cnt {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form-sidebyside {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-row.form-sidebyside.justify {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.form-sidebyside img {
  vertical-align: top;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #BABABA;
  padding: 12px 0 8px 0;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  box-shadow: none;
}
.contactform-textarea {
  height: 100px;
}
.other-products {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}
.other-products li {
  padding: 10px 15px 12px 15px;
  border: 1px solid var(--theme);
  border-radius: 200px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.other-products li.active,
.other-products li:hover {
  background-color: var(--theme);
  color: #fff;
}
/******************************************************/
.industries-serving {
    padding: 40px 0;
    background-color: #f8f8f8;
}
.industries-serving-inner {
    max-width: var(--container);
    padding: 0 15px;
    margin: 0 auto;
    gap: 40px;
    align-items: center;
}
.industries-serving ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.industries-serving ul li {
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.1);
    border-radius: 20px;
    display: grid;
    grid-template-columns: 70px auto;
    gap: 20px;
}
.industries-serving ul li strong {
    font-size: 18px;
    font-weight: var(--font-semibold);
    color: #000;
}
.industries-serving ul li i {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--theme);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    background-color: var(--theme-light);
}
.industries-serving ul li i img {
    width: 50px;
}
.industries-serving .button-block {
    margin-top: 20px;
}
/* Responsive */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: 100%;
    gap: 20px;
  }
  .why-image img {
    max-width: 500px;
    display: block;
    margin: 0 auto;
  }
}
@media (max-width: 991px) {
  .services ul {
    grid-template-columns: 1fr 1fr;
  }
  .overview-inner {
    grid-template-columns: 100%;
    gap: 30px;
  }
  .overview-grid {
    gap: 20px;
  }
  .benifit-cnt ul {
    grid-template-columns: 1fr 1fr;
  }
  .benifit-cnt ul li:last-child {
    grid-column: span 2;
  }
  .readytobuild-cnt {
    grid-template-columns: 100%;
    gap: 20px;
  }
  .industries-serving ul {
    grid-template-columns: 100%;
  }
}
@media (max-width: 767px) {
  .hero-slider .content {
    padding: 0 20px;
  }
  .hero-slider h1 {
    font-size: 28px;
  }
  .owl-theme .owl-dots {
    right: 15px;
  }
}
@media (max-width: 630px) {
  .services ul {
    grid-template-columns: 100%;
  }
  .benifit-cnt ul {
    grid-template-columns: 100%;
  }
  .benifit-cnt ul li:last-child {
    grid-column: span 1;
  }
  p {
    font-size: 15px;
  }
  .services ul li .service-title-area i {
    height: 70px;
    font-size: 35px;
  }
  .service-title-area {
      grid-template-columns: 70px auto;
  }
  .services ul li .service-title-area strong {
      font-size: 18px;
      line-height: 1.2em;
  }
  .why-item {
    grid-template-columns: 100%;
  }
  .why-us .icon-box {
      width: 80px;
  }
  .benifit-cnt ul li {
      padding: 20px;
  }
  .readytobuild-r {
    padding: 20px;
  }
}
@media (max-width: 480px) {
  .overview-grid {
    gap: 20px;
    grid-template-columns: 100%;
  }
}
@media screen and (-webkit-min-device-pixel-ratio: 1.25) and (max-width:1920px) {
  .hero-slider .slide {
      min-height: 95vh;
  }
}