@import "./variables.css";
/* edited header by prajwal 29-07-24 */
/*.dropdown-hover:hover > .dropdown-menu-hover {
  display: block;
}
.dropdown-hover > .dropdown-toggle:active {
  /~Without this, clicking will make it sticky~/
  pointer-events: none;
}*/
/* hs forms */
/* --- top form --- */
.business-form {
  background: var(--dark);
  padding: 20px 35px;
  /* margin: 0px 0px 0px 30px; */
  position: relative;
}
/* .business-form .hs-form {
  background: var(--light);
  padding: 25px;
} */
.business-form .hs-form label {
  color: var(--light);
  font-size: 14px;
}
.business-form .hs-error-msg {
  /* color: #f2545b !important; */
  color: red !important;
  font-size: 12px !important;
}
.business-form .hs-form-required {
  color: red;
}
.business-form .hs-form input {
  border: 0;
  border-bottom: 1px solid var(--light);
  color: var(--light);
  background: transparent;
  box-shadow: none;
  font-size: 16px;
  width: 95%;
}

.business-form .hs-form-field {
  margin-bottom: 20px;
}

.business-form .hs-form .actions input[type="submit"] {
  border: 1px solid var(--light);
  padding: 8px 25px;
  padding-bottom: 4px;
  background: none;
  color: var(--light);
  margin-bottom: 0px;
  line-height: 26px;
  letter-spacing: 0.6px;
  margin-top: 10px;
  width: fit-content;
  margin-bottom: 10px;
}
/* --- top form end --- */

/* --- middle form --- */
.blue-input-form .hs-form-field {
  margin-bottom: 10px;
  width: 100%;
}
.blue-input-form fieldset {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  max-width: 100% !important;
}
.blue-input-form input,
.blue-input-form textarea {
  background-color: #f5f8fa;
  color: var(--dark);
  width: 100%;
  border: 1px solid #cbd6e2;
  border-radius: 3px;
  box-shadow: none;
  padding: 10px 15px;
  font-size: 14px;
  height: 40px;
  font-size: 16px;
  width: 100% !important;
}

.blue-input-form textarea {
  height: 100px;
}

.blue-input-form label {
  color: var(--dark);
  font-size: 14px;
  margin-bottom: 5px;
}
.blue-input-form label :nth-child(2) {
  color: red;
}
.blue-input-form .hs-error-msg {
  /* color: #f2545b !important; */
  color: red !important;
  font-size: 12px !important;
  margin-bottom: 0;
}

.blue-input-form .actions input[type="submit"] {
  background-color: #f2902c;
  border: none;
  padding: 8px 26px;
  padding-top: 14px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0;
  cursor: pointer;
  height: auto;
  width: fit-content !important;
  transition: 0.5s all ease;
}
.blue-input-form .actions input[type="submit"]:hover {
  background-color: var(--dark);
}

/* --- middle form end--- */

/* --- bottom feild --- */

.blue-background-form .hs-form-field {
  margin-bottom: 10px;
  width: 100%;
}
.blue-background-form fieldset {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  max-width: 100% !important;
}
.blue-background-form input,
.blue-background-form textarea {
  background-color: var(--dark);
  color: var(--light);
  width: 100%;
  border: 1px solid var(--light);
  box-shadow: none;
  padding: 10px 15px;
  font-size: 14px;
  border-radius: 3px;
  height: 40px;
  font-size: 16px;
  width: 100% !important;
}

.blue-background-form textarea {
  height: 100px;
}

.blue-background-form label {
  color: var(--light);
  font-size: 14px;
  margin-bottom: 5px;
}
.blue-background-form label :nth-child(2) {
  color: red;
}
.blue-background-form .hs-error-msg {
  /* color: #f2545b !important; */
  color: red !important;
  font-size: 12px !important;
  margin-bottom: 0;
}

.blue-background-form .actions input[type="submit"] {
  background-color: var(--light);
  border: none;
  padding: 8px 26px;
  padding-top: 14px;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0;
  cursor: pointer;
  height: auto;
  width: fit-content !important;
  transition: 0.5s all ease;
}
.blue-background-form .actions input[type="submit"]:hover {
  background-color: #f2902c;
}

/* --- bottom feild end --- */

/* hs forms end*/

/* mega menu background */
.mega-background {
  width: 100%;
  height: 65vh;
  min-height: 500px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgb(255, 255, 255);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  transition: 0.5s all ease-in-out;
}
.mega-background.active {
  opacity: 1;
}

