#main {
  overflow: hidden;
  width: 100%;
}

.hero-section {
  position: relative;
}

.hero-section .logo-icon {
  position: absolute;
  bottom: 30px;
  left: 15px;
  z-index: 1;
  width: auto;
  max-width: 100px;
  height: auto;
  background: white;
  border-radius: 5px;
  opacity: .7;
  transition: .3s ease-out;
}

.hero-section .logo-icon:hover {
  opacity: 1;
}

@media (max-width: 575px) {
  .hero-section .logo-icon {
    bottom: 20px;
    left: 10px;
  }
}

.hero-section .item {
  height: 500px;
  position: relative;
}

.hero-section .item .cover {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
}

.hero-section .item .cover .area {
  display: flex;
  justify-content: center;
}

.hero-section .item .cover h2 {
  font-family: AbrilFatface-Regular, Arial, Helvetica, sans-serif;
  color: #ffffff;
  font-size: 65px;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.hero-section .item .cover h2 span {
  font-size: 150px;
  line-height: 1;
}

.hero-section .item .cover p {
  color: #ffffff;
  font-size: 18px;
  line-height: 28px;
  font-family: Roboto-Regular, Arial, Helvetica, sans-serif;
  max-width: 810px;
  width: 100%;
  padding: 0;
  margin-bottom: 30px;
  text-transform: initial;
  display: none;
}

.hero-section:hover .owl-nav {
  opacity: 1;
  visibility: initial;
}

.hero-section .owl-nav {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: all 350ms ease-out;
}

.hero-section .owl-nav .owl-prev, .hero-section .owl-nav .owl-next {
  pointer-events: initial;
  outline: none;
  cursor: pointer;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15) !important;
}

.hero-section .owl-nav .owl-prev:hover, .hero-section .owl-nav .owl-next:hover {
  background: transparent !important;
}

.hero-section .svg-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: absolute;
  bottom: -30px;
  left: 50%;
  translate: -50% 0;
  z-index: 1;
}

.hero-section .svg-icon:hover {
  scale: .9;
}

.hero-section .svg-icon svg {
  width: 12px;
  height: auto;
}

.services-section .services {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 30px;
}

.services-section .services .service {
  width: calc((100% - 30px * 2) / 3);
  border-radius: 5px;
  border: 1px solid #ececec;
  padding: 0px 30px 45px 30px;
  transition: .3s ease-out;
}

@media (max-width: 767px) {
  .services-section .services .service {
    width: calc((100% - 30px * 1) / 2);
  }
}

@media (max-width: 575px) {
  .services-section .services .service {
    width: 100%;
  }
}

.services-section .services .service:hover {
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.2);
}

.services-section .services .service .img {
  width: 80px;
  height: 80px;
  background-color: #31a500;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -40px auto 0;
}

.services-section .services .service .img img {
  width: auto;
  height: 30px;
}

.services-section .services .service h2 {
  font-size: 22px;
  font-family: Roboto-Bold, Arial, Helvetica, sans-serif;
  line-height: 26px;
  margin-top: 20px;
  text-align: center;
  color: #000000;
}

.services-section .services .service p {
  color: #666666;
  font-size: 16px;
  font-family: Roboto-Regular, Arial, Helvetica, sans-serif;
  line-height: 24px;
  margin-top: 15px;
  text-align: center;
}

.about-us-section {
  background-color: #f5f7f6;
}

.about-us-section .image img {
  width: auto;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  display: flex;
  margin: auto;
}

.about-us-section .truck-img {
  position: absolute;
  top: 10%;
  left: calc(100% - 15px);
  width: 250px;
}

@media (max-width: 1600px) {
  .about-us-section .truck-img {
    display: none;
  }
}

.about-us-section .description {
  background-color: #ffffff;
  padding: 43px 55px 52px;
  border-radius: 15px;
  box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.04);
}

@media (max-width: 991px) {
  .about-us-section .description {
    margin-top: 40px;
    padding: 30px 20px;
  }
  .about-us-section .description > .main-btn {
    width: 100%;
  }
}

.about-us-section .description ul li {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding-bottom: 20px;
  position: relative;
}

.about-us-section .description ul li:not(:last-child)::after {
  content: '';
  width: 1px;
  height: 100%;
  border-left: 1px dashed #31a500;
  position: absolute;
  top: 0;
  left: 25px;
}

.about-us-section .description ul li .svg {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  position: relative;
}

.about-us-section .description ul li h3 {
  font-size: 28px;
  line-height: 32px;
  margin-top: 6px;
  font-family: Roboto-Bold, Arial, Helvetica, sans-serif;
}

.about-us-section .description ul li p {
  color: #666666;
  font-size: 15px;
  font-family: Roboto-Regular, Arial, Helvetica, sans-serif;
  line-height: 27px;
  margin-top: 15px;
}

.about-us-section .description ul li:first-child .svg {
  background-color: #31a500;
  border-color: #31a500;
}

.about-us-section .description ul li:first-child .svg svg {
  width: auto;
  height: 21px;
  fill: #ffffff;
}

.about-us-section .description ul li:nth-child(2) .svg {
  background-color: #ffffff;
  border-color: #31a500;
}

.about-us-section .description ul li:nth-child(2) .svg svg {
  width: auto;
  height: 21px;
  fill: #31a500;
}

.about-us-section .description ul li:last-child .svg {
  background-color: #000000;
  border-color: #000000;
}

.about-us-section .description ul li:last-child .svg svg {
  width: auto;
  height: 21px;
  fill: #ffffff;
}

