@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap");
@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.banner.home-banner::before {
  background: linear-gradient(0deg, #FFFFFF, rgba(255, 255, 255, 0)), linear-gradient(90deg, #FFFFFF, rgba(255, 255, 255, 0)), linear-gradient(90deg, rgba(255, 255, 255, 0), #FFFFFF 80%);
}
.banner.home-banner .bg {
  height: calc(100vh - var(--headerfixed));
}
@media only screen and (max-width: 768px) {
  .banner.home-banner .bg {
    height: 80vh;
  }
}
@media only screen and (max-width: 540px) {
  .banner.home-banner .bg {
    height: 70vh;
  }
}
.banner.home-banner .bg video {
  opacity: 0.75;
  mix-blend-mode: luminosity;
}
.banner.home-banner .bg .banner-wrapper {
  width: 100%;
  top: 70%;
  translate: 0 -70%;
}
@media only screen and (max-width: 1300px) {
  .banner.home-banner .bg .banner-wrapper .container-fluid, .banner.home-banner .bg .banner-wrapper .container {
    padding: 0 25px;
  }
}
@media only screen and (max-width: 768px) {
  .banner.home-banner .bg .banner-wrapper .container-fluid, .banner.home-banner .bg .banner-wrapper .container {
    padding: 0 15px;
  }
}
@media only screen and (max-width: 345px) {
  .banner.home-banner .bg .banner-wrapper .container-fluid, .banner.home-banner .bg .banner-wrapper .container {
    padding: 0 13px;
  }
}
@media only screen and (max-width: 320px) {
  .banner.home-banner .bg .banner-wrapper .container-fluid, .banner.home-banner .bg .banner-wrapper .container {
    padding: 0 10px;
  }
}
.banner.home-banner .bg .banner-wrapper .container-fluid .heading h1, .banner.home-banner .bg .banner-wrapper .container-fluid .heading h6, .banner.home-banner .bg .banner-wrapper .container .heading h1, .banner.home-banner .bg .banner-wrapper .container .heading h6 {
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1.2;
  font-family: "Moam";
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #0F0000, rgba(63, 63, 63, 0.8196078431));
}
.banner.home-banner .bg .banner-wrapper .container-fluid .heading h1, .banner.home-banner .bg .banner-wrapper .container .heading h1 {
  font-size: 82px;
}
.banner.home-banner .bg .banner-wrapper .container-fluid .heading h6, .banner.home-banner .bg .banner-wrapper .container .heading h6 {
  font-size: 44px;
}
.banner.home-banner .bg .banner-wrapper .container-fluid .count_wrap, .banner.home-banner .bg .banner-wrapper .container .count_wrap {
  position: relative;
  width: 116px;
  height: 116px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 50%;
  margin-top: 100px;
  margin-left: 30px;
}
.banner.home-banner .bg .banner-wrapper .container-fluid .count_wrap p, .banner.home-banner .bg .banner-wrapper .container .count_wrap p {
  font-size: 28px;
  font-weight: 700;
  font-family: "Moam";
  color: var(--black);
}
.banner.home-banner .bg .banner-wrapper .container-fluid .count_wrap svg, .banner.home-banner .bg .banner-wrapper .container .count_wrap svg {
  width: 160px;
  height: 160px;
  position: absolute;
  top: -25px;
  left: -22px;
  transform: rotate(274deg);
}
.banner.home-banner .bg .banner-wrapper .container-fluid .count_wrap svg text, .banner.home-banner .bg .banner-wrapper .container .count_wrap svg text {
  fill: #000;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 2px;
}
.banner.home-banner .bg .crane-wrapper {
  position: absolute;
  width: 100%;
  height: 700px;
  right: 0;
  bottom: 5%;
  z-index: 1;
  border-bottom: 1px solid var(--black);
  overflow: hidden;
}
.banner.home-banner .bg .crane-wrapper .container {
  height: 100%;
  display: flex;
  justify-content: end;
}
.banner.home-banner .bg .crane-wrapper .main_crane {
  width: 50%;
  height: 100%;
  position: relative;
}
.banner.home-banner .bg .crane-wrapper .main_crane .crane_base {
  height: 500px;
  position: absolute;
  bottom: 0;
  right: 0%;
  transform: translate(15%, 13%);
  width: 410px;
}
.banner.home-banner .bg .crane-wrapper .main_crane .crane_base img {
  -o-object-fit: contain;
     object-fit: contain;
}
.banner.home-banner .bg .crane-wrapper .main_crane .crane_arm {
  width: 512px;
  position: absolute;
  bottom: 400px;
  right: 74px;
  animation: armmove 5s linear infinite;
  transform-origin: 65% 100%;
}
@keyframes armmove {
  0% {
    transform: rotate(0);
  }
  25% {
    transform: rotate(-15deg);
  }
  75% {
    transform: rotate(15deg);
  }
  100% {
    transform: rotate(0);
  }
}
.banner.home-banner .bg .crane-wrapper .main_crane .crane_wire {
  position: absolute;
  width: 160px;
  left: 20px;
  top: 243px;
  animation: wiremove 5s linear infinite;
  transform-origin: 100% -20%;
}
@keyframes wiremove {
  0%, 100% {
    transform: translate(0, 0) rotate(0);
  }
  25% {
    transform: translateY(100px) rotate(15deg);
  }
  75% {
    transform: translateY(-90px) rotate(-8deg);
  }
}

.about-sec {
  position: relative;
}
.about-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: url("/assets/vector/grad_vector.svg");
  transition: 0.5s ease;
}
.about-sec::before {
  background-repeat: no-repeat;
  background-position: 100% 100%;
}
.about-sec .about_wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  --gap: 90px;
  gap: var(--gap);
  overflow: hidden;
}
@media only screen and (max-width: 1336px) {
  .about-sec .about_wrapper {
    --gap: 70px;
  }
}
@media only screen and (max-width: 991px) {
  .about-sec .about_wrapper {
    --gap: 50px;
  }
}
@media only screen and (max-width: 768px) {
  .about-sec .about_wrapper {
    flex-direction: column;
    --gap: 20px;
  }
}
.about-sec .about_wrapper figure {
  flex: 0 1 auto;
  width: 45%;
  height: 560px;
  border-radius: 15px;
}
.about-sec .about_wrapper figure video, .about-sec .about_wrapper figure img {
  border-radius: inherit;
}
.about-sec .about_wrapper figcaption {
  flex: 1;
}
@media only screen and (max-width: 768px) {
  .about-sec .about_wrapper figcaption {
    text-align: center;
  }
}
.about-sec .about_wrapper figcaption h2 {
  font-size: 48px;
  position: relative;
  padding-bottom: 10px;
}
@media only screen and (max-width: 991px) {
  .about-sec .about_wrapper figcaption h2 {
    font-size: 42px;
  }
}
@media only screen and (max-width: 768px) {
  .about-sec .about_wrapper figcaption h2 {
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
    font-size: 36px;
  }
}
@media only screen and (max-width: 540px) {
  .about-sec .about_wrapper figcaption h2 {
    font-size: 32px;
  }
}
.about-sec .about_wrapper figcaption h2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 8%;
  background: var(--primary);
  height: 4px;
}
@media only screen and (max-width: 768px) {
  .about-sec .about_wrapper figcaption h2::before {
    width: 30%;
  }
}
.about-sec .about_wrapper figcaption .desc {
  padding: 20px 0 35px;
  max-width: 490px;
}
@media only screen and (max-width: 1336px) {
  .about-sec .about_wrapper figcaption .desc {
    max-width: 100%;
  }
}
@media only screen and (max-width: 991px) {
  .about-sec .about_wrapper figcaption .desc {
    padding: 20px 0;
  }
}
@media only screen and (max-width: 768px) {
  .about-sec .about_wrapper figcaption .desc {
    padding: 30px 0;
  }
}
@media only screen and (max-width: 540px) {
  .about-sec .about_wrapper figcaption .desc {
    padding: 20px 0;
  }
}
.about-sec .about_wrapper figcaption .desc p:not(:last-child) {
  margin-bottom: 15px;
}
@media only screen and (max-width: 540px) {
  .about-sec .about_wrapper figcaption .desc p {
    font-size: 14px;
  }
}