/* mega menu background end */

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  width: 100%;
  background: transparent;
  padding: 20px 0 0px;
  transition: 0.5s ease all;
}
.header.sticky {
  /* padding: 5px 0 0px 0px; */
  /* background: var(--light); */
}
.header .navbar-brand {
  position: relative;
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}
.header .navbar-brand img {
  /* width: 230px; */
  width: 295px;
  transition: 0.5s ease all;
  padding-bottom: 10px;
}
.header .navbar-brand img.logo-secondary {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
/* .header.sticky .navbar-brand img {
  width: 295px;
  padding-bottom: 0px !important;
} */
.header.sticky .navbar-brand img.logo-primary {
  opacity: 0;
}
.header.sticky .navbar-brand img.logo-secondary {
  opacity: 1;
  height: unset !important;
}
.header.sticky form input, .header.sticky form .btn i {
 /* border-color: var(--dark);
 color: var(--dark) !important; */
 transition: all 0.55s ease-in-out;
}
.header .navbar-toggler {
  width: 30px;
  height: 30px;
  background: var(--light);
  color: var(--dark);
  padding: 0;
  text-align: center;
  line-height: 30px;
  font-size: 14px;
  box-shadow: none;
  border: 0;
}
/* .header .navbar-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
} */
.header .navbar {
  z-index: 11;
  padding-bottom: 0px !important;
  border-bottom: 1px solid var(--light);
  transition: 0.3s all ease-in-out;
}
.header .navbar-nav .nav-link {
  font-size: 17px;
  font-family: var(--sans-serif-medium);
  color: var(--light);
  position: relative;
  transition: 0.5s ease all;
  word-break: keep-all;
  letter-spacing: 0.6px;
  padding: 10px 10px 10px 10px;
}
/* .header .navbar-nav .nav-link.active::after,
.header .navbar-nav .nav-item:hover .nav-link::after {
  height: 5px !important;
  bottom: -14px !important;
  background: var(--light);
  height: 15px !important;
  top: 22px !important;
  background: var(--primary);
}
.header.sticky .navbar-nav .nav-link.active::after {
  background: var(--dark);
}
.header.sticky .navbar-nav .nav-link:hover::after {
  background: var(--primary);
  top: -5px !important;
} */
.navbar-expand-xl .navbar-collapse {
  /* display: block; */
  /* flex-basis: auto; */
  padding-top: 4px;
}
/* .header.sticky .navbar-nav .nav-item.active::after,
.header.sticky .navbar-nav .nav-item:hover .nav-link::after {
  bottom: -15px !important;
} */
/* .header .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 90%;
  background: transparent;
  transition: 0.5s ease all;
  top: 48px;
} */
/* .header.sticky .navbar-nav .nav-link::after {
  top: 47px;
} */
.header.sticky .navbar-nav .nav-link:hover::after {
  /* background: var(--dark); */
}
.header .container-fluid {
  padding-bottom: 4px;
}
.header.sticky .container-fluid {
  padding-bottom: 8px;
}
.dropdown-menu li {
  position: relative;
}
.dropdown-menu .dropdown-submenu-left {
  right: 100%;
  left: auto;
}
.dropdown-menu > li:hover > .dropdown-submenu {
  display: block;
}
.header-nav-dropdown .dropdown-menu {
  background-color: transparent;
  border: 0px !important;
}
.dropdown-menu .dropdown-submenu {
  display: none;
  position: absolute;
  left: 100%;
  top: -7px;
  background: var(--light);
}
/* .header.sticky .header-nav-dropdown .dropdown-menu {
  background-color: var(--dark);
  border-top: 1px solid var(--light) !important;
  border-radius: 4px !important;
} */
.header-nav-dropdown .dropdown-menu .dropdown-item {
  color: var(--light);
  font-family: var(--sans-serif-medium);
  font-size: 15px;
  letter-spacing: 0.5px;
  padding: 3px 18px;
  transition: 0.3s ease-in-out;
}

.opacity0 {
  opacity: 0 !important;
}
.opacity1 {
  opacity: 1 !important;
}
/* --- added code by prajwal(extra menu code)--- */
.header-nav-dropdown .dropdown-menu .dropdown-item:hover {
  font-size: 16px;
  color: var(--primary);
  background: none;
}
.header.active-bg .navbar {
  border-bottom: 1px solid var(--dark);
}
.header .dropdown .dropdown-menu .dropdown-item,
.header .dropdown .dropdown-submenu .dropdown-item,
.header .dropdown .dropdown-submenu.dropdown-mini-menu .dropdown-item {
  margin-bottom: 10px;
  padding-inline: 2px;
  width: fit-content;
  border-bottom: 2px solid transparent;
}
.header .dropdown .dropdown-menu .dropdown-item:hover,
.header .dropdown .dropdown-submenu .dropdown-item:hover,
.header .dropdown .dropdown-submenu.dropdown-mini-menu .dropdown-item:hover {
  border-bottom: 2px solid var(--dark);
}
.header.active-bg .dropdown .dropdown-menu .dropdown-item {
  color: var(--dark);
}
.header.active-bg .navbar-nav .nav-link {
  color: var(--dark);
}
.header.active-bg .navbar-nav .nav-item:hover .nav-link::after {
  background-color: var(--dark);
}
.navbar-expand-xl .navbar-nav .dropdown-main-menu {
  padding-top: 30px;
  top: 40px;
  left: 0px;
  min-width: 200px;
}
.navbar-expand-xl .navbar-nav .dropdown-submenu {
  /* padding-top: 30px; */
  top: 0;
  min-width: 200px;
}
.header.sticky .navbar-nav .nav-link {
  color: var(--dark);
}
.header.sticky .navbar {
  border-bottom: 1px solid var(--dark);
}
.header.sticky .navbar {
  border-bottom: 1px solid var(--dark);
}
/* Hero */
.hero {
  position: relative;
}
.hero .carousel-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(16, 39, 60, 0.2);
  mix-blend-mode: multiply;
  z-index: 2;
}
.hero .carousel-inner {
  height: 650px;
}
.hero .scroll-down {
  position: absolute;
  bottom: 50px;
  left: 15%;
  z-index: 3;
  font-size: 30px;
  color: var(--light);
  animation: 3s scrollDownAnim infinite;
}
@keyframes scrollDownAnim {
  0% {
    bottom: 50px;
  }
  50% {
    bottom: 60px;
  }
  100% {
    bottom: 50px;
  }
}
.hero .carousel {
  position: relative;
}
.hero .carousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero .carousel-caption {
  position: absolute;
  inset: auto;
  padding: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  width: 800px;
  text-align: left;
  z-index: 4;
}
.hero .carousel-caption h5 {
  font-size: 120px;
  font-family: var(--sans-serif-medium);
  color: var(--light);
  line-height: 80%;
  letter-spacing: -4px;
}
.hero .carousel .carousel-indicators {
  inset: auto;
  right: 10%;
  bottom: 50px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  z-index: 3;
}
.hero .carousel .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  border: 2px solid transparent;
  outline: 2px solid var(--light);
  opacity: 1;
  background: transparent;
}
.hero .carousel .carousel-indicators button.active {
  background: var(--light);
  border: 2px solid var(--dark);
}
.hero .carousel .carousel-item img::before {
  content: "";
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background: var(0, 0, 0, 0.7);
  height: ;
}
/* Hero Alt */
.hero-alt {
  position: relative;
  overflow: hidden;
  height: 520px;
}
.hero-alt::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #10273c73;
  mix-blend-mode: multiply;
  z-index: 2;
}
.hero-alt .scroll-down {
  position: absolute;
  bottom: 10%;
  right: 15%;
  z-index: 3;
  font-size: 30px;
  color: var(--light);
  animation: 3s scrollDownAnim infinite;
}
@keyframes scrollDownAnim {
  0% {
    bottom: 10%;
  }

  50% {
    bottom: calc(10% + 10px);
  }

  100% {
    bottom: 10%;
  }
}
.hero-alt .text {
  position: absolute;
  left: 50%;
  bottom: 15%;
  transform: translateX(-50%);
  width: 54%;
  z-index: 3;
}
.hero-alt .text h2 {
  font-size: 60px;
  font-family: var(--sans-serif-medium);
  color: var(--light);
  margin-bottom: 50px;
}
.hero-alt .text h3 {
  font-size: 25px;
  font-family: var(--sans-serif-bold);
  color: var(--light);
  text-transform: uppercase;
}
.hero-alt .carousel,
.hero-alt .carousel .carousel-inner,
.hero-alt .carousel .carousel-inner .carousel-item {
  position: relative;
  height: 100%;
}
.hero-alt .carousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* introduction */
.intro-text p {
  font-size: 28px;
  letter-spacing: -0.4px;
  font-weight: 500;
  line-height: 36px;
}
.introduction .image {
  width: 100px;
  margin-left: auto;
  margin-right: 20px;
}
/* packaging solutions */
.packaging-solutions .nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background-color: #bbbbbb;
  border-radius: 100px;
}
.packaging-solutions .nav-pills .nav-link {
  padding: 0px 18px 0px 35px;
  margin: 15px 0px;
}
.packaging-solutions .nav-pills .nav-link.active {
  padding: 28px;
}
.packaging-solutions .nav-pills .nav-link.active .text h5 {
  font-size: 26px;
  color: var(--light);
}
.packaging-solutions .nav-pills .nav-link.active .text p {
  color: var(--light);
}
.packaging-solutions .text {
  text-align: left;
  padding: 0px 0px 0px 15px;
}
.packaging-solutions .nav-pills .nav-link .text h5 {
  color: var(--dark);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.packaging-solutions .nav-pills .nav-link .text p {
  font-size: 15px;
  letter-spacing: 1px;
  color: var(--dark);
}
.packaging-solutions .accordion-item {
  border: 0px !important;
}
.packaging-solutions .accordion-item button {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--dark);
  background: transparent;
  border-bottom: 2px solid var(--dark);
  padding: 10px 0px;
}
.accordion-button:focus {
  box-shadow: none !important;
  border: 0px !important;
}
.packaging-solutions .accordion-item .accordion-body {
  padding: 10px 0px;
}
.packaging-solutions .accordion-item .accordion-body ul li {
  font-size: 20px;
  color: var(--dark);
}
.packaging-solutions .accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
}
.packaging-solutions .tab-content {
  padding: 30px 20px;
}
.packaging-solutions .accordion-button::after {
  background-image: url("../../images/icons/arrow-down.png");
  background-size: 30px !important;
  height: 30px;
  width: 30px;
}
.packaging-solutions .accordion-button:not(.collapsed)::after {
  background-image: url("../../images/icons/arrow-down.png");
  transform: unset !important;
  transform: rotate(-180deg) !important;
}
/* products */
.products-box {
  display: flex;
  justify-content: space-around;
  text-align: center;
}
.products-box.inner {
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 2.22%;
  row-gap: 35px;
}
.products-box.inner .product_box {
  width: 23.33%;
}
.products-box img {
  width: 170px;
}
.products-box p {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.6px;
  font-family: var(--sans-serif-bold);
  text-transform: uppercase;
  margin-top: 10px;
}
.products-box img {
  transition: 0.5s ease-in-out;
}
.products-box img:hover {
  scale: 1.1;
  transition: 0.5s ease-in-out;
}
/* case study */
.case-study-main ul {
  justify-content: end;
}
.case-study-main ul li {
  border: 1px solid var(--dark-alt);
  border-radius: 30px;
  padding: 0px 15px;
  margin: 0px 6px;
}
.case-study-main ul li button {
  color: var(--dark-alt);
  padding-top: 10px !important;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 5px;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background-color: unset;
  color: var(--primary);
}
.nav-link:focus,
.nav-link:hover {
  color: var(--primary);
}
/* our clients */
.clients-box {
  width: 160px;
  padding: 10px;
}
.clients .clients-box img {
  transition: 0.5s ease-in-out;
}
.clients .clients-box img:hover {
  scale: 1.1;
  transition: 0.5s ease-in-out;
}
/* upcoming events */
.upcoming-events-box {
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid var(--dark);
  padding-bottom: 30px;
  vertical-align: middle;
  align-items: center;
  margin-bottom: 30px;
}
.upcoming-events-box h2 {
  font-size: 26px;
  font-family: var(--sans-serif-bold);
  color: var(--dark);
  line-height: 130%;
  width: 25%;
}
.upcoming-events-box p {
  font-size: 17px;
  color: #000;
  width: 40%;
}
.upcoming-events-box h5 {
  font-size: 18px;
  font-family: var(--sans-serif-bold);
  color: var(--dark);
  width: 15%;
}
.upcoming-events-box a img {
  width: 40px;
  transition: 0.5s ease-in-out;
}
.upcoming-events .upcoming-events-box .icon {
  width: 35px;
  height: 35px;
  position: absolute;
  bottom: 40px;
  right: 5px;
}
.upcoming-events .upcoming-events-carousel .owl-dots {
  display: block !important;
}
.upcoming-events-carousel .owl-dots.disabled {
  display: block !important;
}
.upcoming-events .upcoming-events-carousel .owl-dots button.active span,
.upcoming-events .upcoming-events-carousel .owl-dots button:hover span {
  background: var(--dark);
  border: 2px solid var(--light);
}
.upcoming-events-box .read-more {
  background-color: var(--dark);
  color: var(--light);
  padding: 9px 25px 5px 25px;
  margin-bottom: 0px;
  border-radius: 24px;
}
.upcoming-events-box .read-more i {
  padding-left: 5px;
}
.upcoming-events .upcoming-events-carousel .owl-dots button span {
  width: 13px;
  height: 13px;
  border-radius: 13px;
  border: 2px solid transparent;
  outline: 2px solid var(--dark) !important;
  opacity: 1;
  background: transparent;
  transition: 0.5s ease all;
}
/* About Section */
.video-box {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-box video {
  object-fit: cover;
  object-position: center;
  border-radius: 15px;
  height: 550px;
}
.video-box .button-text {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: 0.5s all ease;
}
.video-box .button-text.active {
  opacity: 0;
}
.video-box:hover .button-text {
  opacity: 1;
}
.video-box .button-box {
  width: 70px;
  height: 70px;
  border: 2px solid var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-bottom: 20px;
  transition: 0.5s all ease;
  line-height: 0;
}
.video-box .button-box:hover {
  background: var(--light-alt);
}
.video-box .button-box:hover .play-button i {
  color: var(--dark);
}
.video-box .button-box .play-button {
  background: none;
  border: none;
}
.video-box .button-box .play-button i {
  font-size: 24px;
  color: var(--light);
}
.video-box .button-text p {
  font-family: var(--nav-link-font);
  font-size: 20px;
  color: var(--white);
  font-weight: 500;
}
.about .image {
  width: 100px;
  margin: 0 0 auto auto;
}
.about h6 {
  font-size: 25px;
  color: var(--dark);
  line-height: 140%;
}
/* NEW About */
/* About Section */
.video-box .button-box {
  width: 70px;
  height: 70px;
  border: 2px solid var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.5s all ease;
  line-height: 0;
}

#video-section iframe {
  object-fit: cover;
  object-position: center;
  border-radius: 25px;
  height: 572px;
  width: 100%;
}
#video-section .video-poster .poster-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}
#video-section .video-poster .poster-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 1.5s all ease;
  z-index: 1;
  border-radius: 25px;
  /* pointer-events: none; */
}
#video-section .video-poster {
  position: relative;
}
#video-section .video-poster .poster-image .play-button {
  position: absolute;
  width: 75px;
  height: 50px;
  background: red;
  border-radius: 6px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