.projects-section .project {
  border-radius: 20px;
  padding: 20px;
  border: 1px solid #ececec;
  transition: .3s ease-out;
  margin-bottom: 15px;
}

.projects-section .project .image {
  position: relative;
  display: block;
  width: 100%;
  height: 250px;
}

.projects-section .project .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 15px;
  transition: .3s ease-out;
}

.projects-section .project .image .svg {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: -45px;
  right: 7px;
  transition: .3s ease-out;
}

.projects-section .project .image .svg span {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #31a500;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s ease-out;
}

.projects-section .project .image .svg span svg {
  margin: 0;
  fill: #ffffff;
  width: auto;
  height: 38px;
  max-width: 100%;
  transition: .3s ease-out;
}

.projects-section .project .name {
  margin-top: 35px;
  display: block;
  font-size: 26px;
  line-height: 32px;
  font-family: Roboto-Bold, Arial, Helvetica, sans-serif;
  color: #000000;
  transition: .3s ease-out;
}

.projects-section .project p {
  font-size: 14px;
  font-family: Roboto-Regular, Arial, Helvetica, sans-serif;
  color: #666666;
  margin-top: 15px;
  line-height: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 48px;
}

.projects-section .project .see-more {
  font-size: 16px;
  margin-top: 5px;
  color: #31a500;
  font-family: Roboto-Medium, Arial, Helvetica, sans-serif;
  transition: .3s ease-out;
  display: flex;
  align-items: center;
  gap: 5px;
}

.projects-section .project .see-more:hover {
  gap: 10px;
  text-decoration: underline !important;
}

.projects-section .project:hover .image img {
  scale: .95;
}

.projects-section .project:hover .name {
  color: #31a500;
}

.gallery-section .heading-area {
  width: 100%;
}

.gallery-section .partner {
  display: flex;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  background-color: #31a500;
}

.gallery-section .partner:before {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: rgba(49, 105, 0, 0.7);
  background-image: url("/img/plus.png");
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0;
  transform: scale(3);
  transition: all 0.3s ease 0s;
  z-index: 1;
}

.gallery-section .partner img {
  max-width: 100%;
  transition: all 0.3s ease 0s;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.gallery-section .partner:hover:before {
  opacity: 0.9;
  transform: scale(1);
}

.gallery-section .partner:hover img {
  transform: rotate(10deg);
  scale: 1.2;
}

.partners-section {
  background-color: #31a500;
  padding: 40px 0;
}

.partners-section .item a {
  text-align: center;
  display: block;
}

.partners-section .item a img {
  max-width: 100%;
  width: auto;
  margin: auto;
  opacity: .8;
  transition: .3s ease-out;
}

.partners-section .item a img *:hover {
  opacity: 1;
}

.testimonials-section {
  background: url("/img/testimonial.jpg") no-repeat center center;
  position: relative;
}

.testimonials-section:before {
  position: absolute;
  left: 0;
  top: 0px;
  right: 0;
  bottom: 0;
  content: "";
  background-color: #31a500;
  opacity: 0.8;
  z-index: 1;
}

.testimonials-section .item .testimonial .review {
  background-color: rgba(0, 0, 0, 0.1);
  padding: 38px 30px 40px 30px;
  margin-bottom: 32px;
  position: relative;
  color: #ffffff;
  line-height: 22px;
  font-size: 14px;
  font-family: Roboto-Regular, Arial, Helvetica, sans-serif;
}

.testimonials-section .item .testimonial .review:before {
  position: absolute;
  left: 30px;
  top: 100%;
  content: "";
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 18px solid rgba(0, 0, 0, 0.1);
}

.testimonials-section .item .testimonial .info {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-left: 9px;
}

.testimonials-section .item .testimonial .info img {
  max-width: 70px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  margin-right: 20px;
}

.testimonials-section .item .testimonial .info div {
  width: calc(100% - 90px);
}

.testimonials-section .item .testimonial .info div h2 {
  font-size: 20px;
  text-transform: uppercase;
  font-family: Roboto-Bold, Arial, Helvetica, sans-serif;
  line-height: 16px;
  color: #ffffff;
  margin-bottom: 4px;
}

.testimonials-section .item .testimonial .info div h4 {
  color: #ffffff;
  display: block;
  font-size: 13px;
  line-height: 20px;
  font-family: Roboto-Regular, Arial, Helvetica, sans-serif;
}

@media (max-width: 1199px) {
  .hero-section .item {
    height: 500px;
  }
  .hero-section .item .cover h2 {
    font-size: 40px;
  }
  .hero-section .item .cover h2 span {
    font-size: 120px;
  }
  .hero-section .owl-nav {
    width: 95%;
  }
}

@media (max-width: 991px) {
  .hero-section .item .cover h2 {
    font-size: 35px;
  }
  .hero-section .item .cover h2 span {
    font-size: 80px;
  }
  .hero-section .owl-nav {
    display: none;
  }
  .services-section .service p {
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .hero-section .item {
    height: 400px;
  }
  .hero-section .item .cover h2 {
    font-size: 30px;
  }
  .hero-section .item .cover h2 span {
    font-size: 45px;
  }
  .hero-section .item .cover p {
    font-size: 14px;
    line-height: 24px;
  }
  .services-section .service {
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .gallery-section .partner {
    margin-bottom: 15px;
  }
}

/*# sourceMappingURL=homepage.css.map */

/*# sourceMappingURL=homepage.css.map */