.services_sec {
  background: var(--black);
  padding-bottom: 0;
}
.services_sec .heading {
  text-align: center;
  margin-bottom: 40px;
}
.services_sec .heading h2 {
  text-transform: uppercase;
  color: var(--white);
}
.services_sec .service_wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  --gap: 100px;
  gap: var(--gap);
}
.services_sec .service_wrapper figure {
  flex: 1;
  max-width: 50%;
  width: 100%;
  padding-bottom: 40px;
}
.services_sec .service_wrapper figcaption {
  flex: 0 1 auto;
  max-width: 370px;
  height: 550px;
}
.services_sec .service_wrapper figcaption .service_slider {
  height: 100%;
}
.services_sec .service_wrapper figcaption .service_slider .swiper-slide {
  transition: 0.6s ease;
}
.services_sec .service_wrapper figcaption .service_slider .swiper-slide:not(.swiper-slide-active) {
  opacity: 0.2;
}
.services_sec .service_wrapper figcaption .service_slider .service_col {
  display: block;
  background: rgba(255, 255, 255, 0.1098039216);
  padding: 20px 25px 35px;
  border-radius: 10px;
  border-bottom: 1px solid var(--primary);
}
.services_sec .service_wrapper figcaption .service_slider .service_col h6 {
  font-size: 24px;
  color: var(--white);
  margin-bottom: 5px;
}
.services_sec .service_wrapper figcaption .service_slider .service_col p {
  color: rgba(255, 255, 255, 0.6980392157);
  font-weight: 300;
}