#video-section .video-poster .poster-image .play-button::after {
  content: "";
  position: absolute;
  border-color: transparent transparent transparent var(--light);
  border-style: solid;
  margin-left: 5px;
  border-width: 10px 0 10px 21px;
}
#video-section .video-poster .poster-image.hidden {
  opacity: 0;
  z-index: -1;
}
.about .carousel {
  padding-bottom: 70px;
  width: calc(100% - 100px);
  margin: 0 auto;
}
.about .carousel .carousel-indicators {
  right: unset;
  left: 50%;
  transform: translateX(-50%);
  bottom: 5px;
}
.about .carousel .carousel-indicators button {
  border: 2px solid transparent;
  outline: 2px solid var(--dark) !important;
}
.about .carousel .carousel-indicators button.active {
  border: 2px solid var(--light);
  background-color: var(--dark) !important;
}
.bootstrap-carousel-control {
  display: flex;
  justify-content: space-between;
  width: calc(100% + 200px);
  position: absolute;
  top: calc(50% - 35px);
  left: -100px;
  transform: translateY(-50%);
}
.bootstrap-carousel-control button {
  display: flex;
  background: transparent;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 3px solid #d0d0d0;
}
.bootstrap-carousel-control button i {
  font-size: 26px;
  color: #d0d0d0;
  font-weight: 500;
}
.hero .carousel .carousel-indicators button,
.about .carousel .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  border: 2px solid transparent;
  outline: 2px solid var(--light);
  opacity: 1;
  background: transparent;
}
.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}

.hero .carousel .carousel-indicators,
.about .carousel .carousel-indicators {
  inset: auto;
  right: 10%;
  bottom: 50px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  z-index: 3;
}
.hero .carousel .carousel-indicators button.active,
.about .carousel .carousel-indicators button.active {
  background: var(--light);
  border: 2px solid var(--dark);
}
.hero .carousel .carousel-indicators,
.about .carousel .carousel-indicators {
  inset: auto;
  right: 45%;
  bottom: 8px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  z-index: 3;
}
/* Counter section */
.counter .image {
  width: 100px;
}
.counter .item .icon {
  width: 50px;
}
.counter .item h5 {
  font-size: 45px;
  font-family: var(--sans-serif-bold);
  color: var(--dark);
  margin: 10px 0 0;
}
.counter .item h6 {
  font-size: 16px;
  font-family: var(--sans-serif-medium);
  columns: var(--dark);
}
/* Case Study Section */
.case-study .filter-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
.case-study .filter-buttons button {
  padding: 7px 10px 3px;
  border-radius: 20px;
  background: transparent;
  color: var(--dark);
  border: 1px solid var(--dark);
  font-size: 10px;
  font-family: var(--sans-serif-bold);
  text-transform: uppercase;
  transition: 0.5s ease all;
}
.case-study .filter-buttons button:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--light);
}
.case-study .card {
  border: 0;
  border-radius: 0;
  padding-bottom: 50px;
  border-bottom: 3px solid var(--dark);
  height: 100%;
}
.case-study .card::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--primary);
  transition: 0.5s ease all;
}
.case-study .card:hover::after {
  width: 100%;
}
.common-box .image {
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
}
.common-box .image img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
  transition: 0.5s ease all;
}
.common-box:hover .image img {
  transform: scale(1.1);
}
.common-box .text {
  justify-self: flex-start;
}
.common-box .text h5 {
  font-size: 21px;
  height: 50px;
  font-family: var(--sans-serif-bold);
  color: var(--dark);
  margin: 20px 0 10px 0;
  transition: 0.5s ease all;
  text-transform: capitalize;
}
.common-box .text h6 {
  font-size: 16px;
  font-family: var(--sans-serif-bold);
  color: var(--dark-alt);
  transition: 0.5s ease all;
}
.common-box .text a:hover h6,
.common-box .text a:hover h5 {
  color: var(--primary);
}
.common-box .text p {
  margin: 5px 0;
}
.case-study .card .card-footer {
  padding: 0;
  background: transparent;
  border: 0;
  position: absolute;
  bottom: 15px;
  left: 0;
}
.case-study .card .card-footer a {
  font-size: 16px;
  font-family: var(--sans-serif-bold);
  color: var(--dark-alt);
}
.case-study .card .card-footer a i {
  width: 35px;
  height: 35px;
  font-size: 16px;
  color: var(--dark-alt);
  border-radius: 35px;
  border: 2px solid var(--dark);
  text-align: center;
  line-height: 35px;
  margin-left: 10px;
  transition: 0.5s ease all;
}
.case-study .card .card-footer a:hover i {
  margin-left: 15px;
  background: var(--dark);
  color: var(--light);
}
.case-study .read-more {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
}
.case-study .read-more span {
  font-size: 16px;
  font-family: var(--sans-serif-bold);
  color: var(--dark);
}
.case-study .read-more i {
  font-size: 30px;
  color: var(--dark);
  transition: 0.5s ease all;
  margin-left: 5px;
}
.case-study .read-more:hover i {
  margin-left: 15px;
}
/* News Section */
.news .card {
  border: 0;
  border-radius: 0;
}
.news .card .image {
  width: 100%;
  height: 230px;
  overflow: hidden;
  border-radius: 10px;
}
.news .card .image img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
  transition: 0.5s ease all;
}
.news .card:hover .image img {
  transform: scale(1.1);
}
.news .card .text {
  margin-top: 20px;
}
.news .card .text h5 {
  height: 60px;
  overflow: hidden;
}
.news .card .text h5 a {
  font-size: 20px;
  font-family: var(--sans-serif-bold);
  text-decoration: none;
  color: var(--dark);
  line-height: 140%;
  transition: 0.5s ease all;
}
.news .card .text h5 a:hover {
  color: var(--primary);
}
.news .card .text p {
  font-size: 14px;
  color: var(--dark-alt);
  margin: 10px 0;
}
.news .card .text a {
  font-size: 16px;
  color: var(--primary);
  text-decoration: underline;
  display: inline-block;
}
.news .news-carousel .owl-dots {
  margin-top: 30px;
}
.news .news-carousel .owl-dots button span {
  width: 13px;
  height: 13px;
  border-radius: 13px;
  border: 2px solid transparent;
  outline: 2px solid var(--dark);
  opacity: 1;
  background: transparent;
  transition: 0.5s ease all;
}
.news .news-carousel .owl-dots button.active span,
.news .news-carousel .owl-dots button:hover span {
  background: var(--dark);
  border: 2px solid var(--light);
}
.news .news-carousel .owl-nav {
  position: absolute;
  top: 75px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% + 100px);
  z-index: 2;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.news .news-carousel .owl-nav button {
  border: 0;
  background: transparent !important;
  outline: 0;
  border-radius: 0 !important;
  font-size: 50px;
  color: var(--dark) !important;
  pointer-events: all;
  transition: 0.5s ease all;
  opacity: 1;
}
.news .news-carousel .owl-nav button.disabled {
  opacity: 0;
  pointer-events: none;
}

/* Contact Section */
.contact .image {
  width: 100px;
}

/* case-study-page */
.hero-banner {
  height: 520px;
}
.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}
.hero_banner .scroll-down {
  right: 15% !important;
  left: unset !important;
}
.hero_banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  mix-blend-mode: multiply;
}
.hero-banner-new::after {
  background: rgba(16, 39, 60, 0.1);
}
.hero-banner-new.opacity25::after {
  background: rgba(16, 39, 60, 0.3);
}
.hero-banner .hero-banner-text {
  position: absolute;
  inset: auto;
  padding: 0;
  top: 40%;
  left: 0%;
  margin: 0;
  width: 100%;
  text-align: left;
  z-index: 4;
}
.hero-banner .hero-banner-text h4 {
  font-size: 65px;
  font-weight: 600;
  color: var(--light);
  letter-spacing: 1.2px;
  margin: 0px auto;
  width: 75%;
}
.hero-banner-new img {
  object-position: top;
}
.case-study-in ul {
  justify-content: start !important;
}
.case-study-in ul li {
  margin: 0px 10px !important;
}
.case-study .card .image {
  height: 210px;
}
.common-box .text .case-study-content-text {
  font-family: var(--sans-serif-light);
  font-weight: 400;
  color: var(--dark);
  font-size: 20px;
  letter-spacing: -0.2px;
}
.case-study-inner .solutions-text p {
  margin-top: 20px;
  border: 1px solid var(--dark);
  width: 50%;
  text-align: center;
  padding: 4px;
  margin-bottom: 0px;
  border-radius: 20px;
  padding-top: 8px;
  font-size: 11px;
  font-family: var(--sans-serif-bold);
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.2px !important;
  text-transform: uppercase;
}
/* solutions */
.solutions-banner-heading h2 {
  font-size: 110px;
  font-weight: 500;
  font-family: var(--sans-serif-medium);
  color: var(--light);
  letter-spacing: -3px;
  line-height: 98px;
  width: 75%;
  margin: 0 auto;
}
/* primary packaging - bagging system */

.hero_banner .video-box video {
  border-radius: 0px !important;
}
.hero_banner .video-box {
  border-radius: 0px !important;
}
.solutions-accordian .accordion-button {
  display: block !important;
  padding-bottom: 5px !important;
}
.solutions-accordian .accordion-button:not(.collapsed),
.solutions-accordian .accordion-button:focus {
  outline: none;
  border-color: transparent;
  box-shadow: none;
  background-color: transparent;
}
.solutions-accordian .accordion-button::after {
  display: block;

  position: absolute;
  top: 32px;
  right: 20px;
}
.solutions-heading {
  font-size: 55px;
  letter-spacing: -3.5px;
  font-family: var(--sans-serif-medium);
}
.solutions-subheading p {
  font-size: 24px !important;
  padding: 6px;
}
.solutions-accordian-item {
  border-bottom: 2px solid var(--dark);
}
.accordion-flush .accordion-item:last-child {
  border-bottom: 2px solid var(--dark) !important;
}
.accordion-solutions-inner .image {
  height: 280px;
}
.accordion-solutions-inner .text h5 {
  font-size: 30px;
}
.accordion-solutions-inner .text p {
  font-size: 22px !important;
}
.solutions-accordian-item .accordion-body ul {
  padding: 6px;
  margin: 0px 20px;
}
.solutions-accordian-item .accordion-body ul li,
.solutions-accordian-item .accordion-body h6 {
  list-style-type: auto;
  font-size: 18px;
  font-family: var(--sans-serif-light);
  margin-bottom: 8px;
  letter-spacing: 0.4px;
  font-weight: 500;
  line-height: 30px;
}
.solutions-accordian-item .accordion-body h6 {
  font-weight: 600;
  font-family: var(--sans-serif-normal);
}
.solutions-accordian-item .accordion-body {
  padding: 0px 20px;
}
.solutions-accordian-item .accordian-content-inner {
  padding: 6px 6px 10px 6px;
}