.products_sec .heading {
  text-align: center;
  margin-bottom: 60px;
}
.products_sec .heading h2 {
  text-transform: uppercase;
}

.brands-sec .heading {
  text-align: center;
  margin-bottom: 60px;
}
@media only screen and (max-width: 991px) {
  .brands-sec .heading {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 768px) {
  .brands-sec .heading {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 540px) {
  .brands-sec .heading {
    margin-bottom: 30px;
  }
}
.brands-sec .brands_wrapper .brand-slider .swiper-wrapper {
  transition-timing-function: linear !important;
}
.brands-sec .brands_wrapper .brand-slider .swiper-wrapper figure {
  background: var(--white);
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brands-sec .brands_wrapper .brand-slider .swiper-wrapper figure img {
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 1280px) {
  .brands-sec .brands_wrapper .brand-slider .swiper-wrapper figure img {
    height: 90px;
  }
}
@media only screen and (max-width: 991px) {
  .brands-sec .brands_wrapper .brand-slider .swiper-wrapper figure img {
    height: 75px;
  }
}
@media only screen and (max-width: 768px) {
  .brands-sec .brands_wrapper .brand-slider .swiper-wrapper figure img {
    height: 70px;
  }
}
.brands-sec .brands_wrapper .brand-slider1 {
  margin-bottom: 50px;
}
@media only screen and (max-width: 991px) {
  .brands-sec .brands_wrapper .brand-slider1 {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .brands-sec .brands_wrapper .brand-slider1 {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 540px) {
  .brands-sec .brands_wrapper .brand-slider1 {
    margin-bottom: 20px;
  }
}

.machineries_sec .heading {
  text-align: center;
  margin-bottom: 50px;
}
.machineries_sec .main_wrapper {
  position: relative;
}
.machineries_sec .main_wrapper .swiper-nav {
  max-width: 65%;
}
.machineries_sec .main_wrapper .machine_swiper .swiper-slide {
  width: 570px;
  height: 410px;
  transition: 0.6s ease;
}
.machineries_sec .main_wrapper .machine_swiper .swiper-slide:not(.swiper-slide-active) figcaption {
  transform: translateY(100%);
}
.machineries_sec .main_wrapper .machine_swiper .machine_col {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.machineries_sec .main_wrapper .machine_swiper .machine_col::before {
  background: linear-gradient(0deg, #000000, rgba(0, 0, 0, 0));
  border-radius: 10px;
}
.machineries_sec .main_wrapper .machine_swiper .machine_col:hover figure img {
  transform: scale(1.2);
}
.machineries_sec .main_wrapper .machine_swiper .machine_col figure {
  border-radius: 10px;
}
.machineries_sec .main_wrapper .machine_swiper .machine_col figure img {
  border-radius: inherit;
}
.machineries_sec .main_wrapper .machine_swiper .machine_col figcaption {
  padding: 0 35px 35px;
  text-align: center;
  transition: 1s ease;
}
.machineries_sec .main_wrapper .machine_swiper .machine_col figcaption h6 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}/*# sourceMappingURL=home.css.map */