.accordion-solutions-inner .video-box video {
  height: 100% !important;
}
.accordion-solutions-inner {
  padding: 6px;
}
.videos-carousel .owl-nav button {
  border: 0;
  background: transparent !important;
  outline: 0;
  border-radius: 0 !important;
  font-size: 30px !important;
  color: #878787 !important;
  pointer-events: all;
  transition: 0.5s ease all;
  opacity: 1;
}
.videos-carousel .owl-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
.videos-carousel .owl-nav .disabled {
  opacity: 1 !important;
}
.videos-carousel .owl-dots {
  display: none !important;
}
.solutions-case-studies .card {
  padding: 10px;
}
/* About Case Video Section */
.about-case-video .youtube {
  height: 300px !important;
  border-radius: 8px !important;
}
.about-case-video .youtube img {
  border-radius: 8px !important;
}
.about-case-video h3 {
  font-size: 28px;
  font-family: var(--sans-serif-light);
  line-height: 150%;
  color: var(--dark);
  margin-bottom: 70px;
}
.about-case-video .video {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}
.about-case-video .video::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #10273c1a;
  mix-blend-mode: multiply;
  z-index: 1;
  pointer-events: none;
}
.about-case-video .video h5 {
  font-size: 45px;
  font-family: var(--sans-serif-light);
  color: var(--light);
  position: absolute;
  bottom: 50px;
  left: 70px;
  z-index: 2;
  transition: 0.5s ease all;
}
.about-case-video .video .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  z-index: 2;
}
.about-case-video .video i {
  cursor: pointer;
  width: 100px;
  height: 100px;
  font-size: 30px;
  color: var(--light);
  border: 2px solid var(--light);
  border-radius: 100px;
  text-align: center;
  line-height: 100px;
  z-index: 2;
  transition: 0.5s ease all;
}
.about-case-video .video:hover i {
  transform: scale(1.1);
}
.about-case-video .video img {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  transition: 0.5s ease all;
}
.about-case-video .video .hide {
  visibility: hidden;
  pointer-events: none;
}
.about-case-video .video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.about-case-video .image {
  width: 100px;
  margin: 0 0 auto auto;
}
.about-case-video h6 {
  font-size: 25px;
  color: var(--dark);
  line-height: 140%;
}
.about-case-video .text {
  margin-bottom: 70px;
}
.about-case-video .text:last-child {
  margin-bottom: 0;
}
.about-case-video .text .icon {
  width: 50px;
}
.about-case-video .text h5 {
  font-size: 30px;
  font-family: var(--sans-serif-bold);
  margin: 15px 0;
}
.about-case-video .text h4 {
  font-size: 18px;
  margin: 15px 0;
}
.about-case-video .text li {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
.about-case-video .text li:last-child {
  margin-bottom: 0;
}
.about-case-video .text li i {
  font-size: 7px;
  margin-top: 6px;
}
.about-case-video .text li span {
  font-family: var(--sans-serif-light);
  color: var(--dark);
}
.about-case-video .text p b {
  font-family: var(--sans-serif-medium);
  color: var(--dark);
  display: block;
}
.about-case-video .carousel {
  position: relative;
}
.about-case-video .carousel .carousel-item {
  width: 100%;
  height: 600px;
  overflow: hidden;
  border-radius: 20px;
}
.about-case-video .carousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.about-case-video .carousel .carousel-indicators {
  inset: auto;
  right: 50px;
  bottom: 50px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
}
.about-case-video .carousel .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  border: 2px solid transparent;
  outline: 2px solid var(--light);
  opacity: 1;
  background: transparent;
}
.about-case-video .carousel .carousel-indicators button.active {
  background: var(--light);
  border: 2px solid var(--dark);
}
.about-case-video .carousel .carousel-controls {
  width: calc(100% + 150px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}
.about-case-video .carousel .carousel-controls button {
  position: relative;
  inset: auto;
  color: var(--dark);
  width: auto;
  font-size: 50px;
  opacity: 1;
  pointer-events: all;
}
.about-case-video .carousel .carousel-item .img-objectfit {
  object-fit: contain !important;
  background-color: var(--light-alt);
}

.turnkey-carousel .video-poster {
  position: relative;
}
.turnkey-carousel .video-poster .poster-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 1.5s all ease;
  z-index: 1;
  /* pointer-events: none; */
}
.turnkey-carousel .video-poster .poster-image.hidden {
  opacity: 0;
  z-index: -1;
}

.turnkey-carousel .video-poster .poster-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}
.turnkey-carousel .video-poster .poster-image .mobile {
  display: none;
}

.turnkey-carousel .video-poster .poster-image .play-button {
  position: absolute;
  width: 52px;
  height: 52px;
  background: transparent;
  border-radius: 6px;
  box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  border: 1px solid white;
}
.turnkey-carousel .video-poster .poster-image .play-button::after {
  content: "\f04b";
  position: absolute;
  font-family: "Font Awesome 5 Pro";
  color: var(--light);
  font-weight: 700;
  font-size: 14px;
  margin-left: 3px;
  /* box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.6); */
}

.turnkey-carousel .video-poster .poster-image .play-button::before {
  content: "\f04b";
  position: absolute;
  font-family: "Font Awesome 5 Pro";
  color: #58585833;
  font-weight: 700;
  font-size: 16px;
  margin-left: 3px;
  margin-top: 1px;
  margin-left: 4px;
}
/* solutions inner page */
.solutions-hero .text {
  left: 46% !important;
}
.industry-div {
  gap: 60px;
  margin-left: 20px;
}
.industry-div li {
  list-style-type: disc;
  font-size: 22px;
  margin-top: 20px;
  letter-spacing: 0.5px;
}
table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

td {
  border: 1px solid #ddd;
  text-align: left;
  padding: 10px 10px 4px 10px !important;

  font-size: 16px;
  color: var(--dark);
}
tbody {
  border: 1px solid #ddd;
}
.models-table th {
  background-color: var(--dark);
  color: var(--light);
  font-family: var(--sans-serif-light);
  letter-spacing: 0.7px;
  padding: 10px;
  border: 1px solid #253f57;
}
.solutions-intro-text {
  font-size: 26px !important;
}
.product-render-img {
  border: 1px solid #ddd;
}
.industry-details {
  padding: 0px 60px;
}
/* Ev battery assembly Page */
.hero-banner-text1 h2 {
  font-size: 65px;
  letter-spacing: 0.8px;
  margin: 0;
}
.hero-banner .hero-banner-text {
  top: 50%;
}
.line-right:after {
  content: "";
  width: 126px;
  height: 1px;
  position: absolute;
  left: 100%;
  top: 18px;
  background-color: #707070;
  margin-left: 10px;
}
.intro-text1 h5 {
  font-size: 20px;
  color: var(--dark);
  font-family: var(--sans-serif-bold);
  padding-top: 5px;
  position: relative;
}
.ct-div-block {
  width: 16px;
  height: 16px;
  background-color: var(--primary);
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  align-items: flex-start;
  margin-right: 10px;
}
.div-block {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.div-block-text {
  margin-top: 30px;
  width: 70%;
}
.div-block-text p {
  font-size: 16px;
  letter-spacing: 0.5px;
  font-weight: 500;
  line-height: 26px;
}
.business-form {
  background: var(--dark);
  padding: 20px 35px;
  /* margin: 0px 0px 0px 30px; */
  position: relative;
}
/* .business-form .hs-form {
  background: var(--light);
  padding: 25px;
} */
.business-form .hs-form label {
  color: var(--light);
  font-size: 14px;
}
.business-form .hs-error-msg {
  /* color: #f2545b !important; */
  color: red !important;
  font-size: 12px !important;
}
.business-form .hs-form-required {
  color: red;
}
.business-form .hs-form input {
  border: 0;
  border-bottom: 1px solid var(--light);
  color: var(--light);
  background: transparent;
  box-shadow: none;
  font-size: 16px;
  width: 95%;
}

.business-form .hs-form-field {
  margin-bottom: 20px;
}

.business-form .hs-form .actions input[type="submit"] {
  border: 1px solid var(--light);
  padding: 8px 25px;
  padding-bottom: 4px;
  background: none;
  color: var(--light);
  margin-bottom: 0px;
  line-height: 26px;
  letter-spacing: 0.6px;
  margin-top: 10px;
  width: fit-content;
  margin-bottom: 10px;
}
.business-form h4 {
  color: var(--primary);
  margin-bottom: 10px;
  font-family: var(--sans-serif-medium);
  font-size: 22px;
  letter-spacing: 0.5px;
}
.business-form p {
  color: var(--light);
  font-size: 15px;
}
.business-form .form-floating .form-control {
  background: none !important;
  border: 0 !important;
  border-bottom: 1px solid var(--light) !important;
  border-radius: 0px;
  color: var(--light) !important;
  height: calc(2.5rem + calc(var(--bs-border-width) * 2));
}
.business-form .form-floating label {
  color: var(--light);
  padding: 0px !important;
}
.business-form .form-floating .form-control:focus {
  box-shadow: none !important;
}
.business-form .button-submit button {
  border: 2px solid var(--light);
  padding: 10px 30px 6px 30px;
  background: none;
  color: var(--light);
  margin-bottom: 0px;
  line-height: 26px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.arrow-down-form {
  width: 35px;
  position: absolute;
  right: 16px;
  top: 15px;
}
.nav-tabs .nav-link {
  border: 2px solid var(--primary);
  border-radius: 0px;
  padding: 12px 20px 10px 20px;
  color: var(--dark) !important;
  font-family: var(--sans-serif-medium);
}
.nav-tabs .nav-link.active {
  background-color: var(--primary);
  border: 2px solid var(--primary);
}
.nav-tabs .nav-link:hover {
  border: 2px solid var(--primary);
}
.heading-six h6 {
  font-size: 20px;
  letter-spacing: 0.5px;
  line-height: 30px;
}
.line-left {
  position: relative;
  padding-left: 140px;
}
.line-left:before {
  content: "";
  width: 126px;
  height: 1px;
  position: absolute;
  left: 0;
  top: 15px;
  background-color: #707070;
}
.assembly-content .tab-pane {
  padding: 20px;
}
.intro-text2 {
  color: var(--primary);
  text-transform: uppercase;
  font-size: 18px;
  font-family: var(--sans-serif-medium);
  letter-spacing: 0.7px;
}
.advantage-content .advantage-content-title {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
}
.advantage-content ul {
  margin-left: 15px;
}
.advantage-content ul li {
  font-size: 16px;
  font-family: var(--sans-serif-light);
  color: var(--dark-alt);
  line-height: 160%;
  letter-spacing: 0.7px;
  padding: 8px 0px;
  vertical-align: top;
  list-style-type: disc;
}
/* EV applicaions */
.ev-application .application-text {
  color: #ffffff;
  font-weight: 500;
  padding-left: 25px;
  padding-bottom: 10px;
  width: 100%;
  font-size: 20px;
  padding-top: 50px;
  letter-spacing: 0.3px;
}
.ev-application .application-box {
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
}
.ev-application .application-box.img1 {
  background-image: url(../../images/ev-battery/applications/Automotive.png);
}
.ev-application .application-box.img2 {
  background-image: url(../../images/ev-battery/applications/Energy.png);
}
.ev-application .application-box.img3 {
  background-image: url(../../images/ev-battery/applications/Electronics.png);
}
.ev-application .application-box.img4 {
  background-image: url(../../images/ev-battery/applications/Battery-Manufacturing.png);
}
.ev-application .application-box.img5 {
  background-image: url(../../images/ev-battery/applications/Battery-Assembly.png);
}
.equipment-box {
  margin-top: 70px;
}
.equipment-accordian {
  padding: 20px !important;
}
.equipment-accordian .accordion-item {
  border: 0 !important;
}
.equipment-accordian .accordion-header {
  border-bottom: 1px solid var(--dark) !important;
  padding: 5px 0px;
}
.equipment-accordian .accordion-header button {
  background: none !important;
  border: 0 !important;
  padding: 14px 0px;
  color: var(--dark);
  font-family: var(--sans-serif-bold);
  letter-spacing: 1.4px;
  font-size: 22px;
  box-shadow: none;
}
.equipment-box h3 {
  font-size: 24px;
  color: #343434;
  letter-spacing: 0.4px;
}

.equipment-accordian .accordion-body {
  padding: 10px 0px;
}
.equipment-accordian .accordion-body p {
  font-size: 14px;
}
.equipment-accordian .accordion-button::after {
  background-image: url("../../images/ev-battery/plus.png");
  background-size: 20px !important;
  height: 20px;
  width: 20px;
  opacity: 0.4;
}
.equipment-accordian .accordion-button:not(.collapsed)::after {
  background-image: url("../../images/ev-battery/close.png");
  transform: unset !important;
  transform: rotate(-180deg) !important;
  background-size: 20px !important;
  height: 20px;
  width: 20px;
}
.intro-text1 h6 {
  color: var(--primary);
  font-size: 20px;
  letter-spacing: 0.8px;
  font-family: var(--sans-serif-light);
  margin: 13px 0px;
}
.ev-about-content b {
  font-family: var(--sans-serif-bold);
  color: #515151;
}
.ev-about-content ul {
  margin-left: 40px;
}
.ev-about-content ul li {
  font-size: 16px;
  font-family: var(--sans-serif-light);
  color: var(--dark-alt);
  line-height: 160%;
  letter-spacing: 0.7px;
  padding: 5px 0px;
  vertical-align: top;
  list-style-type: disc;
}

.button-read-detail {
  position: relative;
}
.read-detail-accordian .accordion-item {
  border: 0 !important;
}
.read-detail-accordian .accordion-header {
  padding: 5px 0px;
}
.read-detail-accordian .accordion-header button {
  background: none;
  border: none;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-left: 23px !important;
  box-shadow: none;
  padding: 0px;
}
.read-detail-accordian .accordion-button::after {
  background-image: url("../../images/ev-battery/plus2.png");
  background-size: 16px !important;
  height: 16px;
  width: 16px;
  position: absolute;
  left: 0;
  top: 0px;
}
.read-detail-accordian .accordion-button:not(.collapsed)::after {
  background-image: url("../../images/ev-battery/minus2.png");
  transform: unset !important;
  transform: rotate(-180deg) !important;
  background-size: 16px !important;
  height: 16px;
  width: 16px;
}
.ev-introduction {
  padding-top: 70px !important;
}
.ev-video iframe {
  border-radius: 15px;
}

/* edited by mohan for food packaging page */
.aplication-name h4 {
  font-size: 15px;
  padding: 8px;
  font-weight: 800;
}
.product-box {
  display: flex;
  align-items: center;
  text-align: center;
}
.product-box h3 {
  font-size: 18px;
  font-weight: 700;
}
.product-box img {
  width: 60%;
}
/* edited by mohan end */

.footer-assmbly-form {
  background: var(--dark);
  border-top: 5px solid var(--primary);
}
.footer-assmbly-form .inner-form {
  background: var(--light);
  padding: 25px;
}
.footer-assmbly-form .intro-text1 h5 {
  color: var(--light);
}
.wrapper {
  max-width: 100%;
}
/* ev-video */
.youtube {
  position: relative;
  padding-top: 49.25%;
  overflow: hidden;
  cursor: pointer;
  border-radius: 15px;
  height: 680px !important;
}
.youtube img {
  width: 100%;
  top: -0.82%;
  left: 0;
  object-fit: cover;
  object-position: bottom;
  height: 100%;
  border-radius: 20px;
}
.youtube.fit-center img {
  object-position: center;
}
.youtube .play-button {
  width: 75px;
  height: 50px;
  background-color: red;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
  z-index: 1;
  border-radius: 6px;
}
.youtube .play-button:before {
  content: "";
  border-style: solid;
  border-width: 10px 0 10px 21px;
  border-color: transparent transparent transparent #fff;
}
.youtube img,
.youtube .play-button {
  cursor: pointer;
}
.youtube img,
.youtube iframe,
.youtube .play-button,
.youtube .play-button:before {
  position: absolute;
}
.youtube .play-button,
.youtube .play-button:before {
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}
.youtube iframe {
  height: 627px;
  width: 100%;
  top: 0;
  left: 0;
}
.two-column-layout h3 {
  color: var(--dark);
  font-size: 18px;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 0;
  font-family: var(--sans-serif-medium);
}
.two-column-layout h3 span {
  font-size: 18px;
}
.two-column-layout .video-new {
  border-radius: 8px;
}
.two-column-layout iframe {
  border-radius: 8px;
  height: 300px;
}
.two-column-layout .content .image {
  width: 100%;
}
.two-column-layout .content .image img {
  border-radius: 8px;
  height: 300px;
  object-fit: cover;
}
.two-column-layout .content .details p {
  font-size: 16px;
  letter-spacing: 0.5px;
  font-weight: 500;
  line-height: 26px;
}
.two-column-layout .content .details p b {
  font-family: var(--sans-serif-medium);
  color: var(--dark);
}
.two-column-layout .content .details {
  padding: 20px 0px;
}
.two-column-layout .carousel .carousel-item {
  border-radius: 8px !important;
  height: auto !important;
}
.two-column-layout .carousel .carousel-indicators {
  right: 38px !important;
  bottom: unset !important;
  top: 43% !important;
}

.inner-carousel {
  height: 300px !important;
}
.inner-carousel .owl-dots button span .active {
  background: var(--light);
  border: 2px solid var(--dark);
}
.inner-carousel .owl-dots {
  position: absolute;
  bottom: 5%;
  right: 38px;
}
.inner-carousel .owl-dots .owl-dot span {
  width: 14px;
  height: 14px;
  border-radius: 10px;
  border: 2px solid transparent;
  outline: 2px solid var(--light) !important;
  opacity: 1;
  background: transparent !important;
}
.inner-carousel .owl-dots .owl-dot.active span {
  background: var(--light) !important;
  border: 2px solid var(--dark) !important;
}
.gantry-image {
  border: 1px solid #ddd;
}
/* Responsive */

/* edited by prajwal for primary bagging system/machine page 09-09-24 */

.image-gallery-section .carousel-box {
  width: 90%;
  margin: 0 auto;
}
.image-gallery-section .carousel-box .image-gallery-carousel {
  border-radius: 15px;
  /* overflow: hidden; */
}
.image-gallery-section .carousel-box .image-gallery-carousel .image-box img {
  border-radius: 15px;
  max-height: 600px;
  object-fit: cover;
  object-position: center;
  height: 500px;
}

.image-gallery-section .owl-nav {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 150px);
  z-index: 2;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.image-gallery-section .owl-nav button {
  border: 0;
  background: transparent !important;
  outline: 0;
  border-radius: 0 !important;
  font-size: 50px !important;
  color: var(--dark) !important;
  pointer-events: all;
  transition: 0.5s ease all;
  opacity: 1;
}

.flow-text-box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.flow-text-box span {
  font-size: 14px;
  font-weight: 600;
}
.flow-text-box i {
  font-size: 25px;
  transform: scale(1.1);
  line-height: 70%;
}
/* product page code added by ankita 04-12-2024 */
.product_banner {
  background: linear-gradient(rgba(16, 39, 60, 1), rgba(16, 39, 60, 0.6));
}
.product_banner .hero-banner-text1 h2 {
  font-size: 90px;
  letter-spacing: -2px;
  line-height: 85px;
  width: 85%;
}
.product_banner .hero-banner-text {
  top: 40%;
}
.product_banner .get-in-touch {
  color: var(--light);
  margin-top: 28px;
}
.product_banner .get-in-touch img {
  width: 45px;
  margin-left: 10px;
}
.product_banner .product-banner-content {
  color: var(--light);
  position: absolute;
  right: 20%;
  width: 20%;
  font-size: 14px;
  font-weight: 300;
  bottom: 0%;
  opacity: 0.8;
  letter-spacing: 0.8px;
  line-height: 22px;
}
.product-intro-text {
  color: var(--dark);
  font-size: 20px;
  letter-spacing: 0.2px;
  line-height: 28px;
  font-family: var(--sans-serif-normal);
}
.product-first-content h2 {
  font-size: 38px;
  font-family: var(--sans-serif-medium);
  color: var(--dark);
  letter-spacing: -1px;
}
.product-first-content ul li {
  color: var(--dark);
  letter-spacing: 0.2px;
  font-size: 18px;
  border-bottom: 1px solid var(--dark);
  margin: 5px 0px;
  padding: 5px 0px;
}
.product-first-heading {
  position: relative;
}
.product-first-heading img {
  width: 105px;
  margin-bottom: 5px;
}
.product-first-heading:after {
  content: "";
  width: 90px;
  height: 1px;
  position: absolute;
  left: -93px;
  top: 10px;
  background-color: #707070;
}
.products-common-heading {
  font-size: 70px;
  font-family: var(--sans-serif-medium);
  letter-spacing: -2.2px;
}
.brochure-text {
  font-family: var(--sans-serif-medium);
  font-size: 22px;
}
.industries .industries-points {
  display: flex;
  gap: 25px;
  width: 70%;
}
.industries .industries-points .icon img {
  width: 60px;
}
.industries .industries-points h2 {
  color: var(--dark);
  font-family: var(--sans-serif-medium);
  font-size: 38px;
  letter-spacing: -2px;
}
.industries .industries-points p {
  color: var(--dark);
  font-family: var(--sans-serif-normal);
  letter-spacing: 0.2px;
  word-spacing: -1px;
}
.brochure-image img {
  border-radius: 178px;
  height: 350px;
}
.brochure-form {
  width: 85%;
}
/* model */
.model-table {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;

  text-align: center;
}
.model-table table thead {
  background: var(--dark);
  border: 1px solid var(--dark);
}
.model-table table thead th {
  padding: 12px 0px;
  color: var(--light);
  text-align: center;
  font-family: var(--sans-serif-light);
  letter-spacing: 1px;
}
.model-table table tbody td {
  border: 1px solid var(--dark);
  text-align: center;
  padding: 12px 0px !important;
}
/* other-products */
.other-products {
  background: #f2f2f2;
  border-radius: 20px;
}
.other-products .products-common-heading1 {
  font-size: 36px;
  font-family: var(--sans-serif-bold);
  letter-spacing: -1px;
}
.other-products-box .o-product-img {
  height: 200px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
}
.other-products-box h5 {
  font-size: 22px;
  font-family: var(--sans-serif-bold);
  letter-spacing: -0.5px;
  color: var(--dark);
  margin: 20px 0px 8px 0px;
}
.other-products-box p {
  font-size: 15px;
  letter-spacing: 0.5px;
  color: #292929;
  margin-bottom: 15px;
}
.other-products-box button {
  border: 0;
  display: flex;
  align-items: center;
}
.other-products-box button img {
  width: 30px;
  margin-left: 10px;
}
.other-products-box button span {
  color: var(--primary);
  text-decoration: underline;
  font-size: 14px;
  letter-spacing: 0.5px;
  opacity: 0.9;
}
/* counter */
.counter__row {
  background: #f2f2f2;
  padding: 40px;
  border-radius: 400px;
}
.products-video .youtube {
  height: 480px;
  background: linear-gradient(
    0deg,
    rgba(239, 142, 42, 0.4654236694677871) 0%,
    rgba(250, 250, 250, 1) 85%
  );
}
.products-video .youtube iframe {
  height: 480px;
}
.products-video .youtube.fit-center img {
  object-position: top;
  width: 800px;
  margin: auto;
  text-align: center;
  left: 0;
  right: 0;
  /* padding-top: 17px; */
  margin-top: 10px;
}
.products-video .play-button1 img {
  width: 64px !important;
  height: 64px !important;
  z-index: 9;
  position: relative;
  border-radius: 0px !important;
  left: 0 !important;
  right: 0 !important;
  margin: auto !important;
  top: 42%;
  position: absolute;
}
.p-youtube-content h2 {
  position: absolute;
  left: 20px;
  top: 20px;
  color: var(--dark);
  font-family: var(--sans-serif-bold);
  letter-spacing: -1px;
}
.p-youtube-content .logo img {
  width: 150px !important;
  position: absolute;
  right: 15px !important;
  bottom: 15px !important;
  z-index: 9;
  height: 30px !important;
  top: unset;
  margin: unset;
  left: unset !important;
}
.social-icons {
  position: absolute;
  right: 9%;
  bottom: 30%;
}
.social-icons i {
  color: var(--light);
  display: block;
  font-size: 11px;
  margin-bottom: 22px;
  opacity: 0.8;
}
.product__carousel .owl-nav button.owl-prev,
.product__carousel .owl-nav button.owl-next {
  position: absolute;
  margin: auto;
  background: none;
  border: none;
  font-size: 0; /* Hide default text */
  outline: none;
  cursor: pointer;
}
.product__carousel .owl-nav button.owl-prev {
  left: 36%;
}
.product__carousel .owl-nav button.owl-next {
  right: 36%;
}
.product__carousel .owl-nav button.owl-prev::after,
.product__carousel .owl-nav button.owl-next::after {
  content: "";
  display: block;
  width: 30px; /* Set arrow image width */
  height: 30px; /* Set arrow image height */
  background-size: cover;
}
.product__carousel .owl-nav button.owl-prev::after {
  background-image: url("../../images/product/automatic-bag-slitter/left-arrow-blue.png"); /* Replace with your left arrow image URL */
}
.product__carousel .owl-nav button.owl-next::after {
  background-image: url("../../images/product/automatic-bag-slitter/right-arrow-blue.png"); /* Replace with your right arrow image URL */
}
.product__carousel .owl-nav button span {
  display: none;
}
.product__carousel .owl-theme .owl-dots .owl-dot.active span,
.product__carousel .owl-theme .owl-dots .owl-dot:hover span {
  background: var(--dark) !important;
}
.product__carousel .owl-theme .owl-dots .owl-dot span {
  border: 1px solid var(--dark);
  background: var(--light) !important;
  margin: 2px 2px !important;
}
.product__carousel .owl-theme .owl-dots .owl-dot {
  margin-top: 9px;
}

/* edited by prajwal for primary bagging system/machine page 09-09-24 */

@media (max-width: 1200px) {
  .navbar .navbar-collapse {
    background: var(--dark);
    /* margin-top: 15px; */
    /* padding: 10px 0; */
  }
  .navbar-collapse .navbar-nav {
    padding: 10px 0;
  }
  .navbar .nav-item {
    width: 100%;
  }
  .navbar .nav-item .nav-link {
    padding: 10px 20px;
  }
  .navbar .nav-item .nav-link:hover {
    transform: scale(1);
    padding-left: 30px;
  }
  .navbar .nav-item .nav-link:hover::after {
    display: none;
  }
  .hero .carousel-caption h5 {
    font-size: 50px;
  }
  .hero .carousel-caption p {
    font-size: 20px;
  }
  .about .video h5,
  .heading {
    font-size: 40px;
  }
  .about h6,
  .services .nav-link .text h5 {
    font-size: 20px;
  }
  .services .text p {
    font-size: 18px;
  }
  .about .image,
  .contact .image {
    width: 80px;
  }
}
@media (max-width: 1199px) {
  .header .navbar-nav .nav-link::after {
    display: none;
  }
  .header.sticky .navbar-nav .nav-link {
    color: var(--light);
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .line-right::after {
    display: none;
  }
  .nav-tabs .nav-link {
    padding: 12px 10px 10px 10px;
  }
}
@media (max-width: 992px) {
  .hero .carousel .carousel-item {
    height: 80vh;
    min-height: 500px;
  }
  .hero .carousel-caption {
    width: 80%;
  }
  .case-study .filter-buttons {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
  }
  .news .news-carousel .owl-nav {
    position: relative;
    inset: auto;
    transform: translate(0);
    width: 100%;
    margin: auto;
    justify-content: center;
  }
  .news .news-carousel .owl-nav button.disabled {
    opacity: 0.5;
  }
  .about-factory .image {
    position: relative;
    inset: auto;
    width: 100%;
    height: 300px;
  }
  /* Ev battery */
  .business-form {
    margin: 20px 0px 0px 0px;
  }
  .div-block-text {
    width: 100%;
  }
  .line-left::before {
    display: none;
  }
  .line-left {
    padding-left: 0px;
    margin-top: 15px;
  }
  .intro-text1 h5 {
    margin-bottom: 15px;
  }
  .navbar-expand-xl .navbar-collapse {
    flex-basis: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .ev-application .application-text {
    height: 110px;
  }
}

@media (max-width: 767px) {
  .g-5,
  .gx-5 {
    --bs-gutter-x: 0 !important;
  }
  .hero .carousel .carousel-item {
    height: 80vh;
    min-height: 500px;
  }
  .hero-alt,
  .hero-sm .image {
    height: 80vh;
  }
  .hero .carousel-caption h5,
  .hero-alt .text h2,
  .counter .item h5,
  .hero-sm .text h2 {
    font-size: 40px;
  }
  .about-case-video h3 {
    font-size: 20px;
  }
  .about-case-video h4,
  .about-case-video .text h5 {
    font-size: 18px;
  }
  .hero .carousel-caption p br,
  .hero .carousel-caption h5 br {
    display: none;
  }
  .about .image {
    margin: 0;
  }
  .hero-alt .text {
    width: 80%;
  }
  .case-study-carousel .carousel .pattern {
    width: 70px;
  }
  .case-study-carousel .carousel .carousel-caption .text h5 {
    font-size: 18px;
  }
  .case-study-carousel .carousel .carousel-caption .text h4 {
    font-size: 25px;
  }
  .case-study-carousel .carousel .carousel-caption .text a {
    font-size: 14px;
  }
  .case-study-carousel .carousel .carousel-indicators,
  .about-case-video .carousel .carousel-indicators {
    bottom: 20px;
    right: 20px;
  }
  .case-study-list .item .text h5 {
    font-size: 25px;
  }
  .case-study-list .item .text p {
    width: 100%;
    font-size: 16px;
  }
  .case-study-carousel .carousel .carousel-caption .text a i {
    width: 25px;
    height: 25px;
    line-height: 25px;
    font-size: 12px;
  }
  .about-case-video .carousel .carousel-item {
    height: 100%;
  }
  .about-case-video .carousel .carousel-controls {
    display: none;
  }

  .footer .row .row.g-4 .col-lg-2 {
    margin: 0;
  }
  .footer .row:nth-child(2) .col-lg-3 {
    margin-top: 20px;
  }
  .about-case-video .video h5 {
    font-size: 15px;
    bottom: 15px;
  }
  .about-case-video .video .icon {
    width: 50px;
    height: 50px;
  }
  .about-case-video .video .icon i {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 20px;
  }
  .solutions-banner-heading h2 {
    font-size: 50px;
    line-height: 60px;
  }
  .business-form {
    margin: 20px 0px 0px 0px;
  }
  .section {
    padding: 70px 10px;
  }
  .line-left {
    padding-left: 0px;
  }
  .assembly-line .line-order1 {
    order: 2;
  }
  .assembly-line .line-order2 {
    order: 1;
  }
  .heading-six h6 {
    margin: 10px 0px;
  }

  .line-right::after {
    display: none;
  }
  .ev-video iframe {
    height: 350px;
  }
  .equipment-accordian .accordion-header button {
    font-size: 16px;
    letter-spacing: 1px;
  }
  .products-box.inner .product_box {
    width: 48%;
  }

  .turnkey-carousel .video-poster .poster-image .mobile {
    display: block;
  }
  .turnkey-carousel .video-poster .poster-image .desktop {
    display: none;
  }
}
@media (max-width: 575px) {
  .arrow-down-form {
    width: 30px;
  }
  .products-box {
    flex-direction: column;
  }
  .products-box.inner .product_box {
    width: 100%;
  }
  .product_banner .hero-banner-text {
    top: 30%;
  }

  .product_banner .hero-banner-text1 h2 {
    font-size: 40px;
    line-height: 40px;
  }
  .product_banner .get-in-touch {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .social-icons {
    bottom: 50%;
  }
  .product_banner .product-banner-content {
    position: unset;
    width: 100%;
  }
  .product__carousel .owl-nav button.owl-next {
    right: 33%;
  }
  .product__carousel .owl-nav button.owl-prev {
    left: 33%;
  }
  .product__carousel {
    margin-bottom: 50px;
  }
  .brochure-image img {
    border-radius: 94px;
  }
  .other-products-box {
    margin-bottom: 30px;
  }
  .counter__row {
    padding: 20px;
    border-radius: 10px;
  }
  /* Added by Sanket on 17-12-2024 */
  .footer p.text-light-alt {
    text-align: left;
  }
  .footer-end-text a:first-child {
    padding-left: 0;
  }
}
@media (max-width: 330px) {
  .header .navbar-brand img {
    width: 235px !important;
    transition: 0.5s ease all;
  }
}
